/* TayTV screening room — channel-first video archive */

.screening-room {
  --cinema: #160b15;
  --cinema-soft: #28111f;
  --curtain: #76253b;
  --curtain-deep: #451324;
  --screen: #fff7e8;
  --projector: #f0cb72;
  --violet: #b6a0ef;
  --video-line: rgba(255, 247, 232, 0.2);
  overflow: hidden;
  background: var(--paper);
}

.video-breadcrumbs {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.25rem;
  color: rgba(255, 247, 232, 0.7);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-breadcrumbs a {
  color: var(--screen);
  text-decoration: none;
}

.video-breadcrumbs a:hover {
  text-decoration: underline;
}

.video-hero {
  position: relative;
  isolation: isolate;
  min-height: min(54rem, calc(100vh - var(--header-height)));
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 35%, rgba(214, 181, 92, 0.18), transparent 25rem),
    linear-gradient(115deg, #110910 0%, var(--cinema) 46%, #260e1d 100%);
  color: var(--screen);
}

.video-hero::before,
.video-hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  width: clamp(4.5rem, 11vw, 10rem);
  content: "";
  opacity: 0.92;
}

.video-hero::before {
  left: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 18%),
    repeating-linear-gradient(90deg, #4b1426 0 18%, #791f3b 18% 40%, #3d1021 40% 58%, #671b33 58% 82%, #3b0f20 82% 100%);
  clip-path: polygon(0 0, 100% 0, 79% 28%, 70% 68%, 98% 100%, 0 100%);
  box-shadow: 1.5rem 0 4rem rgba(0, 0, 0, 0.48);
}

.video-hero::after {
  right: 0;
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.45), transparent 18%),
    repeating-linear-gradient(90deg, #3b0f20 0 18%, #671b33 18% 42%, #3d1021 42% 60%, #791f3b 60% 82%, #4b1426 82% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%, 30% 68%, 21% 28%);
  box-shadow: -1.5rem 0 4rem rgba(0, 0, 0, 0.48);
}

.video-hero__glow {
  position: absolute;
  z-index: -2;
  top: -22rem;
  left: 50%;
  width: 74rem;
  height: 62rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 230, 166, 0.17), rgba(255, 230, 166, 0.035) 44%, transparent 68%);
  filter: blur(10px);
  transform: translateX(-50%);
  animation: projector-breathe 7s ease-in-out infinite alternate;
}

.video-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 0.78fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  min-height: 43rem;
  padding-block: clamp(4rem, 7vw, 7rem) 6rem;
}

.video-hero__copy {
  max-width: 44rem;
}

.video-hero__copy .eyebrow {
  margin-bottom: 1.2rem;
  color: var(--projector);
}

.video-hero__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.9rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.video-hero__copy h1 em {
  color: var(--violet);
  font-weight: 400;
}

.video-hero__copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: rgba(255, 247, 232, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
}

.video-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.video-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.video-button:hover {
  transform: translateY(-2px);
}

.video-button--light {
  border-color: var(--screen);
  background: var(--screen);
  color: var(--cinema);
}

.video-button--light:hover {
  border-color: var(--projector);
  background: var(--projector);
}

.video-button--outline {
  border-color: rgba(255, 247, 232, 0.5);
  background: transparent;
  color: var(--screen);
}

.video-button--outline:hover {
  border-color: var(--screen);
  background: rgba(255, 255, 255, 0.08);
}

.video-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 1.8rem;
  color: rgba(255, 247, 232, 0.56);
  font-size: 0.75rem;
}

.video-hero__notes span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.video-hero__notes i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--projector);
  box-shadow: 0 0 0 0.25rem rgba(240, 203, 114, 0.12);
}

.marquee {
  position: relative;
  width: min(100%, 31rem);
  margin-inline: auto;
  padding: 0.65rem;
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-radius: 1.25rem 1.25rem 0.4rem 0.4rem;
  background: #0d090d;
  box-shadow: 0 2.4rem 8rem rgba(0, 0, 0, 0.55), 0 0 0 0.45rem rgba(240, 203, 114, 0.04);
  transform: rotate(1.25deg);
}

.marquee::before {
  position: absolute;
  z-index: -1;
  inset: -1rem;
  border: 1px solid rgba(240, 203, 114, 0.2);
  border-radius: 1.8rem 1.8rem 0.8rem 0.8rem;
  content: "";
}

