/* ========================================
   MY FAVORITE BANDS — 2026
   Red. Black. Flames.
   ======================================== */

:root {
  /* Core Darks */
  --black: #080706;
  --black-2: #100c0a;
  --charcoal: #160d0b;
  --coal: #1c1008;

  /* Vintage Reds */
  --red: #cc2229;
  --red-deep: #8b1419;
  --red-bright: #e63946;
  --red-soft: rgba(204, 34, 41, 0.15);

  /* Fire */
  --fire: #ff5a1e;
  --fire-bright: #ff7c35;
  --ember: #ff3300;

  /* Cream (text and small accents only — not backgrounds) */
  --cream: #ead8b6;
  --cream-2: #d9c5a0;
  --cream-dark: #b8a070;
  --paper: #f0e2c0;

  /* Accents */
  --gold: #d4a437;
  --gold-bright: #f0c040;
  --blue-bolt: #3a7ca5;

  /* Text */
  --white: #f5e8d0;
  --white-dim: rgba(245, 232, 208, 0.65);
  --ink: #1a1410;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.7);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.8);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.9);
  --shadow-red: 0 6px 0 var(--red-deep);
  --shadow-cream: 0 6px 0 var(--cream-dark);

  /* Type */
  --display: "Alfa Slab One", "Bowlby One", Impact, serif;
  --headline: "Anton", "Alfa Slab One", Impact, sans-serif;
  --vintage: "Rye", "Alfa Slab One", serif;
  --block: "Staatliches", Impact, sans-serif;
  --body: "Lora", Georgia, serif;
  --bungee: "Bungee", "Alfa Slab One", Impact, sans-serif;

  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Page-wide grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

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

a { color: var(--red-bright); text-decoration: none; }
a:hover { color: var(--cream); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------
   STARS
   ---------------------------------------- */
.star {
  display: inline-block;
  color: var(--gold);
  filter: drop-shadow(0 0 4px rgba(212, 164, 55, 0.3));
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--block);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  line-height: 1;
}

.btn-pink, .btn-red {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-pink:hover, .btn-red:hover {
  color: var(--cream);
  background: var(--fire);
  border-color: var(--fire);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--red-deep), 0 16px 24px rgba(255, 90, 30, 0.4);
}
.btn-pink:active, .btn-red:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--red-deep);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover {
  color: var(--black);
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cream);
}

.btn-cream {
  background: var(--cream);
  color: var(--red);
  border-color: var(--cream);
  box-shadow: var(--shadow-cream);
}
.btn-cream:hover {
  color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--cream-dark);
}

.btn-sm { font-size: 13px; padding: 10px 20px; letter-spacing: 2px; }
.btn-lg { font-size: 22px; padding: 18px 48px; letter-spacing: 4px; }

/* ----------------------------------------
   BADGE
   ---------------------------------------- */
.badge {
  display: inline-block;
  font-family: var(--block);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 18px;
  background: var(--cream);
  color: var(--red);
  border-radius: 2px;
  margin-bottom: 16px;
  transform: rotate(-1deg);
  box-shadow: 2px 2px 0 var(--cream-dark);
}
.badge-pink, .badge-red {
  background: var(--red);
  color: var(--cream);
  box-shadow: 2px 2px 0 var(--red-deep);
}

/* ----------------------------------------
   SECTION HEAD
   ---------------------------------------- */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--cream);
}
.section-sub {
  color: var(--white-dim);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
}

/* ----------------------------------------
   PRESENTS BAR
   ---------------------------------------- */
.presents-bar {
  background: var(--black);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid var(--red);
}
.presents-rule {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: var(--red);
  position: relative;
}
.presents-rule::before, .presents-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--red);
}
.presents-rule::before { transform: translateY(-5px); height: 1px; }
.presents-rule::after { transform: translateY(3px); height: 1px; }
.presents-text {
  font-family: var(--block);
  font-size: 16px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cream);
}
.presents-text em {
  font-style: italic;
  font-family: var(--vintage);
  color: var(--red-bright);
  letter-spacing: 1px;
  margin-left: 6px;
}

/* ----------------------------------------
   SCROLLING BANNER
   ---------------------------------------- */
.banner {
  background: var(--black);
  border-bottom: 2px solid var(--red);
  border-top: 2px solid var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  z-index: 5;
}
.banner-track {
  display: inline-flex;
  gap: 24px;
  animation: scroll 40s linear infinite;
  font-family: var(--block);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  align-items: center;
}
.banner-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  display: inline-block;
  align-self: center;
  transform: rotate(45deg);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----------------------------------------
   NAVIGATION
   ---------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 6, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(204, 34, 41, 0.4);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
}
.nav-logo-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 90, 30, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo:hover .nav-logo-icon {
  transform: rotate(-8deg) scale(1.08);
  filter: drop-shadow(0 0 14px rgba(255, 140, 40, 0.8));
}
.logo-my {
  font-family: var(--block);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--cream);
}
.logo-bands {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--red-bright);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--block);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--fire); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fire);
  transition: width 0.2s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ----------------------------------------
   HERO — FIRE AND STAGE LIGHTS
   ---------------------------------------- */
