:root {
  --bg: #120018;
  --bg-2: #1d0828;
  --ink: #f7eef8;
  --muted: #cbb4d8;
  --accent: #e9b3ff;
  --btn: #f4d6ff;
  --btn-ink: #2a0733;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  :root {
    --bg: #140c07;
    --bg-2: #2a160c;
    --ink: #f8efe3;
    --muted: #e0c7a6;
    --accent: #f5c16a;
    --btn: #f59e0b;
    --btn-ink: #1a0d05;
    --line: rgba(255, 236, 210, 0.16);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-fill {
  display: none;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(100%, calc(100svh * 16 / 9));
  max-width: 100%;
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.buy-tickets {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 76%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(78%, 22rem);
  min-height: 3.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 7vw, 3.4rem);
  letter-spacing: 0.08em;
  line-height: 1;
  background: var(--btn);
  color: var(--btn-ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.buy-tickets:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

.hero-links {
  position: absolute;
  z-index: 2;
  bottom: 1.1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

@media (max-width: 767px) {
  .hero-fill {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: blur(10px);
    transform: scale(1.08);
    opacity: 0.45;
  }

  .hero-stage {
    width: min(94vw, 40rem);
    margin-inline: auto;
  }

  .hero-banner {
    border-radius: 0.4rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }

  .buy-tickets {
    top: auto;
    bottom: 12%;
    transform: translateX(-50%);
    min-height: 3.2rem;
    font-size: clamp(1.6rem, 9vw, 2.6rem);
  }

  .buy-tickets:hover {
    transform: translateX(-50%) scale(1.03);
  }
}

.hero-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin: 0;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.synopsis p {
  color: var(--muted);
  font-weight: 300;
}

.zip-row,
.times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
}

.btn.primary {
  background: var(--btn);
  color: var(--btn-ink);
}

.time-btn {
  min-width: 6.8rem;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.2;
  background: color-mix(in srgb, var(--bg-2) 70%, white 6%);
  color: var(--ink);
  border: 1px solid var(--line);
}

.time-btn small {
  font-weight: 400;
  color: var(--muted);
}

.time-btn:hover,
.date-chip:hover,
.date-chip.active {
  border-color: var(--accent);
  color: var(--accent);
}

main {
  display: grid;
  gap: 2.5rem;
  padding: 2rem 1.1rem 4rem;
  max-width: 72rem;
  margin: 0 auto;
}

.credits {
  font-size: 0.92rem;
}

.panel {
  background: color-mix(in srgb, var(--bg-2) 88%, black);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.section-head p:last-child {
  color: var(--muted);
  max-width: 38rem;
}

.date-row {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.3rem 0 1rem;
  scrollbar-width: none;
}

.date-chip {
  flex: 0 0 auto;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.65rem 0.85rem;
  min-width: 4.6rem;
  text-align: center;
  cursor: pointer;
  font: inherit;
}

.date-chip small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.theater-card {
  display: grid;
  gap: 1rem;
}

.zip-form {
  margin-top: 1.4rem;
}

.zip-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.zip-form input {
  flex: 1;
  min-width: 8rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font: inherit;
}

.video-frame {
  position: relative;
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .buy-tickets {
    top: 76%;
    min-height: 4.6rem;
    padding: 1.1rem 2.8rem;
  }

  main {
    padding-inline: 2rem;
  }

  .panel {
    padding: 2rem;
  }
}
