Antec CX500M ARGB Gaming Chassis | M-ATX | ITX | Type-C - Black - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec CX500M ARGB Gaming Chassis | M-ATX | ITX | Type-C - Black

SKU: CX500M ARGB
R 1 099.00
Out of Stock

The Antec CX500M ARGB Gaming Chassis is the ultimate solution for gamers and PC builders looking for performance and aesthetics. This mid-tower case combines style and functionality with a sleek, full-view tempered glass design that allows a 270° panoramic view of your internal components. With...

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

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

Frequently Bought Together

The Antec CX500M ARGB Gaming Chassis is the ultimate solution for gamers and PC builders looking for performance and aesthetics. This mid-tower case combines style and functionality with a sleek, full-view tempered glass design that allows a 270° panoramic view of your internal components. With its vertical airflow system and support for up to 9 fans, it ensures that your system remains cool even during the most intense gaming sessions. The three pre-installed 120mm ARGB fans provide excellent airflow while adding vibrant lighting to your setup, enhancing the visual appeal of your rig.

Built with versatility in mind, the Antec CX500M ARGB Gaming Chassis supports a 360mm radiator for liquid cooling, making it ideal for high-performance gaming builds. It features an intuitive, tool-free design with easy-to-remove panels, allowing quick access to your internal components. The ample cable management space helps reduce clutter and ensures a clean, organised build, making it easy to install and configure your components.

Additionally, the case provides ample room for expansion with support for multiple storage devices and a range of cooling options. Its robust construction and durable materials make the CX500M a reliable choice for both seasoned gamers and those looking to build their first powerful system. Whether you’re building a new gaming rig or upgrading your existing one, the Antec CX500M ARGB Gaming Chassis offers a blend of cutting-edge performance and stunning aesthetics that is perfect for any setup.

FEATURES:

  • Panoramic 270° design for a transparent and sleek look.
  • Tool-free glass side and front panels with a clip design for easy and safe installation.
  • Vertical airflow supports up to 9 fans, speeding up heat dissipation.
  • Includes a Type-C 3.2 Gen 2 port for high-speed data transfer.
  • Top and Bottom Magnetic Dust Filters

SPECIFICATIONS:

  • Form Factor: Mini Tower
  • Materials: Steel + Glass
  • Mainboard Support: Micro-ATX, ITX
  • Front Access & Controls: Power, LED Control Button, USB 3.0 x 2, Type-C 3.2 Gen 2 x 1, Headphone?Mic Combo Jack
  • Side Panel: 4mm Tempered Glass
  • Drive Bays:
    • 3.5″/2.5″: 2/1
    • 2.5″: 1
  • Expansion Slots: 5
  • Fan Support:
    • Top: 3 x 120/2 x 140mm
    • Side: 2 x 120mm
    • Power Supply Shroud: 3 x 120mm
    • Rear: 120mm
    • Included Fans: 2 x 120mm ARGB reverse fans on right side + 1 x 120mm ARGB fan in rear
  • Radiator Support:
    • Top: 120/140/240/280/360mm
  • Clearance:
    • Max GPU Length: ≤ 415mm
    • Max CPU Cooler Height: ≤ 165mm
    • Max PSU Length:
      • (Included cable) ≤ 210mm (With HDD)
      • (Not Included Cable) ≤ 270mm ( Without HDD)
  • Dust Filter: Top / Bottom
  • Colour: Black
  • Product Dimensions: 45 x 21.9 x 45.6 cm
  • Product Weight: 6340g

WHAT’S IN THE BOX:

  • Antec CX500M ARGB Gaming Chassis | M-ATX | ITX | Type-C - Black x1
Brand Antec
Colour Black
Form Factor -
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

Antec C7 ARGB ATX Mid Tower Gaming Chassis – White
Antec

Antec C7 ARGB ATX Mid Tower Gaming Chassis – White

R 2 349.00

Out of Stock

Antec NX410 V2 ATX | Micro-ATX | ITX ARGB Mid-Tower Gaming Chassis - Black
Antec

Antec NX410 V2 ATX | Micro-ATX | ITX ARGB Mid-Tower Gaming Chassis - Black

R 999.00

Only 1 left - order soon!

Antec FLUX Rear ARGB ATX Mid Tower Gaming Chassis - Black
Antec

Antec FLUX Rear ARGB ATX Mid Tower Gaming Chassis - Black

R 1 599.00

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!