:root {
  --bg: #0b1118;
  --panel: #121820;
  --text: #e8eef6;
  --muted: #8b9aab;
  --accent: #3d9cf0;
  --line: #2a3544;
  --font: "Manrope", system-ui, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  padding: 1.25rem;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse at 50% -10%, #1a2a3a 0%, transparent 55%),
    var(--bg);
}

.watch {
  width: min(920px, 100%);
  margin: 0 auto;
}

.watch__head {
  margin-bottom: 1rem;
}

.watch__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.watch__views {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.watch__views strong {
  color: var(--text);
  font-weight: 700;
}

.watch__stage {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #060a10;
  aspect-ratio: 16 / 9;
}

.watch__video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.watch__video[hidden] {
  display: none;
}

.watch__empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  background: #060a10;
}
.watch__empty[hidden] {
  display: none !important;
}

.watch__empty p {
  margin: 0;
}

.watch__empty-hint {
  font-size: 0.82rem;
  line-height: 1.4;
}

.watch__empty code {
  color: #a3b0be;
}

.watch__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.watch__links a {
  color: var(--accent);
  text-decoration: none;
}

.watch__links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  body {
    padding: 0.85rem;
  }
}
