/*
================================================================================
WHAT:
  Static-site styles for the LightRays canvas overlay.
WHY:
  Keep the waitlist asset pipeline simple while matching the React login effect.
================================================================================
*/

.light-rays-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.light-rays-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.light-rays-container.waitlist-light-rays {
  opacity: 0.82;
}
