:root { color-scheme: dark; }

body {
  margin: 0;
  background: #030303;
}

.live-cinema,
.live-cinema * { box-sizing: border-box; }

.live-cinema {
  --live-gold: #d8ad58;
  --live-gold-bright: #ffe1a0;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  color: #f8f2e8;
  background:
    radial-gradient(circle at 75% 9%, rgba(207, 151, 51, .15), transparent 31%),
    linear-gradient(180deg, #080604, #030303 72%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.live-cinema__ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: var(--live-background);
  background-position: center top;
  background-size: cover;
  filter: saturate(.9) contrast(1.08) brightness(.45);
  transform: scale(1.025);
}

.live-cinema::before,
.live-cinema::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.live-cinema::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .93) 0, rgba(0, 0, 0, .69) 42%, rgba(0, 0, 0, .18) 73%, rgba(0, 0, 0, .54)),
    linear-gradient(0deg, #030303 0, transparent 47%, rgba(0, 0, 0, .48));
}

.live-cinema::after {
  z-index: -1;
  opacity: .26;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .035) 4px);
  mix-blend-mode: soft-light;
}

.live-cinema__nav,
.live-hero,
.live-program,
.live-cinema__footer {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.live-cinema__nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(216, 173, 88, .2);
}

.live-cinema__back,
.live-cinema__footer a {
  color: var(--live-gold-bright);
  text-decoration: none;
}

.live-cinema__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.live-cinema__brand {
  color: rgba(255, 255, 255, .58);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .19em;
  text-align: center;
  text-transform: uppercase;
}

.live-status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: rgba(255, 255, 255, .62);
  background: rgba(0, 0, 0, .5);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.live-status i,
.live-stage__record i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #706d68;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .045);
}

.live-hero {
  min-height: min(760px, calc(100vh - 82px));
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(440px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  padding-block: clamp(54px, 8vw, 110px);
}

.live-eyebrow {
  margin: 0;
  color: var(--live-gold);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.live-hero h1 {
  margin: 16px 0 22px;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.055em;
  text-shadow: 0 24px 55px #000;
}

.live-hero h1 em {
  color: var(--live-gold-bright);
  font-weight: 400;
}

.live-hero__lead {
  max-width: 600px;
  margin: 0;
  color: rgba(248, 242, 232, .7);
  font-size: clamp(.96rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.live-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.live-button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.live-button--disabled {
  border: 1px solid rgba(216, 173, 88, .32);
  color: rgba(255, 236, 194, .64);
  background: linear-gradient(135deg, rgba(216, 173, 88, .12), rgba(0, 0, 0, .62));
  cursor: not-allowed;
}

.live-button--ghost {
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .76);
  background: rgba(0, 0, 0, .36);
}

.live-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .1);
}

.live-hero__facts div {
  min-width: 0;
  padding: 13px 14px;
  background: rgba(3, 3, 3, .72);
}

.live-hero__facts dt {
  color: rgba(255, 255, 255, .4);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.live-hero__facts dd {
  margin: 5px 0 0;
  color: #f4dfb1;
  font-size: .76rem;
  font-weight: 750;
}

.live-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 88, .35);
  border-radius: 30px;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .72)),
    var(--live-background) center / cover;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .7), 0 0 50px rgba(216, 173, 88, .1);
}

.live-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, .56));
  pointer-events: none;
}

.live-stage__frame {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 21px;
}

.live-stage__corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--live-gold-bright);
  opacity: .74;
}

.live-stage__corner--one { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
.live-stage__corner--two { top: 10px; right: 10px; border-top: 2px solid; border-right: 2px solid; }
.live-stage__corner--three { right: 10px; bottom: 10px; border-right: 2px solid; border-bottom: 2px solid; }
.live-stage__corner--four { bottom: 10px; left: 10px; border-bottom: 2px solid; border-left: 2px solid; }

.live-stage__record,
.live-stage__time {
  position: absolute;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .75);
  font: 800 .62rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px #000;
}

.live-stage__record { left: 66px; }
.live-stage__time { right: 66px; }

.live-stage__seal {
  position: absolute;
  left: 50%;
  bottom: 35px;
  width: min(330px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 17px 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(216, 173, 88, .35);
  border-radius: 17px;
  background: rgba(3, 3, 3, .77);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .56), inset 0 1px rgba(255, 255, 255, .07);
  backdrop-filter: blur(13px);
}

.live-stage__seal > span { color: var(--live-gold); }
.live-stage__seal strong { font: 500 1.3rem/1 Georgia, serif; }
.live-stage__seal small { color: rgba(255, 255, 255, .52); }

.live-program {
  padding: clamp(54px, 7vw, 90px) 0;
  border-top: 1px solid rgba(216, 173, 88, .18);
}

.live-program > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.live-program h2 {
  margin: 8px 0 0;
  font: 500 clamp(2.2rem, 4vw, 4.2rem)/1 Georgia, serif;
}

.live-program__empty {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .58);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.live-program__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.live-program__grid article {
  position: relative;
  min-height: 245px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 88, .2);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(216, 173, 88, .09), transparent 42%),
    rgba(4, 4, 4, .78);
  box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 18px 45px rgba(0, 0, 0, .3);
}

.live-program__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(216, 173, 88, .24);
  font: 600 2.7rem/1 Georgia, serif;
}

.live-program__grid p {
  margin: 58px 0 8px;
  color: var(--live-gold);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.live-program__grid h3 {
  margin: 0 0 11px;
  color: #fff8e9;
  font: 500 1.55rem/1.08 Georgia, serif;
}

.live-program__grid article > span:last-child {
  color: rgba(255, 255, 255, .56);
  font-size: .86rem;
  line-height: 1.55;
}

.live-cinema__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .46);
  font-size: .8rem;
}

.live-cinema__footer p { margin: 0; }
.live-cinema__footer a { font-weight: 750; }

@media (hover: hover) {
  .live-button--ghost,
  .live-cinema__back,
  .live-cinema__footer a { transition: color .2s ease, border-color .2s ease, transform .2s ease; }
  .live-button--ghost:hover { border-color: rgba(216, 173, 88, .46); color: #fff; transform: translateY(-2px); }
  .live-cinema__back:hover,
  .live-cinema__footer a:hover { color: #fff; }
}

@media (max-width: 920px) {
  .live-cinema::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .87) 48%, #030303 78%);
  }
  .live-hero { grid-template-columns: 1fr; padding-top: 42px; }
  .live-hero__copy { max-width: 720px; }
  .live-stage { width: min(760px, 100%); }
  .live-program__grid { grid-template-columns: 1fr; }
  .live-program__grid article { min-height: 210px; }
}

@media (max-width: 620px) {
  .live-cinema__nav,
  .live-hero,
  .live-program,
  .live-cinema__footer { width: min(100% - 24px, 1240px); }

  .live-cinema__nav { grid-template-columns: 1fr auto; min-height: 70px; }
  .live-cinema__brand { display: none; }
  .live-status { padding-inline: 9px; }
  .live-hero { min-height: auto; gap: 35px; padding-block: 42px 58px; }
  .live-hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .live-hero__actions { display: grid; }
  .live-hero__facts { grid-template-columns: 1fr; }
  .live-stage { aspect-ratio: 4 / 4.7; background-position: 58% center; border-radius: 23px; }
  .live-stage__frame { inset: 10px; }
  .live-stage__record { left: 51px; }
  .live-stage__time { right: 51px; }
  .live-program > header,
  .live-cinema__footer { align-items: flex-start; flex-direction: column; }
  .live-program__grid article { padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .live-cinema *,
  .live-cinema *::before,
  .live-cinema *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
