.vd-page {
  min-height: 100vh;
}

.vd-main {
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 1fr);
  gap: 1.1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.1rem 1.15rem 3rem;
}

.vd-rail {
  position: sticky;
  top: calc(var(--sp-top) + 0.75rem);
  align-self: start;
  padding: 0.85rem 0.75rem;
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  background: rgba(14, 26, 20, 0.72);
}

.vd-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-muted);
}

.vd-cats {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.vd-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  width: 100%;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0.42rem 0.5rem;
  background: transparent;
  color: var(--sp-text);
  font: inherit;
  font-size: 0.82rem;
  text-align: left;
  cursor: pointer;
}

.vd-cat:hover,
.vd-cat:focus-visible {
  background: rgba(196, 163, 90, 0.12);
  outline: none;
}

.vd-cat.is-on {
  border-color: rgba(196, 163, 90, 0.45);
  background: rgba(196, 163, 90, 0.16);
  color: #e8d5a3;
}

.vd-cat-n {
  font-family: var(--sp-mono);
  font-size: 0.68rem;
  color: var(--sp-muted);
}

.vd-stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.vd-player-card {
  border: 1px solid rgba(196, 163, 90, 0.28);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(196, 163, 90, 0.12), transparent 55%),
    rgba(10, 20, 15, 0.9);
}

.vd-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050a08;
}

.vd-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vd-frame-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--sp-muted);
  letter-spacing: 0.04em;
}

.vd-now {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem 1.05rem;
}

.vd-now h2 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.2rem;
  color: var(--sp-gold);
}

.vd-blurb {
  margin: 0;
  color: var(--sp-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 40rem;
}

.vd-now-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vd-section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  color: var(--sp-gold);
}

.vd-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.vd-section-head h2 {
  margin: 0;
}

.vd-section-head p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--sp-muted);
}

.vd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 0.75rem;
}

.vd-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--sp-border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(14, 26, 20, 0.72);
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.vd-card:hover,
.vd-card:focus-visible {
  border-color: rgba(196, 163, 90, 0.5);
  outline: none;
}

.vd-card.is-on {
  border-color: rgba(196, 163, 90, 0.7);
  box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.25);
}

.vd-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #08120e;
}

.vd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-play {
  position: absolute;
  inset: auto 0.65rem 0.65rem auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.92);
  color: #1a140c;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}

.vd-card-body {
  padding: 0.7rem 0.75rem 0.8rem;
}

.vd-card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  color: #e8d5a3;
}

.vd-card-body p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--sp-muted);
  line-height: 1.4;
}

.vd-empty {
  margin: 0;
  padding: 1.1rem 1rem;
  border: 1px dashed rgba(196, 163, 90, 0.28);
  border-radius: 12px;
  color: var(--sp-muted);
  font-size: 0.88rem;
}

@media (max-width: 840px) {
  .vd-main {
    grid-template-columns: 1fr;
  }

  .vd-rail {
    position: static;
  }

  .vd-cats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .vd-cat {
    width: auto;
  }
}
