/* ==========================================================
                  Rock Never Dies —  stylesheet
   ========================================================== */

:root {
  --bg:         #000;
  --paper:      #d9d9d9;
  --ink:        #fff;
  --ink-muted:  rgba(255,255,255,.75);
  --red:        rgb(217,16,6);
  --red-soft:   rgba(217,16,6,.47);
  --red-softer: rgba(217,16,6,.28);
  --blue:       rgb(7,35,170);
  --blue-bg:    rgb(0,33,153);
  --gold:       rgb(175,117,29);
  --olive:      rgb(58,77,48);
  --yellow:     rgb(229,255,0);
  --green:      rgb(85,237,43);
  --pixel:      'VT323', ui-monospace, Menlo, monospace;
  --mono:       'Inconsolata', ui-monospace, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

html {
  overflow-x: clip;
  width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.2;
  -webkit-font-smoothing: none;
  font-smooth: never;
  image-rendering: pixelated;
}

body { min-height: 100vh; width: 100%; max-width: 100%; overflow-x: hidden; }

a { color: var(--blue); text-decoration: underline; cursor: pointer; }
a:visited { color: var(--blue); }
a.link-hot { color: var(--green); }

button { font-family: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }

/* ======== decorative divider (gold→olive, red border) ======== */
.stripe-divider {
  width: 100%;
  height: 22px;
  background: linear-gradient(var(--gold) 0%, var(--olive) 100%);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

/* ======== scrolling text divider ======== */
.stripe-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(var(--gold) 0%, var(--olive) 100%);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 2px 0;
}
.stripe-marquee-track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--pixel);
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  animation: marquee-ltr 30s linear infinite;
}
@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ======== sticky header ======== */
.header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: backdrop-filter .3s ease, background .3s ease;
}
.header.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,0,0,.35);
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: rgba(0,0,0,.55);
  z-index: 60;
  pointer-events: none;
}