.marquee__top {
  display: flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
  border: 1px solid rgba(240, 203, 114, 0.32);
  background: #211117;
  color: var(--projector);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee__top span {
  animation: marquee-star 1.7s ease-in-out infinite alternate;
}

.marquee__poster {
  position: relative;
  display: block;
  width: 100%;
  min-height: 17rem;
  margin-top: 0.55rem;
  overflow: hidden;
  border: 0;
  background: #2a1820;
  color: white;
}

.marquee__poster img {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.45s var(--ease);
}

.marquee__poster:hover img,
.marquee__poster:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.marquee__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 8, 15, 0.48));
}

.marquee__play,
.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(18, 9, 17, 0.74);
  box-shadow: 0 0 0 0.55rem rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.marquee__play i,
.video-card__play i {
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-top: 0.58rem solid transparent;
  border-bottom: 0.58rem solid transparent;
  border-left: 0.92rem solid currentColor;
}

.marquee__poster:hover .marquee__play,
.marquee__poster:focus-visible .marquee__play {
  background: var(--curtain);
  transform: translate(-50%, -50%) scale(1.07);
}

.marquee__duration,
.video-card__duration {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.24rem 0.42rem;
  border-radius: 0.2rem;
  background: rgba(13, 9, 13, 0.88);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
}

.marquee__bill {
  padding: 1.2rem 1rem 1.05rem;
  border: 1px solid rgba(240, 203, 114, 0.32);
  border-top: 0;
  background: var(--screen);
  color: var(--cinema);
}

.marquee__bill > span {
  display: block;
  color: #7b263f;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee__bill h2 {
  margin: 0.55rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.marquee__bill button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f1a31;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.marquee__bill button:hover {
  text-decoration: underline;
}

.video-hero__ticker {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-block: 1px solid rgba(240, 203, 114, 0.28);
  background: rgba(9, 5, 9, 0.83);
  color: rgba(255, 247, 232, 0.75);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.video-hero__ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.4rem;
  min-height: 2.9rem;
  padding-inline: 1.2rem;
  animation: screening-ticker 28s linear infinite;
}

.video-hero__ticker i {
  color: var(--projector);
  font-style: normal;
}

.video-program {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.video-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.video-section-head .eyebrow {
  color: #7b263f;
}

.video-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.video-section-head h2 em {
  color: #7b263f;
  font-weight: 400;
}

.video-section-head > p {
  margin: 0;
  color: var(--muted);
}

.program-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 18rem) auto;
  gap: 0.75rem;
  align-items: center;
  padding-block: 1rem;
  border-block: 1px solid var(--line);
}

.program-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.program-tabs button,
.surprise-screening {
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.program-tabs button:hover,
.program-tabs button.is-active,
.surprise-screening:hover {
  background: var(--ink);
  color: var(--cream);
}

.program-tabs button.is-active {
  border-color: var(--ink);
}

.program-search {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  padding-inline: 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
}

.program-search:focus-within {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.program-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.84rem;
}

.surprise-screening {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-color: #7b263f;
  background: #7b263f;
  color: var(--screen);
  white-space: nowrap;
}

.surprise-screening:hover {
  transform: translateY(-2px);
}

.program-status {
  min-height: 1.5rem;
  margin: 1rem 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 1rem;
}

.video-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.62);
  box-shadow: 0 0 0 rgba(23, 22, 28, 0);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.video-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-0.25rem);
}

.video-card__poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  background: #22121c;
  color: white;
}

.video-card__poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(13, 9, 13, 0.56));
  content: "";
  pointer-events: none;
}

.video-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s var(--ease), transform 0.7s var(--ease);
}

.video-card__poster:hover img,
.video-card__poster:focus-visible img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.045);
}

.video-card__play {
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  opacity: 0.94;
}

.video-card__play i {
  border-top-width: 0.43rem;
  border-bottom-width: 0.43rem;
  border-left-width: 0.7rem;
}

.video-card__duration {
  z-index: 2;
}

.video-card__number {
  position: absolute;
  z-index: 3;
  top: 0.6rem;
  left: 0.6rem;
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(13, 9, 13, 0.75);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.video-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.15rem 1rem;
}

.video-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  color: #7b263f;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.video-card__meta span + span::before {
  margin-right: 0.45rem;
  content: "·";
}

.video-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.video-card__stats {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.video-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.video-card__actions button,
.video-card__actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.72rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.video-card__actions button:hover,
.video-card__actions a:hover,
.video-card__actions button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
}

.video-card__actions button[aria-pressed="true"] {
  border-color: var(--ink);
}

.video-empty {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  border: 1px dashed var(--line-strong);
  text-align: center;
}

