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

PCBuilder HIDEOUT Micro-ATX Back-Connect Gaming Chassis

SKU: PCB-CH-HIDEOUT
R 1 257.58
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 is as functional as it is striking. Its back-connect Micro-ATX motherboard layout and stunning curved tempered glass panels on the front and side combine to create a sleek display of power and style. The pre-installed 4x 120mm ARGB fans light up your build with vibrant colours and effects, with room to add up to five more fans for a truly custom look. Customize your lighting with the included remote or sync it with ASUS Aura, MSI Mystic Light, GIGABYTE Fusion, or ASRock Polychrome RGB for seamless integration.

Cooling is optimized to handle even the most intense sessions. With mesh-vented sides, a top magnetic dust cover, and support for up to three radiators - including a massive 360mm liquid cooler - your components stay cool under pressure. Whether you’re building for gaming, streaming, or multitasking, this chassis has the cooling power to keep up.

Built for high-performance setups, this chassis supports Micro-ATX and Mini-ITX motherboards, with 5 PCI expansion slots for all your components. It can house GPUs up to 445mm long and CPU coolers up to 160mm tall, making it perfect for high-end hardware. Storage is simple and efficient, with space for 2x 3.5"" HDDs and 3x 2.5"" SSDs, ensuring you have all the room you need for games, media, and more.

The I/O panel delivers all the essential connectivity you need, including USB 3.0, a Type-C port, and dedicated audio and mic jacks, keeping your setup streamlined and functional.

From its stunning design to its advanced cooling and hardware compatibility, this chassis is more than just a case - it’s the core of your next incredible gaming setup.

FEATURES:

  • Sleek back-connect micro-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 9x 120mm fans (comes with 3x 120mm ARGB fans pre-installed)

SPECIFICATIONS:

  • Colour: Black
  • Case Material: Steel & tempered glass
  • Motherboard Support: 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: 5
  • 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: 2x 120mm ARGB
    • Rear: 1x 120mm ARGB
  • Fan Support:
    • Top: 3x 120mm / 2x 140mm
    • Side: 2x 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 37 cm
  • Product Weight: 6000g

WHAT'S IN THE BOX:

  • PCBuilder HIDEOUT Micro-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

FSP U580 ARGB ATX Ultra Tower Gaming Chassis - Black
FSP

FSP U580 ARGB ATX Ultra Tower Gaming Chassis - Black

R 2 181.58

Out of Stock

Antec AX20 ATX Gaming Chassis
Antec

Antec AX20 ATX Gaming Chassis

R 582.75

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!