/* ==========================================================================
   itzblaze AI Hub — Three.js 3D Background Canvas Overlay
   ========================================================================== */

#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 40%, rgba(6, 7, 12, 0.05) 0%, rgba(6, 7, 12, 0.65) 100%);
  z-index: 2;
  pointer-events: none;
}