.video-empty span {
  display: block;
  margin-bottom: 0.7rem;
  color: #7b263f;
  font-size: 2rem;
}

.video-empty h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: 2rem;
}

.video-empty p {
  margin-bottom: 0;
  color: var(--muted);
}

.room-selector {
  position: relative;
  isolation: isolate;
  padding-block: clamp(5rem, 9vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(182, 160, 239, 0.1), transparent 25rem),
    radial-gradient(circle at 90% 80%, rgba(240, 203, 114, 0.08), transparent 24rem),
    var(--cinema);
  color: var(--screen);
}

.room-selector::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 247, 232, 0.2) 0 1px, transparent 1.5px);
  background-size: 4.5rem 4.5rem;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 45%, transparent 55%, black);
  opacity: 0.24;
}

.video-section-head--light .eyebrow {
  color: var(--projector);
}

.video-section-head--light h2 em {
  color: var(--violet);
}

.video-section-head--light > p {
  color: rgba(255, 247, 232, 0.64);
}

.room-selector__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.screening-door {
  position: relative;
  display: grid;
  min-height: 25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.22);
  background: #2b1421;
  color: var(--screen);
  text-align: left;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.screening-door::before,
.screening-door::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  transition: transform 0.8s var(--ease);
}

.screening-door::before {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 8%, rgba(0, 0, 0, 0.17) 8% 18%, rgba(255, 255, 255, 0.04) 18% 28%);
}

.screening-door::after {
  inset: 1rem;
  border: 1px solid rgba(255, 247, 232, 0.14);
}

.screening-door--event {
  background:
    radial-gradient(circle at 50% 25%, rgba(240, 203, 114, 0.2), transparent 16rem),
    linear-gradient(145deg, #77283e, #35111f);
}

.screening-door--piano {
  background:
    radial-gradient(circle at 50% 28%, rgba(182, 160, 239, 0.2), transparent 16rem),
    linear-gradient(145deg, #293254, #151526);
}

.screening-door:hover,
.screening-door:focus-visible {
  border-color: var(--projector);
  transform: translateY(-0.4rem);
}

.screening-door:hover::before,
.screening-door:focus-visible::before {
  transform: scaleX(1.08);
}

.screening-door__number {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screening-door > i {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: rgba(255, 247, 232, 0.09);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-style: normal;
  letter-spacing: -0.07em;
  line-height: 1;
  transform: translate(-50%, -65%);
}

.screening-door > div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 2rem;
}

.screening-door small {
  display: block;
  margin-bottom: 0.6rem;
  color: rgba(255, 247, 232, 0.62);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.screening-door strong {
  display: block;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.screening-door div > span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.watch-queue {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.watch-queue__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-strong);
}

.watch-queue__head .eyebrow {
  color: #7b263f;
}

.watch-queue__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.watch-queue__head h2 span {
  display: inline-grid;
  min-width: 2rem;
  height: 2rem;
  place-items: center;
  margin-left: 0.45rem;
  border-radius: 50%;
  background: #7b263f;
  color: var(--screen);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0;
  vertical-align: middle;
}

.watch-queue__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.watch-queue__actions button {
  min-height: 44px;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.watch-queue__actions button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--cream);
}

.watch-queue__list {
  display: grid;
  gap: 0;
}

.queue-item {
  display: grid;
  grid-template-columns: 3.2rem 8.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 7rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.queue-item > span {
  color: #7b263f;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 800;
}

.queue-item__poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  background: var(--cinema);
}

.queue-item__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.queue-item__poster::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 0.36rem solid transparent;
  border-bottom: 0.36rem solid transparent;
  border-left: 0.62rem solid white;
  content: "";
  filter: drop-shadow(0 1px 4px black);
  transform: translate(-40%, -50%);
}

.queue-item__copy small {
  color: #7b263f;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.queue-item__copy h3 {
  max-width: 43rem;
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.12;
}

.queue-item__actions {
  display: flex;
  gap: 0.35rem;
}

.queue-item__actions button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-weight: 800;
}

.queue-item__actions button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--cream);
}

.queue-empty {
  padding: 3rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.queue-empty span {
  display: block;
  margin-bottom: 0.6rem;
  color: #7b263f;
  font-size: 1.8rem;
}

.queue-empty h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.queue-empty p {
  margin: 0;
  color: var(--muted);
}

.channel-callout {
  position: relative;
  min-height: 41rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 35%, rgba(240, 203, 114, 0.16), transparent 22rem),
    linear-gradient(145deg, #53172c, #1c0d18 72%);
  color: var(--screen);
}

.channel-callout::before,
.channel-callout::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 27%;
  content: "";
  background: repeating-linear-gradient(90deg, #3c1020 0 13%, #741e39 13% 31%, #451022 31% 48%, #6a1a34 48% 68%, #390e1d 68% 82%, #681932 82% 100%);
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.5);
}

