    /* Fallback background color */
    html {
      background-color: #1a0a00;
    }
    body.login-page-body {
      background: #1a0a00 !important;
    }

/* ── Video Background ──────────────────────────────────────── */
#bg-video-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#bg-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* Gradient overlay for readability */
.bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.20) 100%
  );
  pointer-events: none;
}

