body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 2.5em; font-weight: bold; color: #FF5722; margin-bottom: 20px; }
        nav { background-color: #1E88E5; padding: 15px; margin-bottom: 30px; }
        nav ul { list-style: none; padding: 0; display: flex; justify-content: space-around; }
        nav li a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; background: #1E88E5; color: white; border: none; padding: 10px; position: absolute; top: 10px; right: 10px; }
        h1 { color: #FF5722; border-bottom: 3px solid #FFC107; padding-bottom: 10px; }
        h2 { color: #1E88E5; margin-top: 30px; }
        h3 { color: #43A047; }
        .download-btn { display: inline-block; background: #4CAF50; color: white; padding: 15px 30px; margin: 20px 0; text-decoration: none; font-weight: bold; border-radius: 5px; }
        .login-btn { display: inline-block; background: #2196F3; color: white; padding: 15px 30px; margin: 20px 0; text-decoration: none; font-weight: bold; border-radius: 5px; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .indian-flag { color: #FF9933; font-weight: bold; }
        .player-review { background: #f5f5f5; padding: 15px; margin: 15px 0; border-radius: 5px; }
        footer { margin-top: 50px; padding: 20px; background: #333; color: white; }
        .tags { margin: 20px 0; }
        .tag { background: #607D8B; color: white; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 3px; }
        @media (max-width: 768px) {
            nav ul { flex-direction: column; display: none; }
            .mobile-nav-toggle { display: block; }
            nav.active ul { display: flex; flex-direction: column; }
            body { padding: 10px; }
        }
