Corsair HS80 MAX WIRELESS Gaming Headset - Steel Gray (AP) | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

Corsair HS80 MAX WIRELESS Gaming Headset - Steel Gray (AP)

SKU: CA-9011295-AP
R 3 946.53
Available on Backorder

Dolby Atmos wireless gaming audio | Up to 130-hour battery life | Multi-platform compatibility | RGB lighting with iCUE | Fixed boom mic for clear comms

This item is on backorder — new stock is expected around 16 Sep 2026. Order now and we'll ship yours as soon as it arrives.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

Dolby Atmos wireless gaming audio | Up to 130-hour battery life | Multi-platform compatibility | RGB lighting with iCUE | Fixed boom mic for clear comms

Quick Specs

  • Immerse yourself in Dolby Atmos spatial audio through powerful 50mm drivers for precise positional awareness on every battlefield.
  • Dominate marathon sessions with up to 130 hours of battery life in Bluetooth mode — charge less, play more.
  • Connect wirelessly to PC, Mac, PlayStation, Switch, and mobile for seamless multi-platform freedom.
  • Command your comms with a fixed boom microphone tuned across 100Hz–10kHz for clear, decisive callouts.
  • Personalise your setup with RGB lighting and deep customisation via Corsair iCUE software.

Dominate Every Session with the Corsair HS80 MAX WIRELESS

The Corsair HS80 MAX WIRELESS gaming headset is built for the discerning South African gamer who refuses to compromise on audio quality, comfort, or endurance. Combining Dolby Atmos spatial sound, a marathon-class battery, and multi-platform wireless connectivity, the HS80 MAX is the tactical edge you bring to every session — whether you're grinding ranked matches on PC or hunting trophies on PlayStation.

Spatial Audio That Puts You Inside the Game

Tired of missing the footstep that costs you the round? The HS80 MAX WIRELESS delivers Dolby Atmos spatial audio through 50mm drivers spanning the full 20Hz–20kHz frequency range, placing every sound with pinpoint accuracy. At 119dB sensitivity, subtle environmental cues — a distant reload, a flanking enemy — cut through with the clarity you need to react first and react decisively.

Wireless Freedom That Outlasts Your Longest Sessions

Battery anxiety has no place in competitive gaming. With up to 65 hours of wireless playtime (RGB off) or an extraordinary 130 hours in Bluetooth mode, the HS80 MAX will outlast your longest tournaments, LAN weekends, and late-night grind sessions without demanding a trip to the charging cable. When you do want the full RGB spectacle, up to 24 hours of illuminated runtime keeps you looking the part throughout.

One Headset, Every Platform — Connect and Conquer

The HS80 MAX WIRELESS supports multi-mode wireless connectivity across PC, Mac, PlayStation, Switch, and mobile, giving you a single premium headset for your entire gaming ecosystem. With a wireless range of up to 50ft (approximately 15 metres), you stay connected even when you step away from the desk. Pair it all with Corsair iCUE software on PC for granular control over audio profiles, RGB lighting, and equaliser settings — your headset, tuned precisely to your style.

Features

  • Dolby Atmos spatial audio delivers immersive, three-dimensional soundscapes for precise positional awareness.
  • 50mm headphone drivers with 20Hz–20kHz frequency response reproduce the full spectrum of in-game audio.
  • Up to 130 hours battery life in Bluetooth mode; up to 65 hours wireless (RGB off); up to 24 hours with RGB enabled.
  • Multi-mode wireless connection compatible with PC, Mac, PlayStation, Switch, and Mobile.
  • Wireless range of up to 50ft for freedom of movement around your gaming space.
  • Fixed boom microphone with omni-directional pickup, 100Hz–10kHz frequency response, and -38dB sensitivity for clear comms.
  • RGB lighting on the earcups, customisable via Corsair iCUE software.
  • iCUE software support for audio equalisation, RGB personalisation, and headset management on PC.

Specifications

  • Connection: Multi-mode
  • Driver Size: 50 mm
  • Surround Sound: Yes, Dolby Atmos
  • Microphone Type: Fixed Boom
  • Battery Life: 130 hours
  • Active Noise Cancellation: No
  • Platform Compatibility: PC, Mac, PlayStation, Switch, Mobile
  • RGB Lighting: Yes
  • Colour: Steel Grey
  • Warranty: 24 months
  • Product Weight: 352g

What's in the Box

  • Corsair HS80 MAX WIRELESS Gaming Headset - Steel Gray x1

Why Corsair

Corsair has built its reputation on engineering high-performance gear that serious gamers trust to perform when it matters most. From precision peripherals to premium audio, every product reflects a commitment to quality, durability, and competitive advantage. For South African gamers who demand the best from their setup, Corsair delivers without compromise.

0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!