:root {
  --black: #04070a;
  --ink: #070d10;
  --navy: #0c1b2e;
  --navy-deep: #081324;
  --forest: #0e2a1d;
  --forest-deep: #081a12;
  --moss: #1f5c3d;
  --brass: #c9a227;
  --brass-soft: #e0c264;
  --paper: #e8eae4;
  --muted: #9aa8a2;
  --line: rgba(201, 162, 39, 0.22);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--paper);
}

body {
  min-height: 100vh;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.6;
  background:
    radial-gradient(1100px 620px at 50% -12%, rgba(31, 92, 61, 0.30), transparent 62%),
    radial-gradient(900px 620px at 8% 108%, rgba(12, 27, 46, 0.85), transparent 60%),
    radial-gradient(900px 620px at 92% 100%, rgba(14, 42, 29, 0.55), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--black) 55%, #02050a 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- Curtains ------------------------------------------------------- */
.curtain {
  position: fixed;
  top: 0;
  bottom: 0;
  width: clamp(28px, 7vw, 110px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  background:
    repeating-linear-gradient(90deg,
      rgba(3, 12, 8, 0.95) 0px,
      rgba(22, 68, 45, 0.85) 16px,
      rgba(3, 12, 8, 0.95) 34px);
}
.curtain-left { left: 0; box-shadow: 18px 0 60px rgba(0, 0, 0, 0.75); }
.curtain-right { right: 0; box-shadow: -18px 0 60px rgba(0, 0, 0, 0.75); }

main {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) clamp(20px, 9vw, 64px) 80px;
}

/* --- Marquee -------------------------------------------------------- */
.marquee {
  position: relative;
  text-align: center;
  padding: clamp(20px, 4vw, 34px) clamp(16px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12, 27, 46, 0.72), rgba(8, 26, 18, 0.72));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6) inset, 0 28px 70px rgba(0, 0, 0, 0.6);
}

.bulbs {
  height: 10px;
  margin: 6px 0;
  background-image: radial-gradient(circle, var(--brass-soft) 0 2.4px, transparent 3px);
  background-size: 22px 10px;
  background-repeat: repeat-x;
  background-position: center;
  filter: drop-shadow(0 0 6px rgba(224, 194, 100, 0.55));
  animation: flicker 3.4s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.72; }
  55% { opacity: 0.95; }
}

.marquee-kicker {
  margin: 10px 0 4px;
  font-family: ui-sans-serif, system-ui, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--brass);
}

.marquee-title {
  margin: 0;
  font-size: clamp(1.7rem, 5.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.marquee-letter {
  display: inline-block;
  color: var(--paper);
  text-shadow: 0 0 16px rgba(224, 194, 100, 0.45), 0 0 44px rgba(31, 92, 61, 0.5);
}
.marquee-letter:nth-child(3n) { color: var(--brass-soft); }
.marquee-word { display: inline-block; white-space: nowrap; }

.marquee-sub {
  margin: 10px 0 4px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

/* --- Feature -------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-top: clamp(32px, 6vw, 56px);
}

.poster-frame {
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.5), rgba(8, 19, 36, 0.9) 55%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.poster {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--navy-deep);
}

.feature-title {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.12;
  color: #f2f4ec;
}

.facts {
  margin: 10px 0 18px;
  font-family: ui-sans-serif, system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.facts i { margin: 0 0.6em; opacity: 0.5; font-style: normal; }

.synopsis { margin: 0 0 16px; color: #cdd6d0; }

.host-note {
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 2px solid var(--moss);
  color: var(--muted);
  font-style: italic;
}

.showtime {
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(14, 42, 29, 0.55), rgba(8, 19, 36, 0.65));
}

.showtime-date {
  margin: 0;
  font-size: 1.15rem;
  color: var(--brass-soft);
}

.showtime-doors {
  margin: 4px 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.countdown {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(1.1rem, 3.4vw, 1.6rem);
  letter-spacing: 0.08em;
  color: #eef3ec;
  text-shadow: 0 0 20px rgba(31, 92, 61, 0.8);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-block;
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(8, 19, 36, 0.7);
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--brass); background: rgba(14, 42, 29, 0.85); }
.btn:focus-visible { outline: 2px solid var(--brass-soft); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(120deg, var(--moss), var(--navy));
  border-color: rgba(201, 162, 39, 0.55);
}

/* --- Panels --------------------------------------------------------- */
.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: clamp(36px, 6vw, 64px);
}

.panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12, 27, 46, 0.6), rgba(4, 7, 10, 0.6));
}

.panel h3 {
  margin: 0 0 12px;
  font-family: ui-sans-serif, system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}

.panel p, .panel li { color: #c6d0ca; font-size: 0.95rem; }
.panel ul { margin: 0; padding-left: 18px; }
.panel li { margin-bottom: 6px; }
.venue-name { margin: 0; color: #eef3ec; font-size: 1.05rem; }
.venue-address { margin: 4px 0 0; color: var(--muted); }

.past { list-style: none; padding: 0; }
.past li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed rgba(255, 255, 255, 0.08); padding-bottom: 6px; }
.past em { color: var(--muted); font-style: normal; }

footer {
  margin-top: 56px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

@media (max-width: 720px) {
  .feature { grid-template-columns: 1fr; }
  .poster-frame { max-width: 320px; margin: 0 auto; }
  .feature-info { text-align: center; }
  .host-note { border-left: 0; padding-left: 0; }
  .actions { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .bulbs { animation: none; }
  .btn:hover { transform: none; }
}
