Antec AX85 ATX ARGB Mid-Tower Gaming Chassis - Black - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec AX85 ATX ARGB Mid-Tower Gaming Chassis - Black

SKU: AX85 ARGB
R 879.00
In Stock

The Antec AX85 ARGB ATX Mid Tower Gaming Chassis is designed to deliver both striking aesthetics and high-performance cooling. Featuring a sleek wave-like mesh front panel, this case ensures optimal airflow while also reducing dust buildup, keeping your system clean and efficient. The full tempered...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

The Antec AX85 ARGB ATX Mid Tower Gaming Chassis is designed to deliver both striking aesthetics and high-performance cooling. Featuring a sleek wave-like mesh front panel, this case ensures optimal airflow while also reducing dust buildup, keeping your system clean and efficient. The full tempered glass side panel provides an unobstructed view of your gaming components, allowing you to showcase your high-end hardware and custom RGB lighting with style. With support for up to eight 120mm fans, the AX85 is built to handle intense gaming sessions while maintaining excellent thermal performance.

Engineered for maximum cooling efficiency, the AX85 features a large-area mesh front panel to promote airflow throughout the chassis. Pre-installed with four 120mm ARGB fans, the case ensures consistent cooling out of the box while offering users the ability to daisy-chain the fans for synchronized ARGB lighting. The front panel also supports up to a 360mm radiator, providing flexibility for those looking to integrate a liquid cooling system for enhanced thermal management. Whether using air or liquid cooling, the AX85 is optimized to keep your components running at peak performance.

The chassis is thoughtfully designed with a 23mm rear cable management space, ensuring a clean and organized build. This feature allows for neat routing of cables, preventing clutter and improving airflow within the case. The front I/O panel offers convenient access to essential connectivity options, including dual USB 3.0 ports, an LED control button, and a headphone/mic combo jack. With these features, users can easily manage their lighting preferences and peripheral connections without hassle.

Built to accommodate a variety of configurations, the AX85 supports ATX, Micro-ATX, and ITX motherboards, as well as GPUs up to 370mm in length. The case offers flexible storage options, including dedicated slots for both 3.5” and 2.5” drives, ensuring ample space for your games, applications, and media. With its combination of high airflow, efficient cooling support, and a visually striking design, the Antec AX85 ARGB Mid Tower Chassis is an excellent choice for gamers and PC builders looking to create a stylish and high-performance setup.

FEATURES:

  • Unique ripple front design with mesh
  • High-airflow and ventilation
  • Tempered glass side panel
  • 4 x 120mm ARGB fans pre-installed with support for up to 8 x fans
  • Support for 1 x 360mm radiator in the front

SPECIFICATIONS:

  • Form Factor: Mid Tower
  • Materials: Steel + plastic
  • Mainboard Support: ATX, Micro-ATX, ITX
  • Front Access & Controls: Power, LED Control Button, USB 3.0 x 2, Headphone/Mic Combo Jack
  • Side Panel: 4 mm Tempered Glass
  • Drive Bays:
    • Expansion Slots: 7
    • 3.5" /2.5": 2/2
    • 2.5": 2
  • Fan Support:
    • Front: 3 x 120mm / 2 x 140mm
    • Top: 2 x 120mm / 2 x 140mm
    • Power Supply Shroud: 2 x 120mm
    • Rear: 1 x 120mm
    • Included Fan(s): 3 x 120mm ARGB fans in front + 1 x 120mm ARGB fan in rear
  • Radiator Support:
    • Front: 120 / 140 / 240 / 280 / 360mm
    • Top: 120 / 240mm
    • Rear: 120mm
  • Clearance:
    • Max GPU Length: ≤ 340mm (with front fan), ≤ 370mm (without front fan)
    • Max CPU Cooler Height: ≤ 160mm
    • Max PSU Length: ≤ 200mm(with HDD), ≤ 370mm(without HDD)
  • Dust Filter: Top / Bottom
  • Colour: Black
  • Product Dimensions: 39.3 x 20.5 x 48.5 cm
  • Product Weight: 6300g

WHAT'S IN THE BOX:

  • Antec AX85 ARGB ATX Mid Tower Gaming Chassis - Black x1
Brand Antec
Colour Black
Form Factor ATX
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

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

Related Products

MSI MAG FORGE 100R ATX GAMING CASE
MSI

MSI MAG FORGE 100R ATX GAMING CASE

R 1 099.00

Out of Stock

DeepCool CG530U 4F ATX Gaming Chassis - Black
DEEPCOOL

DeepCool CG530U 4F ATX Gaming Chassis - Black

R 1 659.00

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