.hero {
  position: relative;
  padding: 60px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1400px 700px at 50% 100%, rgba(255, 80, 10, 0.55) 0%, rgba(200, 30, 0, 0.3) 40%, transparent 72%),
    radial-gradient(ellipse 900px 500px at 22% 100%, rgba(204, 34, 41, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 750px 400px at 78% 100%, rgba(255, 100, 20, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 1100px 300px at 50% 80%, rgba(160, 20, 20, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse at top center, rgba(100, 10, 10, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, #1f0908 0%, var(--black) 55%, #250d06 100%);
}

.hero-grid-bg { display: none; }

/* Stage spotlight rays — fire-orange tones */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 800px;
  background:
    conic-gradient(
      from 180deg at 50% 0%,
      transparent 0deg,
      transparent 28deg,
      rgba(255, 110, 20, 0.06) 38deg,
      rgba(255, 110, 20, 0.14) 50deg,
      rgba(255, 110, 20, 0.06) 62deg,
      transparent 72deg,
      transparent 108deg,
      rgba(255, 140, 40, 0.05) 118deg,
      rgba(255, 140, 40, 0.12) 133deg,
      rgba(255, 140, 40, 0.05) 148deg,
      transparent 158deg,
      transparent 200deg,
      rgba(255, 110, 20, 0.05) 210deg,
      rgba(255, 110, 20, 0.12) 225deg,
      rgba(255, 110, 20, 0.05) 240deg,
      transparent 250deg,
      transparent 290deg,
      rgba(255, 140, 40, 0.06) 300deg,
      rgba(255, 140, 40, 0.14) 312deg,
      rgba(255, 140, 40, 0.06) 324deg,
      transparent 334deg
    );
  pointer-events: none;
  animation: stage-sweep 14s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

@keyframes stage-sweep {
  0%, 100% { transform: translateX(-50%) rotate(-3deg); opacity: 0.85; }
  50% { transform: translateX(-50%) rotate(3deg); opacity: 1; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245, 232, 208, 0.04) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(245, 232, 208, 0.02) 1px, transparent 2px),
    radial-gradient(circle at 50% 80%, rgba(255, 130, 30, 0.07) 1px, transparent 2px);
  background-size: 100px 100px, 80px 80px, 120px 120px;
  pointer-events: none;
}

/* Floating embers */
.hero-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-embers span {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--gold-bright) 0%, var(--fire) 50%, transparent 100%);
  border-radius: 50%;
  filter: blur(0.5px);
  animation: ember-rise linear infinite;
  opacity: 0;
}
.hero-embers span:nth-child(1) { left: 10%; animation-duration: 7s; animation-delay: 0s; }
.hero-embers span:nth-child(2) { left: 22%; animation-duration: 10s; animation-delay: 1.5s; width: 3px; height: 3px; }
.hero-embers span:nth-child(3) { left: 38%; animation-duration: 8s; animation-delay: 0.8s; }
.hero-embers span:nth-child(4) { left: 52%; animation-duration: 12s; animation-delay: 2.5s; width: 5px; height: 5px; }
.hero-embers span:nth-child(5) { left: 67%; animation-duration: 9s; animation-delay: 0.3s; }
.hero-embers span:nth-child(6) { left: 78%; animation-duration: 11s; animation-delay: 3.5s; width: 3px; height: 3px; }
.hero-embers span:nth-child(7) { left: 88%; animation-duration: 8s; animation-delay: 2s; }
.hero-embers span:nth-child(8) { left: 5%; animation-duration: 13s; animation-delay: 4.5s; width: 4px; height: 4px; }
.hero-embers span:nth-child(9) { left: 45%; animation-duration: 10s; animation-delay: 5.5s; }
.hero-embers span:nth-child(10) { left: 60%; animation-duration: 7s; animation-delay: 3s; width: 3px; height: 3px; }
.hero-embers span:nth-child(11) { left: 92%; animation-duration: 12s; animation-delay: 1s; width: 5px; height: 5px; }
.hero-embers span:nth-child(12) { left: 30%; animation-duration: 9s; animation-delay: 6.5s; }

@keyframes ember-rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(var(--drift, 30px)); opacity: 0; }
}

