/* =========================================================
   video-stage.css — the fullscreen, non-interactive video
   ========================================================= */

.video-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #000;
  overflow: hidden;
}

.video-stage__video {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills the entire screen edge-to-edge, no letterbox bars */
  object-position: center;
  pointer-events: none;   /* video cannot be tapped/clicked/paused by the user */
}
