:root {
  color-scheme: dark;
  background: #11161a;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #11161a;
}

.stage {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #11161a;
}

.watch-video,
.watch-poster {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  object-position: center;
}

.watch-video {
  animation: reveal 500ms ease-out both;
}

.watch-poster {
  display: none;
}

@keyframes reveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-aspect-ratio: 3 / 4) {
  .watch-video,
  .watch-poster {
    object-position: 45% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .watch-video {
    display: none;
  }

  .watch-poster {
    display: block;
  }
}