/* Crowd silhouette */
.hero-crowd {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'><path fill='%23080706' d='M0,100 L0,75 L20,72 L25,55 L30,72 L40,70 L45,40 L50,68 L55,30 L62,68 L70,72 L78,45 L85,68 L92,72 L100,55 L108,70 L120,72 L130,55 L138,72 L145,40 L152,68 L160,72 L168,30 L175,68 L182,55 L195,72 L210,70 L218,40 L225,68 L235,72 L245,50 L255,72 L265,30 L275,68 L285,72 L295,55 L305,72 L315,70 L325,40 L335,72 L345,50 L355,68 L365,30 L378,68 L390,72 L400,55 L412,72 L425,68 L435,40 L445,68 L455,72 L468,30 L478,68 L488,55 L500,72 L510,68 L522,40 L532,68 L545,72 L555,50 L565,68 L578,30 L588,68 L598,55 L608,72 L620,68 L630,72 L645,40 L655,68 L665,72 L675,50 L685,68 L695,30 L708,68 L718,55 L728,72 L740,68 L752,72 L765,40 L775,68 L785,72 L795,55 L808,72 L820,68 L830,40 L842,68 L852,72 L865,30 L875,68 L885,55 L898,72 L910,68 L920,72 L932,40 L945,68 L955,72 L965,55 L975,72 L988,68 L1000,40 L1012,68 L1025,72 L1035,30 L1045,68 L1058,55 L1070,72 L1082,68 L1095,72 L1108,40 L1118,68 L1130,72 L1145,55 L1158,72 L1170,68 L1180,40 L1192,68 L1200,72 L1200,100 Z'/></svg>");
  background-size: cover;
  background-position: bottom center;
}

.hero-stack {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-kicker {
  font-family: var(--block);
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 8px 0 12px;
}
.kicker-stars {
  color: var(--gold);
  letter-spacing: 4px;
  margin: 0 8px;
}

.hero-title-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: baseline;
  gap: clamp(8px, 1.5vw, 24px);
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  white-space: nowrap;
}
.hero-title-row .title-my {
  display: inline;
  color: var(--cream);
  font-family: var(--display);
  text-shadow:
    3px 3px 0 var(--black),
    6px 6px 0 rgba(0, 0, 0, 0.6);
  transform: none;
  font-size: inherit;
}
.hero-title-row .title-bands {
  display: inline;
  color: var(--red);
  font-family: var(--display);
  text-shadow:
    4px 4px 0 var(--red-deep),
    8px 8px 0 var(--black),
    0 0 40px rgba(255, 60, 0, 0.4);
  font-size: inherit;
  letter-spacing: inherit;
  background: none;
  -webkit-text-fill-color: var(--red);
  filter: none;
}

.hero-band-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: stretch;
}

.hero-left, .hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--block);
  font-size: clamp(15px, 1.6vw, 22px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--red);
  padding: 10px 24px;
  margin-bottom: 16px;
  box-shadow: 4px 4px 0 var(--red-deep);
  border-top: 2px solid var(--fire);
  border-bottom: 2px solid var(--red-deep);
  animation: none;
}

.hero-date {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-family: var(--display);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
}
.date-day {
  font-size: clamp(28px, 4vw, 56px);
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--black);
}
.date-month {
  font-size: clamp(40px, 6vw, 84px);
  color: var(--fire);
  text-shadow: 3px 3px 0 var(--red-deep), 0 0 30px rgba(255, 90, 30, 0.4);
}
.date-year {
  font-family: var(--block);
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--cream);
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.date-year sup {
  font-size: 14px;
  margin-bottom: 2px;
}

.hero-mascot-block {
  margin-top: 8px;
  position: relative;
}
.hero-mascot-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 30px rgba(255, 90, 30, 0.75))
    drop-shadow(0 0 70px rgba(204, 34, 41, 0.5))
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
  animation: mascot-pulse 3s ease-in-out infinite;
}
@keyframes mascot-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 30px rgba(255, 90, 30, 0.75))
      drop-shadow(0 0 70px rgba(204, 34, 41, 0.5))
      drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
    transform: scale(1);
  }
  50% {
    filter:
      drop-shadow(0 0 55px rgba(255, 140, 40, 0.9))
      drop-shadow(0 0 110px rgba(255, 80, 10, 0.6))
      drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
    transform: scale(1.03);
  }
}

.poster-box {
  background: var(--black);
  border: 4px solid var(--red);
  padding: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 8px 8px 0 var(--red-deep), 0 0 40px rgba(204, 34, 41, 0.3);
  margin-bottom: 24px;
}
.poster-box-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 90, 30, 0.45));
}

.headliner-poster-box {
  background: var(--black);
  border: 4px solid var(--red);
  padding: 16px 18px 20px;
  position: relative;
  width: 100%;
  max-width: 540px;
  box-shadow: 8px 8px 0 var(--red-deep), 0 0 40px rgba(204, 34, 41, 0.3);
}
.headliner-poster-title {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--gold);
  font-family: var(--block);
  font-size: 16px;
  letter-spacing: 8px;
  padding: 4px 16px;
  white-space: nowrap;
  border: 2px solid var(--gold);
  text-transform: uppercase;
}
.headliner-poster-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 20px rgba(255, 90, 30, 0.45));
}
.headliner-poster-sub {
  text-align: center;
  font-family: var(--block);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
}
.headliner-poster-sub::before, .headliner-poster-sub::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--fire);
  vertical-align: middle;
  margin: 0 10px;
}

/* ----------------------------------------
   COVER BANDS GRID (in headliner box)
   ---------------------------------------- */
.cover-bands {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 16px;
  align-items: center;
  justify-items: center;
}
.cover-bands li {
  font-family: var(--display);
  font-size: clamp(14px, 1.4vw, 18px);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}
