*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0d0d0d;
  color: #e0e0e0;
  font-family: 'Courier New', monospace;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

h1 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
}

a {
  color: #555
}

.player-wrapper {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid #2a2a2a;
  position: relative;
}

video {
  width: 100%;
  height: 100%;
  display: block;
}

.status {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #444;
}

.status.live::before {
  content: '🔴';
  color: #c0392b;
}

.noscript-msg {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #444;
}

