:root {
            --primary-gold: #FFD700;
            --royal-blue: #1E3A8A;
            --deep-red: #B91C1C;
            --rich-purple: #7E22CE;
            --forest-green: #15803D;
        }
        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(--royal-blue), var(--rich-purple));
            -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(30, 58, 138, 0.9), rgba(126, 34, 206, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            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: 5px solid var(--primary-gold);
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-btn {
            background: linear-gradient(45deg, var(--forest-green), var(--royal-blue));
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .login-btn {
            background: linear-gradient(45deg, var(--deep-red), var(--rich-purple));
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .tag-badge {
            background: linear-gradient(45deg, #6366F1, #8B5CF6);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin: 0.3rem;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: scale(1.1);
            text-decoration: none;
            color: white;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--royal-blue), var(--deep-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .review-card {
            background: #f8fafc;
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--primary-gold);
        }
        footer {
            background: linear-gradient(135deg, var(--royal-blue), #1e1b4b);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .game-image {
            border-radius: 1rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 1rem 1rem;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            color: var(--royal-blue);
            font-size: 2.5rem;
        }
        h2 {
            color: var(--deep-red);
            font-size: 2rem;
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 0.5rem;
        }
        h3 {
            color: var(--forest-green);
            font-size: 1.5rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .key-feature {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            padding: 1.5rem;
            border-radius: 1rem;
            margin: 1rem 0;
            border-left: 4px solid var(--royal-blue);
        }
        .strategy-tip {
            background: linear-gradient(135deg, #fef7cd, #fef3c7);
            padding: 1.5rem;
            border-radius: 1rem;
            margin: 1rem 0;
            border-left: 4px solid var(--primary-gold);
        }
        .community-highlight {
            background: linear-gradient(135deg, #fce7f3, #fbcfe8);
            padding: 1.5rem;
            border-radius: 1rem;
            margin: 1rem 0;
            border-left: 4px solid var(--rich-purple);
        }