.cb-bonjovi { color: #e63030; font-family: var(--display); }
.cb-defleppard { color: #ffb627; font-style: italic; letter-spacing: 0; transform: skewX(-10deg); }
.cb-poison { color: #5ec75e; font-family: var(--vintage); font-style: italic; }
.cb-motley { color: var(--fire-bright); font-family: var(--display); }
.cb-guns { color: #cc8c2a; font-family: var(--display); }
.cb-ratt { color: var(--cream); font-family: var(--display); }
.cb-quietriot { color: var(--cream); font-family: var(--block); letter-spacing: 3px; }
.cb-twisted { color: #d04866; font-family: var(--vintage); }
.cb-acdc { color: var(--fire); font-family: var(--bungee); letter-spacing: 0; }
.cb-more {
  grid-column: 1 / -1;
  font-family: var(--vintage);
  font-style: italic;
  color: var(--cream);
  font-size: 14px;
  margin-top: 6px;
}

.hero-logo-mark {
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}
.hero-logo-mark img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--red);
  object-fit: cover;
  box-shadow:
    0 0 0 2px var(--cream),
    0 0 30px rgba(255, 90, 30, 0.6),
    0 0 60px rgba(204, 34, 41, 0.4);
  animation: logo-pulse 3s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px var(--cream),
      0 0 30px rgba(255, 90, 30, 0.6),
      0 0 60px rgba(204, 34, 41, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 2px var(--cream),
      0 0 55px rgba(255, 140, 40, 0.85),
      0 0 100px rgba(204, 34, 41, 0.6);
  }
}

.kicker {
  font-family: var(--block);
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.kicker::before, .kicker::after {
  content: "★ ★";
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
}

.hero-title {
  margin-bottom: 24px;
  line-height: 0.95;
}
.title-my {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow:
    3px 3px 0 var(--black),
    6px 6px 0 rgba(0, 0, 0, 0.6);
}
.title-bands {
  display: block;
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 170px);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow:
    4px 4px 0 var(--red-deep),
    8px 8px 0 var(--black),
    12px 12px 24px rgba(255, 60, 0, 0.4);
  background: none;
  -webkit-text-fill-color: var(--red);
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding: 16px 22px;
  background: var(--black-2);
  color: var(--cream);
  border-radius: 2px;
  border-left: 6px solid var(--red);
  border-right: 6px solid var(--red);
  box-shadow: 4px 4px 0 var(--red-deep);
  flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label {
  font-family: var(--block);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire);
}
.meta-val {
  font-family: var(--display);
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Countdown — dark fire treatment */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 400px;
}
.cd-box {
  background: var(--black-2);
  border: 2px solid var(--red);
  padding: 12px 8px;
  text-align: center;
  box-shadow: 3px 3px 0 var(--red-deep);
  position: relative;
}
.cd-box b {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  color: var(--fire);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 90, 30, 0.6);
}
.cd-box em {
  font-style: normal;
  font-family: var(--block);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 4px;
  display: block;
}

.hero-poster {
  position: relative;
  max-height: 580px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-poster img {
  border-radius: 4px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(204, 34, 41, 0.3);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
  max-height: 580px;
  width: auto;
  border: 4px solid var(--cream);
  outline: 2px solid var(--red);
  outline-offset: -8px;
}
.hero-poster:hover img {
  transform: rotate(0.5deg) scale(1.02);
}

/* ----------------------------------------
   TICKER — dark fire
   ---------------------------------------- */
.ticker {
  background: var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  transform: translateY(-50%);
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}
.ticker-track {
  display: inline-flex;
  gap: 36px;
  animation: scroll 40s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  align-items: center;
}
.ticker-track span { padding: 0 8px; }

/* ----------------------------------------
   HEADLINER — BIG HAIRBALL FORWARD
   ---------------------------------------- */
.headliner {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top, rgba(255, 60, 0, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(204, 34, 41, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 700px 350px at 50% 50%, rgba(200, 20, 20, 0.25) 0%, transparent 70%),
    linear-gradient(180deg, #1f0806 0%, #0e0402 50%, #1f0806 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.flame-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 20% 100%, rgba(255, 80, 10, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 700px 400px at 80% 100%, rgba(255, 100, 20, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 1200px 600px at 50% 100%, rgba(204, 34, 41, 0.55) 0%, transparent 70%);
  pointer-events: none;
  animation: flame-flicker 3s ease-in-out infinite alternate;
}

@keyframes flame-flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  33% { opacity: 0.8; transform: scale(1.04); }
  66% { opacity: 0.9; transform: scale(0.98); }
}

.headliner .section-head {
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.headliner .section-head .badge {
  font-size: 18px;
  letter-spacing: 8px;
  padding: 8px 28px;
  background: var(--red);
  color: var(--cream);
  box-shadow: 3px 3px 0 var(--red-deep);
}

.headliner-hero {
  position: relative;
  z-index: 2;
  margin: 0 auto 32px;
  max-width: 1080px;
  filter: drop-shadow(0 0 70px rgba(255, 80, 10, 0.6)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  transition: transform 0.4s ease;
}
.headliner-hero:hover { transform: scale(1.02); }
.hairball-image {
  width: 100%;
  height: auto;
  display: block;
}

.headliner-lede {
  font-family: var(--vintage);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.5;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.headliner-info-grid {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.headliner-info {
  max-width: 900px;
  margin: 0 auto;
}

.headliner-info h3 {
  font-family: var(--block);
  font-size: 16px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}

.headliner-cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tribute-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}
.tribute-list li {
  padding: 8px 14px;
  background: var(--black-2);
  color: var(--cream);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(204, 34, 41, 0.4);
  transition: transform 0.2s ease;
  box-shadow: 2px 2px 0 var(--red-deep);
}
.tribute-list li:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--red-deep);
}
.tribute-list li:nth-child(2n) {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
  box-shadow: 2px 2px 0 var(--red-deep);
}
.tribute-list li:nth-child(2n):hover {
  box-shadow: 4px 4px 0 var(--red-deep);
}

.headliner-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.detail-tag {
  padding: 8px 16px;
  background: transparent;
  border: 2px solid var(--cream);
  color: var(--cream);
  font-family: var(--block);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.detail-tag-outside { border-color: var(--fire); color: var(--fire); }

/* ----------------------------------------
   STRIPE DIVIDER — fire stripes, no cream
   ---------------------------------------- */
.stripe-divider {
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ember) 0px,
    var(--ember) 8px,
    var(--red) 8px,
    var(--red) 16px,
    var(--fire) 16px,
    var(--fire) 24px
  );
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

/* ----------------------------------------
   ABOUT — intro strip
   ---------------------------------------- */
.about {
  padding: 56px 0 0;
  background: var(--charcoal);
}
.about-text {
  font-family: var(--body);
  color: var(--cream-2);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ----------------------------------------
   LINEUP — fire from below
   ---------------------------------------- */
.lineup {
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse 1000px 500px at 50% 100%, rgba(255, 80, 10, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 600px 300px at 15% 100%, rgba(204, 34, 41, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse 500px 250px at 85% 100%, rgba(255, 80, 10, 0.18) 0%, transparent 55%),
    var(--charcoal);
  position: relative;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.band-card {
  background: var(--black-2);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 4px 4px 0 var(--red-deep);
  border: 2px solid var(--red);
  position: relative;
}
.band-card::before {
  content: "★";
  position: absolute;
  top: 8px;
  left: 12px;
  color: var(--gold);
  font-size: 18px;
  z-index: 3;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}
.band-card:hover {
  transform: translate(-2px, -4px);
  box-shadow: 8px 8px 0 var(--red-deep), 0 0 24px rgba(255, 60, 0, 0.25);
}

.band-card-img {
  aspect-ratio: 3/2;
  background: var(--grad, linear-gradient(135deg, var(--red), var(--red-deep)));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.band-card-img:not(.band-card-img-photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 90, 30, 0.15) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 18px,
      rgba(0, 0, 0, 0.1) 18px,
      rgba(0, 0, 0, 0.1) 20px
    );
}

.band-card-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  filter: contrast(1.08) saturate(1.1);
}
.band-card:hover .band-card-img-photo img {
  transform: scale(1.05);
}

.band-card-headliner {
  border-color: var(--fire);
  box-shadow: 4px 4px 0 var(--red-deep), 0 0 35px rgba(255, 80, 10, 0.35);
}
.band-card-headliner:hover {
  box-shadow: 8px 8px 0 var(--red-deep), 0 0 55px rgba(255, 80, 10, 0.55);
}
.band-card-headliner h3 {
  background: var(--red);
  color: var(--cream);
  display: inline-block;
  padding: 4px 12px;
  margin: 0 -2px 4px;
}

.band-initial {
  font-family: var(--display);
  font-size: 56px;
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.stage-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--block);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.stage-outside { background: var(--red); color: var(--cream); }
.stage-inside { background: var(--blue-bolt); color: var(--cream); }

.headliner-star {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 24px;
  color: var(--gold);
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(212, 164, 55, 0.7));
}

.band-card-body {
  padding: 16px 18px 18px;
  background: var(--black-2);
  color: var(--cream);
  position: relative;
}
.band-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 4px, transparent 4px, transparent 8px);
}
.band-card-body h3 {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 4px;
  line-height: 1.1;
}
.tribute-to {
  color: var(--white-dim);
  font-size: 13px;
  font-family: var(--body);
  font-style: italic;
  margin-bottom: 6px;
}
.set-time {
  font-family: var(--block);
  font-size: 14px;
  color: var(--fire);
  letter-spacing: 2px;
}
.band-bio {
  font-family: var(--body);
  color: var(--white-dim);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 8px;
}

/* ----------------------------------------
   SCHEDULE — dark fire
   ---------------------------------------- */
.schedule {
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse at top, rgba(204, 34, 41, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 900px 400px at 50% 100%, rgba(255, 80, 10, 0.18) 0%, transparent 65%),
    var(--black);
}

.schedule-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--block);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.legend-dot {
  width: 14px;
  height: 14px;
  display: inline-block;
}
.legend-outside .legend-dot { background: var(--red); }
.legend-inside .legend-dot { background: var(--blue-bolt); }
.legend-outside { color: var(--red-bright); }
.legend-inside { color: var(--blue-bolt); }

.schedule-timeline {
  max-width: 720px;
  margin: 0 auto;
}

.sched-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  margin-bottom: 12px;
  align-items: stretch;
}

.sched-time {
  font-family: var(--block);
  font-size: 18px;
  color: var(--cream);
  background: var(--red);
  letter-spacing: 1px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  border: 2px solid var(--red);
  border-right: none;
}


.sched-content {
  background: var(--black-2);
  color: var(--cream);
  padding: 12px 18px;
  border: 2px solid var(--red);
  border-left: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.sched-content h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-bright);
  line-height: 1.1;
  margin-bottom: 2px;
}
.sched-content p {
  color: var(--white-dim);
  font-size: 13px;
  font-style: italic;
  font-family: var(--body);
  margin-bottom: 0;
}

