Corsair NAUTILUS 360 RS LCD Liquid CPU Cooler - Black | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

Corsair NAUTILUS 360 RS LCD Liquid CPU Cooler - Black

SKU: CW-9061033-WW
R 2 700.69
Available on Backorder

Powerful 360mm liquid cooling | Vivid onboard LCD display | Whisper-quiet Zero RPM mode | Broad socket compatibility | 60-month warranty

This item is on backorder — new stock is expected around 28 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

Powerful 360mm liquid cooling | Vivid onboard LCD display | Whisper-quiet Zero RPM mode | Broad socket compatibility

Quick Specs

  • Keep your CPU running cool under heavy loads with a full 360mm radiator built for serious thermal headroom
  • Monitor your system at a glance with the vivid 2.1-inch IPS LCD screen built into the pump head
  • Enjoy near-silent idle temperatures thanks to Zero RPM fan mode and precise PWM control
  • Move air efficiently with dual high static pressure RS120 fans engineered for airflow and quiet operation
  • Build with confidence across Intel LGA 1851, LGA 1700 and AMD AM5, AM4 platforms

Serious Cooling With a Personal Touch

For PC builders who want their liquid cooler to do more than just cool, the Corsair NAUTILUS 360 RS LCD combines a 360mm radiator with a vivid onboard display, giving you both thermal headroom and a genuine focal point inside your case. Whether you're taming a high-core-count CPU or simply want your rig to look as good as it performs, this cooler is designed to handle both demands without compromise.

A Screen That Works as Hard as Your CPU

Tired of guessing what your temperatures are doing mid-game? The Corsair NAUTILUS 360 RS LCD Liquid CPU Cooler features a bright 2.1-inch IPS LCD screen built into the pump head, so you can keep live system data in view or display custom images without opening a separate monitoring app. It turns a functional component into a visible part of your build, adding personality to your setup while keeping the essentials front and centre.

Quiet When You Need It, Powerful When You Don't

Two high static pressure RS120 fans push air through the 360mm radiator, delivering airflow from 13.3 up to 72.8 CFM depending on load. Precise PWM control adjusts fan speed automatically between 420 and 2100 RPM, and Zero RPM mode stops the fans completely during light workloads, so your system stays silent for everyday tasks and only spins up when the heat demands it. With noise ranging from as low as 10 dBA to a maximum of 36 dBA under full load, this is quiet cooling without giving up capacity.

Ready for Your Next Build, Now and Later

The NAUTILUS 360 RS LCD supports Intel LGA 1851 and LGA 1700 sockets alongside AMD AM5 and AM4, making it a dependable choice whether you're building fresh or upgrading an existing rig. A copper cold plate draws heat efficiently away from the CPU, while the aluminium radiator and 450mm tubing give you flexibility in case placement without straining reach. Backed by a 60-month warranty, it's built for the long haul.

Features

  • 2.1-inch IPS LCD screen displays live monitoring data or custom images
  • 360mm aluminium radiator paired with a copper cold plate for efficient heat transfer
  • Dual RS120 high static pressure fans for optimised airflow
  • PWM fan speed control with Zero RPM mode for near-silent idle operation
  • Wide socket compatibility: Intel LGA 1851, LGA 1700; AMD AM5, AM4
  • 450mm tubing length for flexible radiator placement within your case
  • 60-month warranty for long-term peace of mind

Specifications

  • Radiator Size: 360 mm
  • Socket Compatibility: LGA 1851, LGA 1700, AM5, AM4
  • Fan Count: 3 x 120mm
  • Pump Display: LCD Screen
  • Max Noise Level: 36 dB
  • Tube Length: 450 mm
  • Colour: Black
  • Warranty: 60 months
  • Product Dimensions: 39.6 x 12.5 x 12.5 cm
  • Product Weight: 2000g

What's in the Box

  • 1 x Corsair NAUTILUS 360 RS LCD Liquid CPU Cooler - Black

Why Corsair

Corsair has spent decades engineering components trusted by PC builders and competitive gamers worldwide. The NAUTILUS 360 RS LCD reflects that same commitment to performance and reliability, bringing efficient liquid cooling and eye-catching customisation to your build. For South African enthusiasts assembling their next rig, Corsair remains a name you can build on with confidence.

0.0
0 reviews
Login to Review

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

Related Products

ASUS TUF Gaming LC III 360 ARGB White Edition Liquid CPU Cooler

ASUS TUF Gaming LC III 360 ARGB White Edition Liquid CPU Cooler

R 3 635.07

Only 1 left - order soon!

Antec Vortex 240 ARGB CPU Liquid Cooler Black
Antec

Antec Vortex 240 ARGB CPU Liquid Cooler Black

R 1 683.24

Out of Stock

// 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!