:root {
  color-scheme: dark;
  background: #050505;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#player,
#stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #050505;
}

#stage video,
#stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
  opacity: 0;
  transition: opacity 180ms ease;
}

#stage .is-active {
  opacity: 1;
}

#status {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: none;
  max-width: 720px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #f5f5f5;
  background: rgb(0 0 0 / 72%);
  font-size: 14px;
  line-height: 1.4;
}

#status.is-visible {
  display: block;
}