.stage-pill {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-family: var(--block);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--red);
  color: var(--cream);
}
.stage-pill-inside {
  background: var(--blue-bolt);
}

/* Gates Open row — dark gold */
.sched-full {
  background: linear-gradient(to right, rgba(50, 26, 0, 0.9), rgba(70, 36, 0, 0.9), rgba(50, 26, 0, 0.9));
  color: var(--gold);
  text-align: center;
  border-color: var(--gold);
}
.sched-full .sched-event {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.sched-headliner .sched-time {
  background: var(--red-deep);
  border-color: var(--red-deep);
  font-size: 20px;
}
.sched-featured {
  background: var(--black-2);
  border-color: var(--fire);
  border-width: 3px;
  box-shadow: 0 0 40px rgba(255, 80, 10, 0.35);
}
.sched-featured h3 {
  font-size: 32px;
  color: var(--fire);
}

.sched-badge-headliner {
  display: inline-block;
  font-family: var(--block);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--red-deep);
  color: var(--gold);
  margin-bottom: 4px;
  align-self: flex-start;
}

/* ----------------------------------------
   VENUE — dark fire
   ---------------------------------------- */
.venue {
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse 800px 350px at 50% 100%, rgba(255, 80, 10, 0.12) 0%, transparent 60%),
    var(--charcoal);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.venue-card {
  background: var(--black-2);
  color: var(--cream);
  padding: 32px;
  border: 3px solid var(--red);
  text-align: center;
  position: relative;
  box-shadow: 6px 6px 0 var(--red-deep);
  transform: rotate(-0.5deg);
}
.venue-card-inside {
  border-color: var(--blue-bolt);
  box-shadow: 6px 6px 0 rgba(58, 124, 165, 0.5);
  transform: rotate(0.5deg);
}
.venue-card::before {
  content: "★";
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--gold);
  font-size: 20px;
}
.venue-card::after {
  content: "★";
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--gold);
  font-size: 20px;
}

