FSP U580 ARGB ATX Ultra Tower Gaming Chassis - Black - FSP | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
FSP

FSP U580 ARGB ATX Ultra Tower Gaming Chassis - Black

SKU: U580-BA
R 2 181.58
Available on Backorder

Experience the next generation of PC building with the FSP U580 ARGB Ultra Tower Gaming Chassis, designed for gamers and creators who crave premium aesthetics and powerful hardware compatibility. Featuring a 270° panoramic angled glass exterior, this case showcases your components in a dramatic,...

This item is on backorder — new stock is expected around 7 Sep 2026. Order now and we'll ship yours as soon as it arrives.

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

Experience the next generation of PC building with the FSP U580 ARGB Ultra Tower Gaming Chassis, designed for gamers and creators who crave premium aesthetics and powerful hardware compatibility. Featuring a 270° panoramic angled glass exterior, this case showcases your components in a dramatic, full-view display while offering exceptional airflow and build accessibility. Its panoramic glass panels not only elevate the overall design, but also create a sophisticated, showroom-worthy look for any high-end setup.

Engineered with the future in mind, the U580 supports back-connect ATX motherboards, streamlining cable management and improving airflow for cleaner, more efficient builds. Its spacious dual-chamber layout accommodates the most demanding configurations, including graphics cards up to 415mm in length, and CPU coolers up to 160mm high. With nine expansion slots, builders have plenty of room for high-performance GPUs, capture cards, or storage controllers—ideal for enthusiasts building for gaming, streaming, or content creation.

Outfitted with a total of seven pre-installed ARGB fans, including six reverse blade fans for improved aesthetics and airflow, the U580 keeps your system running cool under pressure. With support for up to 360mm radiators on the side, top, or bottom, this case offers maximum flexibility for custom water-cooling setups or high-end AIO coolers. The built-in fan controller ensures synchronized lighting across all fans, enhancing your system’s visual impact while maintaining whisper-quiet operation.

Functionality meets cutting-edge connectivity with a front I/O panel featuring dual USB 3.0 ports and a high-speed USB Type-C port, perfect for quick data transfers and modern peripherals. Constructed from 0.7mm SPCC steel and three panels of curved tempered glass, the U580 combines durability with elegance, creating a chassis that looks as powerful as it performs. Whether you're building a battle-ready gaming rig or a professional workstation, the FSP U580 ARGB Ultra Tower delivers the space, style, and performance to match your ambitions.

FEATURES:

  • 270° panoramic view angled glass exterior design
  • Supporting back-connect motherboard
  • Spacious chamber design
  • Equipped with reverse ARGB fans
  • Supporting up to 360mm radiator
  • Supporting up to 415mm graphics cards
  • Lighting fast Type-C

SPECIFICATIONS:

  • Type: ATX Mid Tower
  • Materials: 0.7mm SPCC, Curved Glass x 3
  • Maximum CPU Cooler Height: 160mm
  • VGA Card Length: 415mm
  • Expansion Slots: 9
  • Motherboard Support: ATX(back-connect motherboard), M-ATX, Mini-ITX
  • External I/O port: USB3.0 x 2, Type-C
  • Power Supply Type: 240mm ATX
  • 3.5″ HDD: 1+1
  • 2.5″ SSD: 2+1
  • Fan Including(Pre-installed):
    • Side: 120mm reverse ARGB x 3 with controller
    • Bottom: 120mm reverse ARGB x 3
    • Rear: 120mm ARGB x 1
  • Fan & Water Cooler Support
    • Side: 120mm x 3 or 140mm x 2 or 360mm Radiator
    • Top: 120mm x 3 or 140mm x 2 or 360mm Radiator
    • Bottom: 120mm x 3 or 240mm Radiator
    • Rear: 120mm x 1
  • Max Radiator Support: 360mm
  • Colour: Black
  • Product Dimensions: 42.6 x 28.5 x 45.3 cm

WHAT’S IN THE BOX:

  • FSP U580 ARGB ATX Ultra Tower Gaming Chassis – Black x1
Brand FSP
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

ASUS Prime AP202 ARGB Micro-ATX Gaming Chassis - White
ASUS

ASUS Prime AP202 ARGB Micro-ATX Gaming Chassis - White

R 2 700.69

Only 1 left - order soon!

Antec CX700 ARGB Mid-Tower Gaming Chassis - White
Antec

Antec CX700 ARGB Mid-Tower Gaming Chassis - White

R 1 506.75

In Stock

Asus A31 PLUS Mid Tower ATX Chassis - White
ASUS

Asus A31 PLUS Mid Tower ATX Chassis - White

R 2 285.40

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!