/* ── YouTube 24/7 player ─────────────────────────── */

.yt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(9, 10, 18, .1);
}

.yt-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.yt-tag {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 11px;
  color: rgba(9, 10, 18, .48);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: .04em;
}

.yt-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(182, 74, 59, .28);
  padding: 0 10px;
  min-height: 26px;
}

.yt-live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

/* ── Player wrap ─────────────────────────────────── */

.yt-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

#yt-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#yt-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Unmute corner button ────────────────────────── */

#yt-unmute {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(9, 10, 18, .72);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 8px 14px;
  min-height: 36px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .15s ease, border-color .15s ease;
}

#yt-unmute:hover {
  background: rgba(9, 10, 18, .92);
  border-color: rgba(255, 255, 255, .5);
}

#yt-unmute.hidden {
  display: none;
}

#yt-unmute svg {
  flex-shrink: 0;
}