.venue-card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.venue-card h3 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--red-bright);
}
.venue-card-inside h3 { color: var(--blue-bolt); }
.venue-name {
  font-family: var(--block);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--cream-2);
  text-transform: uppercase;
}
.venue-card p:last-child {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.5;
  font-style: italic;
}

.venue-address-block {
  text-align: center;
}
.venue-address {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--cream);
  letter-spacing: 1px;
}

/* ----------------------------------------
   INFO — dark fire
   ---------------------------------------- */
.info {
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse 800px 300px at 50% 100%, rgba(255, 80, 10, 0.12) 0%, transparent 60%),
    var(--black);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.info-card {
  background: var(--black-2);
  color: var(--cream);
  border: 2px solid var(--red);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--red-deep);
  position: relative;
}
.info-card:nth-child(2n) {
  transform: rotate(0.5deg);
}
.info-card:nth-child(2n+1) {
  transform: rotate(-0.5deg);
}
.info-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.info-card h3 {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--fire);
}
.info-card p {
  color: var(--white-dim);
  font-size: 14px;
  line-height: 1.5;
}

.rules-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.rp-card {
  background: var(--black-2);
  color: var(--cream);
  border: 2px solid var(--red);
  padding: 28px 28px 24px;
  box-shadow: 4px 4px 0 var(--red-deep);
  position: relative;
}
.rp-card-rules { transform: rotate(-0.4deg); }
.rp-card-perks { transform: rotate(0.4deg); }

.rp-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(204, 34, 41, 0.5);
}
.rp-icon {
  font-size: 28px;
  line-height: 1;
}
.rp-card h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  margin: 0;
}

.rp-sub {
  color: var(--white-dim);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.rp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}
.rp-list li {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.4;
  padding-left: 22px;
  position: relative;
}
.rp-card-rules .rp-list li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fire-bright);
  font-weight: 700;
}
.rp-list-perks li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fire);
}