.channel-callout::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 72% 38%, 83% 66%, 100% 100%, 0 100%);
}

.channel-callout::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 17% 66%, 28% 38%);
}

.channel-callout__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 41rem;
  place-items: center;
  align-content: center;
  text-align: center;
}

.channel-callout__inner .eyebrow {
  color: var(--projector);
}

.channel-callout__inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.channel-callout__inner h2 em {
  color: var(--violet);
  font-weight: 400;
}

.channel-callout__inner > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 1.7rem auto;
  color: rgba(255, 247, 232, 0.7);
}

.channel-callout__orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 31rem;
  height: 31rem;
  border: 1px solid rgba(240, 203, 114, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: screening-orbit 32s linear infinite;
}

.channel-callout__orbit span {
  position: absolute;
  color: rgba(240, 203, 114, 0.64);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.channel-callout__orbit span:nth-child(1) { top: -0.35rem; left: 50%; }
.channel-callout__orbit span:nth-child(2) { top: 50%; right: -1.2rem; }
.channel-callout__orbit span:nth-child(3) { bottom: -0.35rem; left: 45%; }
.channel-callout__orbit span:nth-child(4) { top: 48%; left: -0.2rem; }

.video-privacy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  padding-block: 3rem;
}

.video-privacy > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #7b263f;
  font-size: 1.4rem;
}

.video-privacy h2 {
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.video-privacy p {
  max-width: 58rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-privacy code {
  padding: 0.1rem 0.3rem;
  background: var(--paper-deep);
  color: var(--ink);
  font-size: 0.82em;
}

.video-dialog {
  width: min(73rem, calc(100% - 2rem));
  max-width: none;
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 247, 232, 0.24);
  background: var(--cinema);
  color: var(--screen);
  box-shadow: 0 2rem 10rem rgba(0, 0, 0, 0.72);
}

.video-dialog::backdrop {
  background: rgba(9, 5, 9, 0.88);
  backdrop-filter: blur(10px);
}

.video-dialog__shell {
  padding: 0.9rem;
}

.video-dialog__head,
.video-dialog__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.35rem 1rem;
}

