        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
            background: #090909;
        }

        /* Animated Cultural Background */
        .cultural-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(45deg, #fa946f, #eca049, #ffd23f, #409777, #118ab2, #073b4c);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .cultural-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="10" y="20" font-size="12" fill="rgba(255,255,255,0.1)">ॐ</text><text x="70" y="40" font-size="8" fill="rgba(255,255,255,0.1)">🕉</text><text x="30" y="60" font-size="10" fill="rgba(255,255,255,0.1)">🪔</text><text x="80" y="80" font-size="9" fill="rgba(255,255,255,0.1)">🕌</text><text x="5" y="90" font-size="11" fill="rgba(255,255,255,0.1)">🛕</text></svg>') repeat;
            z-index: -1;
        }

        /* Navbar */
        .navbar {
            background: rgba(11, 6, 70, 0.344);
            backdrop-filter: blur(10px);
            padding: 15px 50px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .navbar:hover {
            background: rgba(11, 6, 70, 0.344);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #ffd700, #ffed4e, #ffa500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoGlow 2s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            from { filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
            to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
        }

        .tagline {
            color: #ccc;
            font-size: 0.9rem;
            font-style: italic;
        }

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

        .sign-in-btn {
            background: linear-gradient(45deg, #d99b4b, #b78324cf);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .sign-in-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        .sign-in-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .sign-in-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Recommendations Bar */
        .recommendations {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px 50px;
            margin-top: 80px;
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: #ffd700 rgba(255, 255, 255, 0.1);
        }

        .recommendations::-webkit-scrollbar {
            height: 5px;
        }

        .recommendations::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .recommendations::-webkit-scrollbar-thumb {
            background: #ffd700;
            border-radius: 5px;
        }

        .rec-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            color: white;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .rec-item:hover {
            background: rgba(255, 215, 0, 0.3);
            transform: scale(1.05);
        }

        /* Main Content */
        .main-content {
            padding: 50px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-section {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 4rem;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #ffd700;
            margin-bottom: 40px;
        }

        .explore-btn {
            background: linear-gradient(45deg, #118ab2, #06ffa5);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .explore-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(6, 255, 165, 0.4);
        }

        .explore-btn::after {
            content: '→';
            position: absolute;
            right: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .explore-btn:hover::after {
            opacity: 1;
            right: 15px;
        }

        /* Culture Cards */
        .cultures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            width: 100%;
            max-width: 1200px;
            margin-bottom: 50px;
        }

        .culture-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .culture-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .culture-card:hover::before {
            opacity: 1;
            animation: shimmer 0.5s ease;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .culture-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .culture-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
        }

        .culture-title {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .culture-desc {
            color: #f8f2f2;
            font-size: 0.9rem;
        }

        /* Features Section */
        .features-section {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 50px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 200px;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            color: #ffd700;
            margin-bottom: 15px;
        }

        .feature-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* Review Section */
        .review-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 20px;
            margin-top: 50px;
            max-width: 600px;
            width: 100%;
        }

        .review-title {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .star {
            font-size: 2rem;
            color: #ffd700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .star:hover {
            transform: scale(1.2);
            text-shadow: 0 0 10px #ffd700;
        }

        .review-text {
            color: #faf0f0;
            text-align: center;
            font-style: italic;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .logo {
                font-size: 2rem;
            }

            .hero-title {
                font-size: 3rem;
            }

            .cultures-grid {
                grid-template-columns: 1fr;
            }

            .main-content {
                padding: 20px;
            }
        }
    
