:root {
            --saffron-orange: #FF9933;
            --india-green: #138808;
            --deep-blue: #000080;
            --gold-accent: #FFD700;
            --light-cream: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--saffron-orange), var(--deep-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .game-feature {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            border-left: 5px solid var(--saffron-orange);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .download-stats {
            background: linear-gradient(135deg, var(--india-green), var(--deep-blue));
            color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }
        .btn-india {
            background: linear-gradient(45deg, var(--saffron-orange), var(--india-green));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-india:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
        }
        .player-review {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border-left: 3px solid var(--gold-accent);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background: var(--light-cream);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--saffron-orange);
            color: white;
            transform: scale(1.05);
        }
        h1, h2, h3 {
            color: var(--deep-blue);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--saffron-orange);
            padding-bottom: 10px;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        footer {
            background: var(--deep-blue);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: var(--light-cream);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--gold-accent);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
            .game-feature {
                padding: 20px;
            }
        }
