/* 3D WebGL Canvas Background Styles */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background-color: #070913;
}

.canvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(11, 14, 27, 0.4) 0%, rgba(7, 9, 19, 0.85) 75%, rgba(4, 5, 12, 0.96) 100%);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}
