.beams-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
}

.gradient-background canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Blur overlay above animated background */
.gradient-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 10;
}
