:root {
            --saffron: #FF9933;
            --mystic-purple: #8B5CF6;
            --deep-blue: #1E3A8A;
            --gold: #F59E0B;
            --emerald: #10B981;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--saffron), var(--gold));
            -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(135deg, var(--deep-blue) 0%, var(--mystic-purple) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 2rem 2rem;
            margin-bottom: 3rem;
        }
        .game-feature {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border-left: 4px solid var(--saffron);
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-btn {
            background: linear-gradient(45deg, var(--saffron), var(--gold));
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
        }
        .login-btn {
            background: transparent;
            border: 2px solid var(--mystic-purple);
            color: var(--mystic-purple);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            background: var(--mystic-purple);
            color: white;
        }
        .tag {
            display: inline-block;
            background: #e2e8f0;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--saffron);
            color: white;
            transform: scale(1.05);
        }
        .rating-stars {
            color: var(--gold);
        }
        .section-title {
            border-left: 5px solid var(--saffron);
            padding-left: 1rem;
            margin: 2rem 0 1.5rem 0;
            font-weight: 700;
        }
        .game-image {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }
        .community-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 1rem;
            padding: 3rem 2rem;
            margin: 3rem 0;
        }
        footer {
            background: #1a202c;
            color: white;
            padding: 3rem 0 1rem 0;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 1rem 1rem;
            }
            .game-feature {
                padding: 1.5rem;
            }
        }
