PCBuilder HOLDFAST ATX Back-Connect Gaming Chassis - PCBuilder | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
PCBuilder

PCBuilder HOLDFAST ATX Back-Connect Gaming Chassis

SKU: PCB-CH-HOLDFAST
R 1 517.13
In Stock

Get ready to elevate your gaming with a sleek new build. Packed into this state-of-the-art chassis, your rig is expertly pre-assembled by our dedicated PCBuilder technicians, ensuring every detail is perfectly set up. No hassle, no waiting - just hit the power button and dive straight into your...

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

Get ready to elevate your gaming with a sleek new build. Packed into this state-of-the-art chassis, your rig is expertly pre-assembled by our dedicated PCBuilder technicians, ensuring every detail is perfectly set up. No hassle, no waiting - just hit the power button and dive straight into your favourite worlds.

This chassis isn’t just about performance; it’s a showstopper. Featuring a back-connect ATX motherboard layout and stunning curved tempered glass panels on the front and side, it’s a sleek display of power and style. The pre-installed 4x 120mm ARGB fans light up your setup with vibrant colours and effects, with room to add up to six more fans for even more brilliance. Customize your lighting using the included remote or sync it with ASUS Aura, MSI Mystic Light, GIGABYTE Fusion, or ASRock Polychrome RGB to match your vibe.

Cooling is no challenge, even during the most intense sessions. With mesh-vented sides and a top magnetic dust cover, airflow is optimized to keep your system running smoothly. This chassis supports up to three radiators, including a 360mm liquid cooler, ensuring your components stay frosty under pressure.

Built to house high-performance hardware, it’s compatible with ATX, Micro-ATX, and Mini-ITX motherboards and offers 7 PCI expansion slots. Whether it’s a GPU up to 445mm long, a CPU cooler up to 160mm tall, or a mix of 3.5"" HDDs and 2.5"" SSDs, this chassis has the space to handle it all.

The I/O panel is loaded with convenience, including USB3.0, Type-C and dedicated audio and mic jacks, giving you all the connectivity you need for gaming and multitasking.

From its premium design to its advanced functionality, this chassis is more than just a case - it’s the foundation of your ultimate gaming setup.

FEATURES:

  • Sleek back-connect ATX motherboard & curved tempered glass design
  • Create mesmerising patterns across your setup with the included 10-port ARGB hub & controller
  • Sync compatibility with ASUS Aura, MSI Mystic Light, GIGABYTE Fusion, & ASRock Polychrome RGB
  • Mesh vented sides for optimised airflow
  • Designed for up to 360mm liquid coolers
  • Supports up to 10x 120mm fans (comes with 4x 120mm ARGB fans pre-installed)

SPECIFICATIONS:

  • Colour: Black
  • Case Material: Steel & tempered glass
  • Motherboard Support: ATX, Micro-ATX, Mini-ITX (supports back-connect layouts)
  • Windowed: Yes (front & side)
  • Ventilation Mesh: Yes (rear & side)
  • Magnetic Dust Cover: Yes (top)
  • PCI Expansion Slots: 7
  • I/O panel:
    • 1x Power button
    • 1x Reset button
    • 2x USB3.0
    • 1x 3.5mm AUX (line-out)
    • 1x 3.5mm AUX (mic-in)
    • 1x Type-C
    • 1x LED (ARGB on/off)
  • Pre-installed Fans:
    • Side: 3x 120mm ARGB
    • Rear: 1x 120mm ARGB
  • Fan Support:
    • Top: 3x 120mm / 2x 140mm
    • Side: 3x 120mm / 2x 140mm
    • Bottom: 3x 120mm
    • Rear: 1x 120mm
  • Radiator Support:
    • Top: Up to 360mm
    • Side: Up to 280mm
    • Bottom: Up to 360mm
  • Max CPU Cooler Height: Up to 160mm
  • Max GPU Length: Up to 445mm
  • Drive Bays:
    • 2x 3.5" (HHD)
    • 3x 2.5" (SSD)
  • Max PSU Length: Up to 240mm
  • Product Dimensions: 46 x 29 x 40 cm
  • Product Weight: 6800g

WHAT'S IN THE BOX:

  • PCBuilder HOLDFAST ATX Back-Connect Gaming Chassis - Black x1

Please note: Images are for illustrative purposes only.

Brand PCBuilder
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 CX300 ATX ARGB Gaming Chassis - White
Antec

Antec CX300 ATX ARGB Gaming Chassis - White

R 1 049.94

In Stock

Asus A31 PLUS Mid Tower ATX Chassis - Black
ASUS

Asus A31 PLUS Mid Tower ATX Chassis - Black

R 2 285.40

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!