:root {
            --festive-orange: #FF6B35;
            --vibrant-pink: #E83F6F;
            --cultural-yellow: #FFB400;
            --deep-purple: #6A0DAD;
            --rich-green: #228B22;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f9f3e9 0%, #fff9f0 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--festive-orange), var(--vibrant-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(106, 13, 173, 0.8), rgba(255, 107, 53, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 40px;
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border-left: 5px solid var(--festive-orange);
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-btn {
            background: linear-gradient(45deg, var(--festive-orange), var(--vibrant-pink));
            border: none;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }
        .login-btn {
            background: linear-gradient(45deg, var(--deep-purple), #8A2BE2);
            border: none;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
        }
        .cultural-highlight {
            background: linear-gradient(45deg, var(--cultural-yellow), #FFD700);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            font-weight: 600;
        }
        .player-review {
            background: #f8f9fa;
            border-left: 4px solid var(--rich-green);
            padding: 20px;
            margin: 15px 0;
            border-radius: 0 10px 10px 0;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background: #e9ecef;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--festive-orange);
            color: white;
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin: 20px 0;
        }
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        h2 {
            color: var(--deep-purple);
            border-bottom: 3px solid var(--cultural-yellow);
            padding-bottom: 10px;
        }
        h3 {
            color: var(--festive-orange);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--festive-orange) !important;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--festive-orange);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: #666;
        }
        .content-section {
            margin-bottom: 50px;
        }
        .key-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .key-feature i {
            color: var(--festive-orange);
            margin-right: 15px;
            font-size: 1.2rem;
        }
