html, body {
  margin: 0;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: system-ui, sans-serif;
}

#player {
  width: 100%;
  max-width: 1600px;
  aspect-ratio: 16 / 9;
}

#offline {
  color: #888;
  font-family: system-ui, sans-serif;
}

#hint {
  color: #888;
  font-size: 0.8rem;
  margin: 0.5rem 0;
}

#switcher {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
}

#switcher a {
  color: #666;
  text-decoration: none;
}

#switcher a:hover {
  color: #999;
}

#switcher a.active {
  color: #ccc;
}
