Antec C8 Aluminium White E-ATX Dual Chamber Gaming Chassis - White - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec C8 Aluminium White E-ATX Dual Chamber Gaming Chassis - White

SKU: C8 AL
R 2 099.00
Out of Stock

The Antec C8 Aluminium White E-ATX Gaming Chassis is a premium full-tower case designed for high-performance builds, offering a sleek blend of steel, aluminium and tempered glass. The unique 45° beveling technique on the glass panels creates a seamless, ultra-transparent view, allowing you to...

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 C8 Aluminium White E-ATX Gaming Chassis is a premium full-tower case designed for high-performance builds, offering a sleek blend of steel, aluminium and tempered glass. The unique 45° beveling technique on the glass panels creates a seamless, ultra-transparent view, allowing you to showcase your hardware in style. The right side of the front panel features a sophisticated aluminium finish, blending effortlessly into modern gaming setups and workstation aesthetics. Designed with both form and function in mind, the C8 provides a striking yet practical chassis for PC enthusiasts.

Engineered for superior cooling efficiency, the C8 supports a vertical cooling layout, with space for up to 10x 120mm fans and interchangeable fan brackets to accommodate multiple sizes. The independent dual-chamber design separates the CPU and GPU from the PSU and drive bays, optimising airflow and heat dissipation. With support for thick 360mm radiators on the top, bottom, and side simultaneously, this case offers ultra-efficient liquid cooling solutions, making it an excellent choice for high-performance gaming rigs and overclocked systems.

Durability meets convenience with the C8’s robust construction, featuring 0.8mm and 1mm steel for solid protection. Tool-free quick-release panels on the front, top, and sides allow for effortless assembly, easy component upgrades, and simplified maintenance. Versatile cable management options ensure a clean and organised build, while the tempered glass side panel provides a clear view of your PC’s internals without compromising accessibility.

Designed for flexibility, the C8 supports E-ATX, ATX, Micro-ATX, and Mini-ITX motherboards, offering extensive compatibility for various configurations. The front I/O panel includes dual USB 3.0 ports, a high-speed USB Type-C 10Gbps port, and a headphone/mic combo jack for easy connectivity. With its refined aesthetics, cutting-edge cooling support, and builder-friendly features, the Antec C8 Aluminium White E-ATX Gaming Chassis is an outstanding choice for enthusiasts looking to push their system to the next level.

FEATURES:

  • Sleek aluminium design with sturdy steel frame
  • Tempered glass front and side panels
  • 45° glass beveling
  • Vertical cooling support
  • Supports up to 10 x 120mm fans
  • Interchangeable fan brackets
  • Dual chamber design for enhanced airflow
  • Tool free design with versatile cable management options

SPECIFICATIONS:

  • Form Factor: Full Tower
  • Materials: Steel + Plastic + Glass + Aluminum
  • Mainboard Support: E-ATX (280mm), ATX, M-ATX, ITX
  • Front Access & Controls: Power, Reset,  USB 3.0 x 2, Type-C 10Gbps x 1, Headphone/Mic Combo Jack
  • Side Panel: 4mm Tempered Glass
  • Expansion Slots: 8
  • 3.5" Drive Bays: 2
  • 2.5" Drive Bays: 4
  • Fan Support:
    • Top: 3 x 120 / 3 x 140 / 2 x 160mm
    • Side: 3 x 120 / 2 x 140mm
    • Bottom: 3 x 120 / 3 x 140 / 2 x 160mm
    • Rear: 120 / 140mm
  • Radiator Support:
    • Top: 120 / 140 / 240 / 280 / 360mm
    • Side: 120 / 140 / 240 / 280 / 360mm
    • Bottom: 120 / 140 / 240 / 280 / 360mm
    • Rear: 120mm
  • Clearance:
    • Max GPU Length: ≤ 440mm
    • Max CPU Cooler Height: ≤ 175mm
    • Max PSU Length: ≤ 210mm (without cable)
  • Dust Filter: Bottom
  • Colour: White
  • Product Dimensions: 46.4 x 30.3 x 47.6 cm
  • Product Weight: 10490g

WHAT'S IN THE BOX:

  • Antec C8 Aluminium White E-ATX Dual Chamber Gaming Chassis - White x1
Brand Antec
Colour White
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

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

Related Products

DeepCool CG530U 4F ATX Gaming Chassis - Black
DEEPCOOL

DeepCool CG530U 4F ATX Gaming Chassis - Black

R 1 659.00

In Stock

Antec CX700 ARGB Mid-Tower Gaming Chassis - White
Antec

Antec CX700 ARGB Mid-Tower Gaming Chassis - White

R 1 449.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!