body { padding-top: 88px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 70px;
  max-width: 1680px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.get-tickets-btn {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--pixel);
  font-size: 20px;
  color: #fff;
  background: linear-gradient(var(--blue) 0%, var(--red) 100%);
  border: 3px solid #fff;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  padding: 9px 48px;
  letter-spacing: .5px;
  text-transform: none;
  text-decoration: none;
  display: inline-block;
  transition: transform 120ms, box-shadow 120ms;
}
.get-tickets-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 6px rgba(0,0,0,.35); color: #fff; }
.get-tickets-btn:active { transform: translateY(1px); box-shadow: 0 2px 2px rgba(0,0,0,.35); }
.get-tickets-btn:visited { color: #fff; }

.nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.nav::-webkit-scrollbar { display: none; }
.nav-item {
  white-space: nowrap;
  font-family: var(--pixel);
  font-size: 16px;
  color: #fff;
  padding: 12px 4px;
  border: 1px solid var(--red);
  text-decoration: none;
  background: #000;
  letter-spacing: .5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-item:hover { background: #222; color: #fff; }
.nav-item.active { background: #000; color: #fff; border-color: var(--red); }
.nav-item:visited { color: #fff; }
.nav-item.active:visited { color: #fff; }
.nav-item.nav-item-mobile-only { display: none; }
.nav-item.nav-item-social { display: none; }
.nav-close { display: none; }

/* ======== page container ======== */
.page {
  max-width: 1528px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 48px 0; }

/* ======== page section visibility (JS show/hide) ======== */
.page-section        { display: none; }
.page-section.active { display: block; }

/* ======== typography ======== */
.h-pixel { font-family: var(--pixel); font-weight: 400; letter-spacing: .5px; }
.h-mono  { font-family: var(--mono); }
.link-blue { color: var(--blue); text-decoration: underline; cursor: pointer; }
.link-blue:hover { color: var(--red); }
.link-blue-on-dark { color: #6f86ff; text-decoration: underline; cursor: pointer; }

.center { text-align: center; }

/* ======== Home: hero ======== */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 70px;
}

.home-hero {
  display: grid;
  grid-template-columns: 802fr 708fr;
  gap: 20px;
  align-items: start;
  padding-top: 32px;
  padding-bottom: 24px;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
}

.hero-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.hero-right-col {
  display: flex;
  flex-direction: column;
}

.hero-show-photo {
  border: 1px solid var(--paper);
  overflow: hidden;
}

.hero-show-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* full-bleed background zones */
.zone-brick, .zone-lightning { max-width: 100%; }
.zone-brick {
  position: relative;
  background-image: none;
  margin-top: -88px;
  padding-top: 88px;
}
.zone-brick::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/backgrounds/Brick-BG.png');
  background-repeat: repeat;
  background-size: auto;
  filter: contrast(2);
  z-index: 0;
}
.zone-lightning {
  background-image: url('../img/backgrounds/Lightning-BG.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* hero poster area */
.hero-poster {
  border: 1px solid var(--paper);
  background: #000;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
}
.hero-poster img {
  width: 80%;
  height: auto;
}
.hero-eyebrow {
  font-family: var(--pixel);
  font-size: 22px;
  color: #fff;
  margin: 0 0 12px;
}
.hero-eyebrow--full {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.hero-paper {
  background: var(--paper);
  color: #000;
  font-family: var(--pixel);
  font-size: 24px;
  padding: 14px 24px;
  margin-top: 0;
  text-align: center;
  line-height: 1;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  justify-content: flex-start;
}
.ticket-availability {
  border: 1px solid var(--paper);
  background: var(--paper);
  margin-top: 16px;
}
.ticket-availability-header {
  background: #000;
  color: #fff;
  font-family: var(--pixel);
  font-size: 22px;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid var(--paper);
}
.ticket-availability-body {
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.ticket-availability-body a {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--blue);
}
.ticket-availability-body a:visited { color: var(--blue); }
.ticket-availability-body a:hover { color: var(--red); }

/* ======== Home: logos row ======== */
.logos-row {
  display: grid;
  grid-template-columns: 394fr 382fr 708fr;
  gap: 23px;
  margin-top: 24px;
  align-items: center;
}
.logo-box {
  border: 1px solid var(--paper);
  background: #000;
  aspect-ratio: 394 / 201;
  display: grid;
  place-items: center;
  padding: 16px;
}
.logo-box.seamless { border: 1px solid #000; }
.logo-box img { max-width: 80%; max-height: 80%; }
.logo-box .ait {
  font-family: 'Impact', 'Arial Narrow', 'Helvetica', sans-serif;
  color: #fff;
  text-align: center;
  line-height: .85;
  font-weight: 900;
  letter-spacing: -.5px;
}
.logo-box .ait .row1 { font-size: clamp(28px, 5.5vw, 64px); }
.logo-box .ait .row2 { font-size: clamp(40px, 7.5vw, 88px); color: #fff; }
.logo-box .ait .row3 { font-style: italic; font-family: 'Georgia', serif; font-weight: 400; font-size: clamp(16px, 2.5vw, 28px); color: #fff; }

.pics-videos {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--pixel);
  font-size: 24px;
  padding: 24px 0 0;
}
.pics-videos a { color: var(--green); text-decoration: underline; cursor: pointer; }
.pics-videos a:hover { color: #fff; }

/* ======== Home: showtimes + menu + playlist ======== */
.showtimes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-top: 24px;
  align-items: stretch;
}
.zone-lightning .showtimes-grid {
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}
.zone-lightning .page,
.page--wide {
  padding-left: 120px;
  padding-right: 120px;
}
.showtimes-col h2 {
  font-family: var(--pixel);
  font-size: 26px;
  color: #fff;
  margin: 0 0 16px;
}
.showtimes-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.showtimes-col li {
  font-family: var(--mono);
  font-size: 22px;
  padding: 3px 0;
}
.showtimes-col li a { color: var(--blue); text-decoration: underline; }
.showtimes-col li a:hover { color: var(--red); }

.map-info-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.map-info-row .map-embed {
  flex: 0 0 55%;
}
.show-info {
  display: grid;
  gap: 20px;
  font-family: var(--mono);
  font-size: 17px;
  color: #fff;
  flex: 1;
}
.show-info .label { color: #fff; opacity: .9; }
.show-info a { color: var(--green); }

.blurb-p {
  font-family: var(--mono);
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 25px;
}

/* google-map embed */
.map-embed {
  flex: 0 0 55%;
  aspect-ratio: 458 / 306;
  border: 1px solid var(--paper);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ======== dinner menu ======== */
.dinner-menu {
  background: var(--paper);
  color: #000;
  padding: 30px;
  font-family: var(--pixel);
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dinner-menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  padding: 6px 10px;
  background: var(--blue-bg);
  color: #fff;
  flex-shrink: 0;
}
.dinner-menu-title .help { color: rgba(255,255,255,.8); font-size: 20px; cursor: pointer; }
.dinner-menu-help-blurb {
  display: none;
  font-size: 16px;
  line-height: 1.35;
  padding: 8px 10px 10px;
  border-bottom: 1px solid #000;
}
.dinner-menu-help-blurb.active { display: block; }
.dinner-menu-tabs {
  display: flex;
  gap: 18px;
  padding: 6px 10px 8px;
  font-size: 20px;
  border-bottom: 1px solid #000;
  flex-shrink: 0;
}
.dinner-menu-tab { cursor: pointer; padding: 2px 4px; }
.dinner-menu-tab.active { background: #000; color: var(--paper); }
.dinner-menu-choice { font-size: 18px; padding: 8px 10px 2px; flex-shrink: 0; opacity: .75; }
.dinner-menu-item { font-size: 20px; padding: 4px 10px; flex-shrink: 0; }
.dinner-menu-img {
  flex: 1;
  min-height: 0;
  background: #b7b7b7;
  overflow: hidden;
}
.dinner-menu-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dinner-menu-caption {
  font-family: var(--pixel);
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-top: 8px;
}
.dinner-menu-panel { display: none; }
.dinner-menu-panel.active { display: flex; flex-direction: column; flex: 1; min-height: 0; }

/* FAQ teaser section grid explicit placement */
#section-faq-home .showtimes-grid,
#section-faq-teaser .showtimes-grid {
  grid-template-rows: auto auto;
}
#section-faq-home .showtimes-grid > div:first-child,
#section-faq-teaser .showtimes-grid > div:first-child { grid-column: 1; grid-row: 1; }
#section-faq-home .faq-marquee-strip,
#section-faq-teaser .faq-marquee-strip { grid-column: 1 / -1; grid-row: 2; width: calc(100% + 48px); margin-left: -24px; }
#section-faq-home .player-col,
#section-faq-teaser .player-col { grid-column: 2; grid-row: 1; }

/* ======== FAQ teaser ======== */
.faq-teaser {
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1.35;
}
.faq-teaser h3 { margin: 0 0 2px; font-weight: 700; font-size: 22px; color: #fff; }
.faq-teaser p  { margin: 0 0 18px; color: #fff; }
.faq-teaser .faq-more { color: var(--green); text-decoration: underline; }

.before-you-go {
  background: var(--paper);
  color: #000;
  font-family: var(--pixel);
  font-size: 22px;
  text-align: center;
  padding: 6px 16px;
  display: inline-block;
  margin: 0 0 14px;
}

/* ======== ticket CTA box ======== */
.ticket-cta-wrap {
  max-width: 420px;
  width: 100%;
  margin-top: 20px;
}
.ticket-cta-flames {
  width: 100%;
  height: auto;
  display: block;
}
.ticket-cta {
  background: linear-gradient(var(--red) 0%, var(--gold) 100%);
  padding: 20px 20px 28px;
  font-family: var(--pixel);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.ticket-cta p { margin: 0; font-size: 22px; line-height: 1.15; }
.ticket-cta a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  padding: 6px 22px;
  text-decoration: underline;
  font-size: 22px;
  align-self: center;
}
.ticket-cta a:hover { background: #fff; color: var(--red); }

/* ======== footer ======== */
.footer-nav-grid { display: none; }

.site-footer { background: #000; }
.marquee-strip {
  background: #000;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  border-top: 1px solid #111;
  line-height: 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track img {
  height: 80px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.copy {
  font-family: var(--pixel);
  font-size: 20px;
  color: #fff;
  text-align: center;
  padding: 14px 10px 28px;
}

/* ======== About ======== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 0;
  padding-top: 80px;
  align-items: start;
  background-image: url('../img/backgrounds/Lightning-BG.png');
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.about-poster {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--paper);
  background: #0b0b0b;
  overflow: hidden;
}
.about-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-copy p {
  font-family: var(--mono);
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 5px;
}
.about-poster { grid-row: 1 / 3; }
.about-copy { grid-column: 2; grid-row: 1; }
.about-tagline {
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin: 6px 0 0;
  grid-column: 2;
  grid-row: 2;
}

#section-cast {
  background-image: url('../img/backgrounds/Heart-BG.gif');
  background-repeat: repeat;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.cast-grid {
  background: var(--paper);
  color: #000;
  padding: 25px 17px 17px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 60px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.cast-card { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cast-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.08) 0 8px, transparent 8px 16px),
    #9a9a9a;
  border: 2px solid var(--red);
  overflow: hidden;
}
.cast-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cast-name {
  font-family: var(--pixel);
  font-size: 22px;
  text-align: center;
  line-height: 1.05;
  color: #000;
  white-space: pre-line;
}
.crew-list {
  text-align: center;
  margin: 40px 0;
  font-family: var(--pixel);
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
}
.crew-list .crew { margin-bottom: 18px; }

/* FAQ (windows 98 style) */
.faq-window {
  max-width: 1088px;
  margin: 40px auto 0;
  background: var(--paper);
  color: #000;
  border: 2px solid #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,.6);
  position: relative;
}
.faq-title {
  background: var(--blue-bg);
  color: #fff;
  font-family: var(--pixel);
  font-size: 22px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-title .help { opacity: .8; cursor: pointer; }
.faq-tabs {
  display: flex;
  gap: 14px;
  padding: 10px 14px 0;
  border-bottom: 1px solid #000;
  flex-wrap: wrap;
  font-family: var(--pixel);
  font-size: 20px;
}
.faq-tab {
  padding: 6px 12px 8px;
  cursor: pointer;
  color: #000;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
}
.faq-tab.active {
  background: #fff;
  border: 1px solid #000;
  border-bottom: 1px solid #fff;
  position: relative;
  top: 1px;
}
.faq-body {
  padding: 22px;
  min-height: 380px;
  font-family: var(--mono);
  font-size: 20px;
  line-height: 1.3;
  color: #000;
}
.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-panel p { margin: 0 0 14px; }
.faq-panel p:last-child { margin-bottom: 0; }
.faq-panel strong { display: block; font-weight: 700; margin-top: 12px; margin-bottom: 2px; }
.faq-note {
  position: absolute;
  right: 18px; top: 108px;
  width: 200px;
  padding: 10px;
  background: var(--yellow);
  color: #000;
  font-family: var(--pixel);
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  transform: rotate(2deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}

/* ======== Press ======== */
#page-press .page,
#page-about .page {
  padding-left: 0;
  padding-right: 0;
}

.press-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 60px;
  padding-left: 15%;
  padding-right: 15%;
  align-items: start;
  background-image: url('../img/backgrounds/Fabric-BG.png');
}
.press-quotes { display: flex; flex-direction: column; gap: 28px; }
.press-quote {
  font-family: var(--mono);
  font-size: 24px;
  color: #fff;
  line-height: 1.25;
}
.press-quote .attr { display: block; opacity: .85; font-size: 22px; }

.press-photo {
  width: 100%;
  border: 1px solid var(--paper);
  overflow: hidden;
}
.press-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.articles-box {
  background: var(--paper);
  color: #000;
  padding: 14px 22px;
  margin-top: 40px;
  max-width: 540px;
  font-family: var(--mono);
}
.articles-box h3 { margin: 0; font-size: 24px; text-align: center; font-weight: 400; }
.articles-box ul { list-style: none; padding: 0; margin: 6px 0 0; text-align: center; }
.articles-box li { font-size: 22px; }
.articles-box a { color: var(--blue); text-decoration: underline; }
.articles-box a:hover { color: var(--red); }

#section-blog {
  padding-left: 25%;
  padding-right: 25%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.blog-card {
  background: var(--paper);
  color: #000;
  padding: 0;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
}
.blog-card-header {
  background: var(--blue-bg);
  color: #fff;
  font-family: var(--pixel);
  font-size: 22px;
  padding: 8px 12px;
}
.blog-card-body { padding: 10px 14px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-read {
  font-family: var(--pixel);
  font-size: 20px;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-start;
}
.blog-read:hover { color: var(--red); }
.blog-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.06) 0 8px, transparent 8px 16px),
    #9a9a9a;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: #3a3a3a;
  letter-spacing: 1px;
}

/* ======== player (playlist) ======== */
.player-wrap {
  background: linear-gradient(rgba(0,0,0,.2) 0%, rgba(0,0,0,.85) 100%), var(--red);
  width: 100%;
  max-width: 720px;
  color: #fff;
  font-family: 'Inconsolata', var(--mono), sans-serif;
  box-shadow: 0 6px 30px rgba(217,16,6,.3);
  position: relative;
}
.player-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: start;
}
.player-spotify-link {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  color: #fff;
  line-height: 0;
  display: block;
  opacity: .85;
  text-decoration: none;
}
.player-spotify-link:hover { opacity: 1; }
.player-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  background: var(--red);
  padding: 10px;
}
.player-cover {
  width: 80px; height: 80px;
  overflow: hidden;
  flex-shrink: 0;
}
.player-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.player-meta { padding-left: 12px; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.player-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.player-title-info { min-width: 0; overflow: hidden; }
.player-playlist-name { font-weight: 700; font-size: 15px; line-height: 1.1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-playlist-sub { opacity: .8; font-size: 13px; margin-top: 2px; }
.player-tools { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.player-btn { width: 24px; height: 24px; display: grid; place-items: center; color: #fff; cursor: pointer; opacity: .8; }
.player-btn:hover { opacity: 1; }
.progress { flex: 1; height: 4px; background: rgba(255,255,255,.3); position: relative; cursor: pointer; }
.progress-fill { position: absolute; left: 0; top: 0; bottom: 0; background: #fff; width: 20%; }
.player-share { opacity: .8; cursor: pointer; margin-left: 6px; }

.playlist-title { padding: 12px 16px 4px; background: rgba(0,0,0,.2); }
.playlist-title h4 { margin: 0; font-size: 14px; font-weight: 700; }
.playlist-title .sub { font-size: 12px; opacity: .8; }

.playlist { background: rgba(0,0,0,.4); max-height: 300px; overflow-y: auto; }
.playlist::-webkit-scrollbar { width: 10px; }
.playlist::-webkit-scrollbar-track { background: rgba(0,0,0,.3); }
.playlist::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); }

.track {
  display: grid;
  grid-template-columns: 40px 1fr 52px;
  align-items: center;
  padding: 6px 8px 6px 0;
  font-size: 13px;
  cursor: pointer;
  border-left: 2px solid transparent;
}
.track:hover { background: rgba(255,255,255,.08); }
.track.now  { background: var(--red-soft); border-left-color: #fff; }
.track .n   { text-align: center; opacity: .6; font-size: 13px; }
.track .tt  { color: #fff; font-weight: 500; line-height: 1.15; }
.track .ta  { color: rgba(255,255,255,.7); font-size: 11px; }
.track .td  { text-align: right; padding-right: 14px; opacity: .7; font-size: 12px; }

/* ======== Tweaks panel ======== */
.tweaks-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 100;
  background: var(--paper);
  color: #000;
  font-family: var(--pixel);
  border: 2px solid #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,.6);
  width: 260px;
  font-size: 18px;
}
.tweaks-title {
  background: var(--blue-bg);
  color: #fff;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}
.tweaks-body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.tweak-row { display: flex; flex-direction: column; gap: 4px; }
.tweak-row label { font-size: 18px; }
.tweak-options { display: flex; flex-wrap: wrap; gap: 4px; }
.tweak-options button {
  font-family: var(--pixel);
  font-size: 16px;
  padding: 2px 8px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}
.tweak-options button.active { background: #000; color: #fff; }

/* CRT scanline overlay */
body.crt::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(transparent 0 2px, rgba(0,0,0,.22) 2px 3px);
  mix-blend-mode: multiply;
}
body.crt::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,.4) 100%);
}

/* Theme color overrides */
body[data-theme="yellow"] { --red: #ffd400; --red-soft: rgba(255,212,0,.47); --red-softer: rgba(255,212,0,.28); }
body[data-theme="green"]  { --red: #35c24a; --red-soft: rgba(53,194,74,.47);  --red-softer: rgba(53,194,74,.28);  }
body[data-theme="blue"]   { --red: #3a6df0; --red-soft: rgba(58,109,240,.47); --red-softer: rgba(58,109,240,.28); }

.mobile-show-photo { display: none; }

.ticket-cta-outer {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

/* ======== responsive ======== */
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  font-family: inherit;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  /* --- Header --- */
  .hamburger { display: block; position: relative; z-index: 201; }
  .get-tickets-btn { position: relative; z-index: 201; }
  .header-inner { justify-content: space-between; flex-wrap: nowrap; gap: 12px; padding: 10px 10%; }
  .get-tickets-btn { margin-right: 0; }

  /* --- Mobile nav drawer --- */
  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 39%;
    max-height: calc(100vh - 64px);
    background: rgba(0,0,0,.96);
    flex-direction: column;
    z-index: 200;
    overflow-y: auto;
  }
  .nav.open { display: flex; }

  .nav-close {
    display: block;
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: var(--red);
    font-size: 18px;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    padding: 2px 4px;
    z-index: 202;
  }

  .nav-item {
    border: none;
    border-bottom: 1px solid var(--red);
    padding: 14px 16px;
    font-size: 20px;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-family: var(--pixel);
    background: transparent;
    text-align: center;
  }
  .nav-item:first-of-type { border-top: 1px solid var(--red); }
  .nav-item:hover, .nav-item:active { background: rgba(255,255,255,.05); color: #fff; }
  .nav-item.nav-item-mobile-only { display: block; }
  .nav-item.nav-item-social { display: block; }

  /* --- Hero / layout --- */
  .hero-container { padding: 0 10%; }
  .hero-poster { border-left: none; border-right: none; padding-left: 0; padding-right: 0; }
  .hero-poster img { width: 100%; }
  .hero-eyebrow { text-align: center; }
  .home-hero,
  .about-hero,
  .press-hero,
  .showtimes-grid,
  .zone-lightning .showtimes-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-logos { grid-template-columns: 1fr 1fr; }
  .logo-box { aspect-ratio: 16/9; }

  /* --- Widths --- */
  #page-about .section { padding-left: 10%; padding-right: 10%; }
  #page-about .stripe-marquee:first-child { margin-top: 5%; }
  .cast-grid { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .about-hero { width: 100%; display: flex; flex-direction: column; }
  .about-copy { order: 1; }
  .about-poster { order: 2; }
  .about-tagline { order: 3; grid-column: unset; }
  .faq-window { max-width: 100%; }

  /* --- Padding overrides --- */
  .zone-lightning .page, .page--wide { padding-left: 24px; padding-right: 24px; }
  .press-hero { padding-left: 10%; padding-right: 10%; display: flex; flex-direction: column; }
  .press-photo { order: 1; }
  .press-quotes { order: 2; }
  #section-blog { padding-left: 10%; padding-right: 10%; }

  /* --- About The Show section --- */
  .map-info-row { flex-direction: column; gap: 16px; }
  .map-info-row .map-embed { flex: none; width: 100%; aspect-ratio: 16 / 9; }
  .show-info { gap: 14px; font-size: 16px; }
  .blurb-p { font-size: 17px; }

  /* --- Mobile show photo --- */
  .mobile-show-photo { display: block; width: 100%; overflow: hidden; }
  .mobile-show-photo img { width: 100%; height: auto; display: block; }

  /* --- Footer nav grid --- */
  .site-footer { padding: 0 10%; }
  .footer-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 2px solid var(--red);
    border-left: 2px solid var(--red);
  }
  .footer-nav-cell {
    font-family: var(--pixel);
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 14px 10px;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
  }
  .footer-nav-cell:visited { color: #fff; }
  .footer-nav-cell:hover { background: #111; color: #fff; }

  /* --- Ticket CTA outer --- */
  .ticket-cta-outer { padding: 0 10% 10%; }
  .ticket-cta-wrap { width: 100%; margin: 0 auto; }

  /* --- FAQ + Ticket CTA + Player --- */
  #section-faq-home,
  #section-faq-teaser { padding-top: 16px; }
  #section-faq-home .showtimes-grid,
  #section-faq-teaser .showtimes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    align-items: start;
  }
  #section-faq-home .showtimes-grid > div:first-child,
  #section-faq-teaser .showtimes-grid > div:first-child { grid-column: 1; grid-row: 1; }
  #section-faq-home .player-col,
  #section-faq-teaser .player-col { grid-column: 2; grid-row: 1; }
  #section-faq-home .faq-marquee-strip,
  #section-faq-teaser .faq-marquee-strip {
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100% + 48px);
    margin-left: -24px;
  }
  .faq-marquee-strip { width: 100vw; margin-left: calc(-10vw); }
  .player-col {
    background-image: url('../img/backgrounds/Fire-BG.png');
    background-size: cover;
    background-position: center;
    width: 100vw;
    margin-left: -24px;
    padding: 24px;
  }
  .faq-teaser { font-size: 18px; }
  .faq-teaser h3 { font-size: 18px; }
  .ticket-cta-wrap { max-width: 100%; width: 100%; margin: 20px 0 0; }
  .ticket-cta-flames { width: 100%; }
  .ticket-cta { padding: 16px 16px 22px; }
  .player-col { align-items: stretch; }
  #section-faq-home .player-col,
  #section-faq-teaser .player-col {
    width: auto;
    margin-left: 0;
    padding: 0;
    background-image: none;
  }
  .player-wrap { max-width: 100%; width: 100%; }
  .before-you-go { display: block; width: fit-content; margin: 0 auto 14px; }

  /* --- Misc --- */
  .blog-grid { grid-template-columns: 1fr; }
  .faq-note { position: static; width: auto; transform: none; margin: 12px; }
  .dinner-menu { margin: 0 auto; }
  .tweaks-panel { right: 8px; bottom: 8px; width: 220px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; padding-top: 72px; }
  body::before { height: 20px; }
  .header { top: 20px; }
  .nav { top: 72px; max-height: calc(100vh - 72px); }
  .zone-brick { margin-top: -72px; padding-top: 72px; }

  .get-tickets-btn { font-size: 17px; padding: 6px 16px; border: 2px solid #c8960c; background: linear-gradient(180deg, #4a0000 0%, #cc0000 100%); }
  .hero-eyebrow { font-size: 17px; }
  .hero-paper { font-size: 20px; }

  .cast-grid { grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px 14px; width: 100%; }
  .blog-grid { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: 28px 0; }
  .press-hero { padding-left: 10%; padding-right: 10%; }
  #section-blog { padding-left: 10%; padding-right: 10%; }
  .showtimes-grid { gap: 16px; }
}