.video-dialog__head span,
.video-dialog__foot,
.video-dialog__foot a {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-dialog__head div > span {
  color: var(--projector);
}

.video-dialog__head h2 {
  max-width: 58rem;
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.video-dialog__head > button {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 247, 232, 0.36);
  border-radius: 50%;
  background: transparent;
  color: var(--screen);
  font-size: 1.5rem;
}

.video-dialog__head > button:hover {
  background: var(--screen);
  color: var(--cinema);
}

.video-dialog__frame {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  place-items: center;
  overflow: hidden;
  background: #050305;
}

.video-dialog__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player-loading {
  display: grid;
  place-items: center;
  gap: 0.85rem;
  color: rgba(255, 247, 232, 0.72);
  font: 800 0.65rem var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-player-loading span {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 247, 232, 0.24);
  border-top-color: var(--projector);
  border-radius: 50%;
  animation: video-player-spin 0.8s linear infinite;
}

.video-player-loading p { margin: 0; }

.video-player-fallback {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 200px;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.video-player-fallback > img,
.video-player-fallback__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player-fallback__shade {
  z-index: -1;
  background: linear-gradient(rgba(5, 3, 5, 0.7), rgba(5, 3, 5, 0.94));
  backdrop-filter: blur(0.2rem);
}

.video-player-fallback > div {
  width: min(38rem, calc(100% - 2rem));
  padding: 1.4rem;
}

.video-player-fallback span {
  color: var(--projector);
  font: 800 0.6rem var(--font-mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.video-player-fallback h3 {
  margin: 0.55rem 0;
  color: var(--screen);
  font: 500 clamp(1.6rem, 4vw, 2.7rem)/0.98 var(--font-display);
  letter-spacing: -0.035em;
}

.video-player-fallback p {
  margin: 0 auto 1rem;
  color: rgba(255, 247, 232, 0.72);
  font-size: clamp(0.72rem, 1.6vw, 0.9rem);
}

.video-player-fallback a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  background: var(--screen);
  color: var(--cinema);
  padding: 0.65rem 1rem;
  font: 800 0.62rem var(--font-mono);
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.video-dialog__foot {
  padding: 1rem 0.35rem 0.35rem;
  color: rgba(255, 247, 232, 0.55);
}

.video-dialog__foot p {
  margin: 0;
}

.video-dialog__foot a {
  color: var(--screen);
  white-space: nowrap;
}

@keyframes projector-breathe {
  from { opacity: 0.72; transform: translateX(-50%) scale(0.96); }
  to { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@keyframes video-player-spin { to { rotate: 360deg; } }

@keyframes marquee-star {
  from { opacity: 0.45; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1.08); }
}

@keyframes screening-ticker {
  to { transform: translateX(-50%); }
}

@keyframes screening-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 1050px) {
  .video-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
    gap: 2.5rem;
  }

  .video-hero__copy h1 {
    font-size: clamp(3.8rem, 7vw, 6.2rem);
  }

  .program-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 17rem);
  }

  .surprise-screening {
    grid-column: 2;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .video-hero::before,
  .video-hero::after {
    width: 5rem;
    opacity: 0.7;
  }

  .video-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 4.5rem 7rem;
  }

  .video-hero__copy {
    padding-inline: 2rem;
    text-align: center;
  }

  .video-hero__copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .video-hero__actions,
  .video-hero__notes {
    justify-content: center;
  }

  .marquee {
    width: min(86%, 31rem);
    transform: none;
  }

  .video-section-head {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: start;
  }

  .program-toolbar {
    grid-template-columns: 1fr;
  }

  .program-search,
  .surprise-screening {
    grid-column: auto;
  }

  .program-tabs {
    flex-wrap: nowrap;
    padding-bottom: 0.45rem;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .program-tabs button {
    flex: 0 0 auto;
  }

  .room-selector__grid {
    grid-template-columns: 1fr;
  }

  .screening-door {
    min-height: 21rem;
  }

  .watch-queue__head {
    align-items: start;
    flex-direction: column;
  }

  .watch-queue__actions {
    justify-content: flex-start;
  }

  .queue-item {
    grid-template-columns: 2rem 7rem minmax(0, 1fr);
  }

  .queue-item__actions {
    grid-column: 2 / -1;
    justify-content: flex-end;
  }

  .channel-callout::before,
  .channel-callout::after {
    width: 18%;
  }

  .video-dialog__foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .video-breadcrumbs {
    padding-top: 0.9rem;
  }

  .video-hero__copy {
    padding-inline: 1rem;
  }

  .video-hero__copy h1 {
    font-size: clamp(3rem, 15.8vw, 5rem);
  }

  .video-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .video-button {
    width: 100%;
  }

  .video-hero__notes {
    align-items: center;
    flex-direction: column;
  }

  .marquee {
    width: calc(100% - 2.6rem);
  }

  .marquee__poster,
  .marquee__poster img {
    min-height: 13rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .screening-door > div {
    padding: 1.4rem;
  }

  .queue-item {
    grid-template-columns: 1.5rem 5.5rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .queue-item__copy h3 {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .channel-callout__inner {
    padding-inline: 2.5rem;
  }

  .channel-callout__orbit {
    width: 22rem;
    height: 22rem;
  }

  .video-privacy {
    grid-template-columns: 1fr;
  }

  .video-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
  }

  .video-dialog__shell {
    padding: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-hero__glow,
  .marquee__top span,
  .video-hero__ticker > div,
  .channel-callout__orbit {
    animation: none;
  }
  .video-player-loading span { animation: none; }
}

html[data-motion="off"] .video-hero__glow,
html[data-motion="off"] .marquee__top span,
html[data-motion="off"] .video-hero__ticker > div,
html[data-motion="off"] .channel-callout__orbit {
  animation: none;
}

@media (forced-colors: active) {
  .video-hero,
  .room-selector,
  .channel-callout,
  .screening-door,
  .marquee,
  .marquee__bill,
  .video-card,
  .video-dialog {
    background: Canvas;
    color: CanvasText;
  }

  .video-hero::before,
  .video-hero::after,
  .channel-callout::before,
  .channel-callout::after,
  .video-hero__glow,
  .channel-callout__orbit {
    display: none;
  }
}

@media print {
  .video-hero__actions,
  .video-hero__ticker,
  .program-toolbar,
  .video-card__actions,
  .watch-queue__actions,
  .channel-callout,
  .video-dialog {
    display: none !important;
  }

  .video-hero,
  .room-selector {
    background: white !important;
    color: black !important;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
