body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .mobile-nav { display: none; background: #1a73e8; color: white; padding: 10px; text-align: center; cursor: pointer; }
        nav { background: #1a73e8; padding: 15px; display: flex; justify-content: space-between; align-items: center; }
        nav a { color: white; text-decoration: none; margin: 0 10px; font-weight: bold; }
        .logo { font-size: 24px; font-weight: 900; letter-spacing: 1px; }
        h1 { color: #1a73e8; border-bottom: 3px solid #ff9800; padding-bottom: 10px; }
        h2 { color: #ff9800; margin-top: 30px; }
        h3 { color: #4caf50; }
        .download-btn, .login-btn { display: inline-block; background: #4caf50; color: white; padding: 12px 25px; margin: 15px 0; text-decoration: none; border-radius: 5px; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background: #388e3c; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-stats { background: #f5f5f5; padding: 15px; border-radius: 8px; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tags a { background: #e0e0e0; padding: 5px 10px; margin: 0 5px 5px 0; display: inline-block; border-radius: 15px; text-decoration: none; color: #333; }
        footer { margin-top: 50px; padding: 20px; background: #333; color: white; text-align: center; }
        @media (max-width: 768px) {
            nav { flex-direction: column; }
            .mobile-nav { display: block; }
            nav .desktop-only { display: none; }
            .mobile-nav.active + .desktop-only { display: flex; flex-direction: column; }
        }