.rp-note {
  color: var(--white-dim);
  font-size: 13px;
  font-style: italic;
  border-top: 1px dashed rgba(204, 34, 41, 0.4);
  padding-top: 12px;
  margin: 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  background: var(--black-2);
  padding: 12px 24px;
  border: 3px solid var(--red);
  box-shadow: 6px 6px 0 var(--red-deep);
}
.faq-list details {
  border-bottom: 1px dashed rgba(204, 34, 41, 0.4);
}
.faq-list details:last-child { border-bottom: none; }
.faq-list summary {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 1px;
  padding: 16px 0;
  cursor: pointer;
  color: var(--fire-bright);
  text-transform: uppercase;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}
.faq-list summary:hover { color: var(--cream); }
.faq-list summary::after {
  content: "+";
  font-size: 28px;
  color: var(--fire);
  font-weight: 300;
  transition: transform 0.2s ease;
  font-family: var(--display);
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  padding: 0 0 16px;
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}

/* ----------------------------------------
   TICKETS CTA
   ---------------------------------------- */
.tickets-cta {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at center, rgba(204, 34, 41, 0.45) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      var(--red) 0px,
      var(--red) 30px,
      var(--red-deep) 30px,
      var(--red-deep) 60px
    );
  text-align: center;
  position: relative;
  border-top: 4px solid var(--fire);
  border-bottom: 4px solid var(--fire);
}

.tickets-inner {
  background: var(--black-2);
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  border: 4px solid var(--fire);
  box-shadow: 8px 8px 0 var(--red-deep), 0 0 50px rgba(255, 60, 0, 0.35);
  position: relative;
}
.tickets-inner::before, .tickets-inner::after {
  content: "★";
  position: absolute;
  top: 16px;
  font-size: 24px;
  color: var(--gold);
}
.tickets-inner::before { left: 16px; }
.tickets-inner::after { right: 16px; }

.tickets-inner h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 76px);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--cream);
  text-shadow: none;
  background: none;
  -webkit-text-fill-color: var(--cream);
}
.tickets-inner h2 .now {
  color: var(--fire);
  text-shadow: 3px 3px 0 var(--red-deep), 0 0 30px rgba(255, 80, 10, 0.5);
  -webkit-text-fill-color: var(--fire);
}
.tickets-sub {
  font-family: var(--block);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}
.tickets-sub .dot {
  color: var(--fire);
  margin: 0 4px;
  font-size: 14px;
  display: inline-block;
  vertical-align: 2px;
}
.tickets-note {
  margin-top: 20px;
  font-family: var(--block);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ----------------------------------------
   CROWD CTA SECTION
   ---------------------------------------- */
.crowd-cta {
  position: relative;
  padding: 80px 24px;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 100%),
    radial-gradient(ellipse at center, rgba(255, 80, 10, 0.45) 0%, var(--black) 80%),
    url("../images/art/poster-hero.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center bottom;
  background-attachment: fixed, fixed, scroll;
  background-blend-mode: normal, multiply, normal;
  text-align: center;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.crowd-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 50% 100%, rgba(255, 130, 20, 0.35) 0%, transparent 70%),
    rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.crowd-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.crowd-loc {
  font-family: var(--block);
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.crowd-loc .star { margin: 0 12px; }
.crowd-city {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 120px);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--cream);
  line-height: 0.9;
  text-shadow:
    4px 4px 0 var(--black),
    8px 8px 0 rgba(204, 34, 41, 0.6);
  margin-bottom: 32px;
}
.crowd-city span {
  display: block;
  color: var(--fire);
  text-shadow: 4px 4px 0 var(--red-deep), 8px 8px 0 var(--black), 0 0 40px rgba(255, 80, 10, 0.4);
  font-size: 1.2em;
  margin-top: 8px;
}

/* Go Cup Badge — dark fire */
.go-cup-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--black-2);
  color: var(--cream);
  padding: 18px 32px;
  border: 4px solid var(--fire);
  box-shadow: 6px 6px 0 var(--red-deep);
  transform: rotate(-2deg);
  transition: transform 0.2s ease;
}
.go-cup-badge:hover { transform: rotate(0deg) scale(1.05); }
.go-cup-text {
  font-family: var(--display);
  font-size: 36px;
  color: var(--fire);
  letter-spacing: 1px;
  line-height: 1;
}
.go-cup-sub {
  font-family: var(--block);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--cream);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ----------------------------------------
   FEATURES BADGES
   ---------------------------------------- */
.features {
  padding: 60px 0;
  background: var(--black);
  border-bottom: 1px dashed rgba(204, 34, 41, 0.35);
}
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  text-align: center;
}
.feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--gold);
  font-size: 28px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(255, 80, 10, 0.55);
}
.feature-badge p {
  font-family: var(--block);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
}
.feature-badge p em {
  font-style: italic;
  font-family: var(--vintage);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--gold);
}

/* ----------------------------------------
   GET TICKETS BOTTOM BANNER — fire gradient
   ---------------------------------------- */
