/* ===== Golden Aurora Veil (full-bleed canvas) ===== */

#aurora{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;            /* sit behind everything */
  display: block;
  pointer-events: none;   /* let clicks pass through */
}

/* rich black base underneath, with tiny vignette */
body{
  background:
    radial-gradient(160% 120% at 50% -10%, rgba(255,212,0,.06), transparent 60%),
    #070707;
}

/* if motion is reduced, freeze the animation and show a soft static */
@media (prefers-reduced-motion: reduce){
  #aurora{ opacity: .9; }
}
