/* ==========================================================
   Background WebGL Layer Styles
   ========================================================== */

#background-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#background-layer canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.bg-webgl {
  width: 100%;
  height: 100%;
  display: block;
}

/* CSS Fallback if WebGL fails */
#background-layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(
      ellipse at 50% 40%,
      rgba(212, 175, 55, 0.08) 0%,
      rgba(19, 122, 82, 0.05) 40%,
      rgba(11, 20, 16, 0.95) 100%
    ),
    linear-gradient(
      135deg,
      #0b1410 0%,
      #0f1a15 50%,
      #0b1410 100%
    );
  z-index: -1;
}