* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            overflow-x: hidden;
            width: 100%;
            min-height: 100vh;
            background: #f0f0f0;
        }

        /* Enhanced Header (Bing-like) */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 30px;
            background: linear-gradient(to right, #ffffff, #f8f9fa);
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid #e0e0e0;
        }

        .header .logo {
            display: flex;
            align-items: center;
        }

        .header .logo img {
            height: 30px;
            transition: transform 0.3s;
        }

        .header .logo img:hover {
            transform: scale(1.1);
        }

        .header .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .header .nav-links a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background 0.3s, color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .header .nav-links a:hover {
            background: #e6f3fa;
            color: #0067b8;
        }

        .nav-links a::before {
            content: '';
            display: inline-block;
            width: 16px;
            height: 16px;
            background-size: cover;
            opacity: 0.7;
        }

        .nav-links a[href="#images"]::before {
            background-image: url('https://img.icons8.com/ios-filled/50/000000/image.png');
        }

        .nav-links a[href="#videos"]::before {
            background-image: url('https://img.icons8.com/ios-filled/50/000000/video.png');
        }

        .nav-links a[href="#news"]::before {
            background-image: url('https://img.icons8.com/ios-filled/50/000000/news.png');
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-button {
            color: #333;
            font-size: 14px;
            font-weight: 500;
            background: none;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.3s, color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-button::before {
            content: '';
            display: inline-block;
            width: 16px;
            height: 16px;
            background-image: url('https://img.icons8.com/ios-filled/50/000000/more.png');
            background-size: cover;
            opacity: 0.7;
        }

        .dropdown-button:hover {
            background: #e6f3fa;
            color: #0067b8;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: #fff;
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            z-index: 1;
            border-radius: 6px;
            right: 0;
            margin-top: 5px;
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 13px;
            transition: background 0.3s;
        }

        .dropdown-content a:hover {
            background: #e6f3fa;
            color: #0067b8;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Wave Background */
        .wave-container {
            position: relative;
            width: 100%;
            height: 100vh;
            background: linear-gradient(60deg, rgba(84, 58, 183, 1) 0%, rgba(0, 172, 193, 1) 100%);
            overflow: hidden;
        }

        .waves {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 15vh;
            min-height: 100px;
            max-height: 150px;
            margin-bottom: -7px;
        }

        .parallax > use {
            animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
        }

        .parallax > use:nth-child(1) {
            animation-delay: -2s;
            animation-duration: 7s;
        }

        .parallax > use:nth-child(2) {
            animation-delay: -3s;
            animation-duration: 10s;
        }

        .parallax > use:nth-child(3) {
            animation-delay: -4s;
            animation-duration: 13s;
        }

        .parallax > use:nth-child(4) {
            animation-delay: -5s;
            animation-duration: 20s;
        }

        @keyframes move-forever {
            0% {
                transform: translate3d(-90px, 0, 0);
            }
            100% {
                transform: translate3d(85px, 0, 0);
            }
        }

        /* Search Bar (Enhanced Google-like) */
        .search-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            padding: 20px;
            z-index: 5;
        }

        .search-logo {
            margin-bottom: 20px;
        }

        .search-logo img {
            height: 80px;
            transition: transform 0.3s;
        }

        .search-logo img:hover {
            transform: scale(1.05);
        }

        .search-bar {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 600px;
            background: white;
            border-radius: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 10px;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .search-bar:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .search-bar input {
            border: none;
            outline: none;
            flex: 1;
            padding: 10px;
            font-size: 16px;
            border-radius: 24px;
        }

        .search-bar button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .search-bar button img {
            width: 20px;
            height: 20px;
        }

        .search-button {
            background: #0067b8;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 20px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            margin-bottom: 20px;
        }

        .search-button:hover {
            background: #005da6;
            transform: translateY(-2px);
        }

        /* Recent Searches */
        .recent-searches {
            width: 100%;
            max-width: 600px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 10px;
            display: none;
            position: absolute;
            top: calc(100% + 60px); /* Adjust based on button height */
            z-index: 4;
        }

        .recent-searches.show {
            display: block;
        }

        .recent-searches ul {
            list-style: none;
        }

        .recent-searches li {
            padding: 8px;
            cursor: pointer;
            font-size: 14px;
            color: #333;
            transition: background 0.2s;
        }

        .recent-searches li:hover {
            background: #f5f5f5;
        }

        /* Content Section with News Cards */
        .content {
            width: 100%;
            padding: 40px 20px;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .content h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 1200px;
        }

        .news-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-card-content {
            padding: 15px;
            flex: 1;
        }

        .news-card-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
            line-height: 1.4;
        }

        .news-card-content p {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .news-card-content a {
            color: #0067b8;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        .news-card-content a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .waves {
                height: 40px;
                min-height: 40px;
            }

            .header .logo img {
                height: 25px;
            }

            .header .nav-links a, .dropdown-button {
                font-size: 13px;
                padding: 6px 10px;
            }

            .search-logo img {
                height: 60px;
            }

            .search-bar, .recent-searches {
                max-width: 90%;
            }

            .search-bar input {
                font-size: 14px;
            }

            .content h2 {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .header {
                flex-direction: column;
                padding: 10px;
            }

            .header .nav-links {
                margin-top: 10px;
                gap: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .dropdown-content {
                right: auto;
                left: 50%;
                transform: translateX(-50%);
            }

            .search-logo img {
                height: 50px;
            }

            .search-bar, .recent-searches {
                max-width: 95%;
            }

            .news-card {
                min-width: 100%;
            }
        }