.get-tickets-banner {
  display: block;
  padding: 18px 24px;
  background: linear-gradient(180deg, var(--red-deep) 0%, var(--red) 40%, var(--fire) 100%);
  color: var(--cream);
  text-align: center;
  font-family: var(--block);
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  border-top: 2px solid var(--fire-bright);
  border-bottom: 2px solid var(--black);
  transition: background 0.2s ease;
}
.get-tickets-banner:hover {
  background: linear-gradient(180deg, var(--black) 0%, var(--red-deep) 30%, var(--red) 100%);
  color: var(--cream);
}
.gtb-stars { color: var(--gold-bright); margin: 0 16px; }
.gtb-url { color: var(--gold-bright); }
.get-tickets-banner:hover .gtb-url { color: var(--cream); }

/* Hide the old headliner anchor */
.headliner-anchor {
  position: relative;
  height: 0;
  visibility: hidden;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
  padding: 60px 0 0;
  background: var(--black);
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.foot-title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  color: var(--red-bright);
}
.foot-brand p {
  color: var(--white-dim);
  font-size: 14px;
  line-height: 1.6;
}

.foot-col h4 {
  font-family: var(--block);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.foot-col p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
}
.foot-col a {
  color: var(--cream);
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--fire); }

.footer-bottom {
  border-top: 1px solid rgba(204, 34, 41, 0.25);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  font-family: var(--block);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--white-dim);
  text-transform: uppercase;
}

/* ----------------------------------------
   HERO FLAME WALL
   ---------------------------------------- */
.hero-flame-video {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 460px;
  object-fit: cover;
  object-position: bottom center;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  animation: flame-breathe 5s ease-in-out infinite alternate;
}
@keyframes flame-breathe {
  0% { opacity: 0.82; transform: scaleX(1) scaleY(0.97); }
  100% { opacity: 1; transform: scaleX(1.04) scaleY(1.03); }
}

/* Lineup section: flame tongue rising from bottom (sits behind cards) */
.lineup::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5%;
  right: -5%;
  height: 120px;
  background: url('../images/art/flame-wall.jpg') bottom center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 35%, transparent 100%);
          mask-image: linear-gradient(to top, #000 0%, #000 35%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ----------------------------------------
   MASCOT WRAP
   ---------------------------------------- */
.mascot-fire-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
}
.mascot-fire-wrap .hero-mascot-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(255, 90, 30, 0.45));
}
@keyframes ring-slow-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ----------------------------------------
   EXPLOSION BURSTS
   ---------------------------------------- */

/* ========================================
   RESPONSIVE — TABLET (960px)
   ======================================== */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8, 7, 6, 0.99);
    padding: 24px;
    gap: 16px;
    border-bottom: 2px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-band-row { grid-template-columns: 1fr; gap: 32px; }
  .hero-mascot-img { width: 220px; height: auto; }

  .hero-title-row {
    flex-wrap: wrap;
    white-space: normal;
    font-size: clamp(48px, 14vw, 100px);
  }

  .features-row { grid-template-columns: 1fr; gap: 24px; }

  .crowd-cta {
    background-attachment: scroll, scroll, scroll;
  }

  .headliner-grid { grid-template-columns: 1fr; gap: 32px; }

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

  .sched-row { grid-template-columns: 90px 1fr; }
  .sched-time { font-size: 14px; }
  .sched-content h3 { font-size: 18px; }
  .sched-featured h3 { font-size: 24px; }
  .stage-pill { position: static; transform: none; margin-top: 8px; align-self: flex-start; }

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

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

  .rules-perks-grid { grid-template-columns: 1fr; gap: 16px; }

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

  .countdown { max-width: 100%; }
  .title-bands { font-size: clamp(60px, 14vw, 110px); }
}

/* ========================================
   RESPONSIVE — MOBILE (520px)
   ======================================== */
@media (max-width: 520px) {
  .hero-poster { max-width: 280px; max-height: 440px; }
  .hero-poster img { max-height: 440px; }

  .countdown { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .cd-box b { font-size: 26px; }

  .lineup-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .band-initial { font-size: 38px; }
  .band-card-body h3 { font-size: 16px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .btn-lg { font-size: 18px; padding: 16px 32px; letter-spacing: 3px; }

  .ticker-track { font-size: 18px; gap: 24px; }

  .schedule-legend { flex-direction: column; align-items: center; gap: 12px; }

  .sched-row { grid-template-columns: 80px 1fr; }
  .sched-content { padding: 10px 12px; }

  .tickets-inner { padding: 32px 20px; }

  .hero-tagline { font-size: 12px; letter-spacing: 2px; padding: 8px 16px; }

  .hero-date { flex-direction: column; align-items: center; gap: 4px; }
  .date-day { font-size: clamp(18px, 5vw, 28px); }
  .date-month { font-size: clamp(20px, 6.2vw, 36px); }

  .hero-cta { justify-content: center; }

  .hero-title-row { justify-content: center; text-align: center; }

  .headliner-poster-box { box-shadow: 4px 4px 0 var(--red-deep); }
  .poster-box { box-shadow: 4px 4px 0 var(--red-deep); max-width: 320px; }
  .cover-bands { grid-template-columns: repeat(2, 1fr); gap: 6px 8px; }
  .cover-bands li { font-size: 13px; white-space: normal; }

  .countdown { width: 100%; max-width: 320px; }
  .title-my, .title-bands { text-align: center; width: 100%; }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
