:root {
  color-scheme: light dark;
  --bg: #0b0d10;
  --fg: #e6e8eb;
  --muted: #9aa4af;
  --accent: #4f9cff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}

main {
  width: 100%;
  max-width: 960px;
}

h1 {
  font-size: 1.25rem;
  margin: 0 0 8px;
}

#status {
  color: var(--muted);
  margin: 0 0 16px;
}

video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  display: block;
}

.hint {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 12px;
}
