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

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
}

.player-shell {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  background: #050505;
}

video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  object-fit: contain;
  background: #050505;
}

.status {
  position: absolute;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.8rem;
  border-radius: 0.4rem;
  color: #f5f5f5;
  background: rgb(0 0 0 / 78%);
  font: 500 0.85rem/1.3 system-ui, sans-serif;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.status.visible {
  opacity: 1;
}
