/* =====================================================
   Bryant n Calhoun Entertainment LLC
   2026 Spring Break Freakshow Rave
   Carnival / Big Top / Rave Aesthetic — Flyer-Accurate
   ===================================================== */

/* --- VARIABLES & RESET --- */
:root {
  /* Flyer-accurate colors */
  --orange-gold:   #ff8c00;
  --gold:          #ffd700;
  --neon-green:    #39ff14;
  --neon-pink:     #ff00aa;
  --neon-cyan:     #00e5ff;
  --neon-purple:   #cc00ff;
  --neon-yellow:   #ffee00;
  --neon-orange:   #ff6600;
  --hot-pink:      #ff1493;
  --dark-bg:       #050508;
  --dark-card:     #0d0d16;
  --dark-border:   #1a1a2e;
  --text-main:     #f0eeee;
  --text-dim:      #888899;

  /* Flyer-matching fonts */
  --font-circus:   'Rye', serif;              /* FREAKSHOW — slab-serif circus */
  --font-rave:     'Anton', sans-serif;       /* RAVE + performer names + UI */
  --font-script:   'Pacifico', cursive;       /* Let's Get Freaky! */
  --font-hand:     'Caveat', cursive;         /* Presale handwritten text */
  --font-headers:  'Bebas Neue', sans-serif;  /* Section titles, dates */
  --font-body:     'Rajdhani', sans-serif;    /* Body copy */
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark-bg);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }

/* --- SCANLINES OVERLAY --- */
.scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 2px,
    rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* --- GLITCH OVERLAY --- */
.glitch-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
}

/* --- PARTICLE CANVAS --- */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===================================================
   HERO SECTION — flyer as background
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px 100px;
  overflow: hidden;

  /* Flyer-style gradient — deep purple / dark carnival */
  background:
    radial-gradient(ellipse at top,    rgba(120,0,180,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at bottom, rgba(255,0,100,0.20) 0%, transparent 55%),
    linear-gradient(180deg, #0a0010 0%, #050508 100%);
  z-index: 1;
}

/* Animated diagonal grid — big-top tent feel */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,140,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,140,0,0.07) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridMove 25s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 55px 55px; }
}

/* FRIDAY STAMP */
.friday-stamp {
  position: relative;
  top: auto; right: auto;
  display: inline-block;
  background: var(--hot-pink);
  color: #fff;
  font-family: var(--font-headers);
  font-size: 0.7rem;
  letter-spacing: 3px;
  padding: 7px 16px;
  border-radius: 4px;
  transform: rotate(3deg);
  box-shadow: 0 0 20px var(--hot-pink), 0 0 40px rgba(255,20,147,0.4);
  z-index: 5;
  animation: stampPulse 2s ease-in-out infinite;
  margin-bottom: 14px;
}

@keyframes stampPulse {
  0%, 100% { box-shadow: 0 0 18px var(--hot-pink), 0 0 35px rgba(255,20,147,0.4); }
  50%       { box-shadow: 0 0 30px var(--hot-pink), 0 0 60px rgba(255,20,147,0.7); }
}

/* Hero content sits above the ghost flyer bg */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* PRESENTED BY */
.presented-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.presented-line1,
.presented-line2 {
  font-family: var(--font-headers);
  font-size: clamp(0.55rem, 2.8vw, 0.78rem);
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.presented-amp {
  font-family: var(--font-headers);
  font-size: clamp(0.5rem, 2.5vw, 0.7rem);
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.presented-presents {
  font-family: var(--font-headers);
  font-size: clamp(0.5rem, 2.5vw, 0.7rem);
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  text-align: center;
}

/* ── TITLE BLOCK ── */
.title-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  line-height: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0 10px;
  box-sizing: border-box;
}

/* "2026 SPRING BREAK" — yellow, Bebas Neue */
.spring-break-line {
  font-family: var(--font-headers);
  font-size: clamp(1rem, 4vw, 2.4rem);
  letter-spacing: clamp(2px, 1vw, 6px);
  color: var(--neon-yellow);
  text-shadow:
    0 0 12px var(--neon-yellow),
    0 2px 0 rgba(0,0,0,0.6);
  margin-bottom: 4px;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

/* "FREAKSHOW" — Rye circus slab-serif, orange-gold gradient */
.main-title {
  font-family: var(--font-circus);
  font-size: clamp(2rem, 9vw, 9rem);
  line-height: 1;
  letter-spacing: 0px;
  padding: 0;
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg,
    #ffe566 0%,
    #ff8c00 35%,
    #cc3300 70%,
    #ff5500 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 2px rgba(255,140,0,0.15))
          drop-shadow(0 0 4px rgba(255,60,0,0.1))
          drop-shadow(2px 2px 0 rgba(0,0,0,0.8));
  position: relative;
}

/* "RAVE" — Anton bold lime-green, neon glow */
.rave-line {
  font-family: var(--font-rave);
  font-size: clamp(1.8rem, 9vw, 8rem);
  letter-spacing: clamp(2px, 1vw, 10px);
  padding-left: 0;
  display: block;
  width: 100%;
  text-align: center;
  color: var(--neon-green);
  text-shadow:
    0 0 10px var(--neon-green),
    0 0 30px var(--neon-green),
    0 0 60px rgba(57,255,20,0.5),
    2px 2px 0 rgba(0,0,0,0.8);
  position: relative;
  margin-top: -8px;
}

/* Glitch effect — keep on both FREAKSHOW and RAVE */
.glitch-text { animation: glitchAnim 5s infinite; }

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* For FREAKSHOW — gradient clone */
.main-title::before {
  background: linear-gradient(180deg,#ffe566 0%,#ff8c00 35%,#cc3300 70%,#ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--neon-cyan);
  animation: glitchBefore 5s infinite;
  clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%);
  left: 3px;
  opacity: 0.6;
}

.main-title::after {
  background: linear-gradient(180deg,#ffe566 0%,#ff8c00 35%,#cc3300 70%,#ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glitchAfter 5s infinite;
  clip-path: polygon(0 58%, 100% 58%, 100% 78%, 0 78%);
  left: -3px;
  opacity: 0.5;
}

/* For RAVE */
.rave-line::before {
  color: var(--neon-cyan);
  -webkit-text-fill-color: var(--neon-cyan);
  animation: glitchBefore 5s infinite;
  clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
  left: 3px;
  opacity: 0.5;
}

.rave-line::after {
  color: var(--hot-pink);
  -webkit-text-fill-color: var(--hot-pink);
  animation: glitchAfter 5s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 78%, 0 78%);
  left: -3px;
  opacity: 0.5;
}

@keyframes glitchAnim {
  0%, 88%, 100% { transform: none; }
  90%  { transform: skewX(-2deg) translateX(3px); }
  92%  { transform: skewX(2deg) translateX(-3px); }
  94%  { transform: skewX(-1deg); }
  96%  { transform: none; }
}
@keyframes glitchBefore {
  0%, 88%, 100% { transform: none; opacity: 0; }
  89%  { transform: translateX(-5px); opacity: 0.6; }
  91%  { transform: translateX(5px);  opacity: 0.6; }
  93%  { opacity: 0; }
}
@keyframes glitchAfter {
  0%, 86%, 100% { transform: none; opacity: 0; }
  87%  { transform: translateX(5px);  opacity: 0.55; }
  89%  { transform: translateX(-5px); opacity: 0.55; }
  91%  { opacity: 0; }
}

/* HERO DETAILS */
.hero-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.hero-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headers);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-main);
}

.hero-detail-item i { color: var(--neon-cyan); font-size: 0.9rem; }

/* "Let's Get Freaky!" — Pacifico script, hot-pink, exactly like flyer */
.tagline {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--hot-pink);
  text-shadow:
    0 0 15px var(--hot-pink),
    0 0 30px rgba(255,20,147,0.5),
    2px 2px 0 rgba(0,0,0,0.6);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

/* "Presale Tickets Available Now $30!!!" — Caveat handwritten, lime green */
.presale-tag {
  font-family: var(--font-hand);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--neon-green);
  text-shadow:
    0 0 12px var(--neon-green),
    0 0 25px rgba(57,255,20,0.4);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
}

/* TICKET BUTTON */
.ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #cc0080, #8800cc);
  color: #fff;
  font-family: var(--font-rave);
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 16px 38px;
  border-radius: 6px;
  border: 2px solid var(--hot-pink);
  cursor: pointer;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  box-shadow:
    0 0 20px rgba(204,0,128,0.5),
    0 0 40px rgba(136,0,204,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.ticket-btn:hover {
  background: linear-gradient(135deg, #ee0099, #aa00ee);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(255,0,170,0.8), 0 0 70px rgba(204,0,255,0.5);
}

.ticket-price {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px var(--neon-yellow);
}

.big-btn { font-size: 1.1rem; padding: 20px 50px; }

.pulse-btn { animation: btnPulse 2.5s ease-in-out infinite; }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(204,0,128,0.5), 0 0 40px rgba(136,0,204,0.3); }
  50%       { box-shadow: 0 0 40px rgba(255,0,170,0.9), 0 0 80px rgba(204,0,255,0.6); }
}

/* AGE WARNING */
.age-warning {
  margin-top: 18px;
  font-family: var(--font-headers);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px var(--neon-yellow);
  position: relative;
  z-index: 2;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headers);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--text-dim);
  z-index: 2;
}

.bounce { animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ===================================================
   HERO FLYER GHOST BACKGROUND
   =================================================== */
.hero-flyer-bg {
  position: absolute;
  inset: 0;
  background: url('../images/flyer.jpg') center center / cover no-repeat;
  opacity: 0.05;
  z-index: 0;
  filter: saturate(1.2);
}


/* ===================================================
   COUNTDOWN
   =================================================== */
.countdown-section {
  background: linear-gradient(180deg, #0a0010, #0a0a1a);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-container { max-width: 1100px; margin: 0 auto; }

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark-card);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  padding: 20px 28px;
  min-width: 100px;
  box-shadow: 0 0 20px rgba(57,255,20,0.12), inset 0 0 20px rgba(57,255,20,0.05);
}

.countdown-num {
  font-family: var(--font-rave);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--neon-green);
  text-shadow: 0 0 20px var(--neon-green);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-family: var(--font-headers);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-top: 8px;
}

.countdown-sep {
  font-family: var(--font-rave);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  line-height: 1;
  padding-bottom: 24px;
  animation: sepBlink 1s step-end infinite;
}

@keyframes sepBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ===================================================
   TICKET STRIP
   =================================================== */
.ticket-strip {
  background: linear-gradient(90deg, #aa0066, #6600aa, #aa0066);
  background-size: 200% 100%;
  animation: stripMove 4s linear infinite;
  padding: 14px 0;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

@keyframes stripMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.ticket-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: var(--font-headers);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #fff;
  flex-wrap: wrap;
  padding: 0 20px;
}

.strip-btn {
  background: rgba(0,0,0,0.35);
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-headers);
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.strip-btn:hover {
  background: #fff;
  color: #6600aa;
}

/* ===================================================
   GENERAL SECTION STYLES
   =================================================== */
.section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

/* Section titles now use Bebas Neue — matches flyer's bold condensed headers */
.section-title {
  font-family: var(--font-headers);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: 7px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-divider {
  width: 80px;
  height: 3px;
  margin: 0 auto 50px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-gold), var(--neon-pink));
  box-shadow: 0 0 10px var(--orange-gold);
}

/* Neon color helpers */
.neon-pink   { color: var(--hot-pink);    text-shadow: 0 0 20px var(--hot-pink),    0 0 40px rgba(255,20,147,0.4); }
.neon-green  { color: var(--neon-green);  text-shadow: 0 0 20px var(--neon-green),  0 0 40px rgba(57,255,20,0.4); }
.neon-cyan   { color: var(--neon-cyan);   text-shadow: 0 0 20px var(--neon-cyan),   0 0 40px rgba(0,229,255,0.4); }
.neon-purple { color: var(--neon-purple); text-shadow: 0 0 20px var(--neon-purple), 0 0 40px rgba(204,0,255,0.4); }
.neon-orange { color: var(--orange-gold); text-shadow: 0 0 20px var(--orange-gold), 0 0 40px rgba(255,140,0,0.4); }

/* ===================================================
   LINEUP
   =================================================== */
.lineup-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,0,100,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(100,0,200,0.07) 0%, transparent 50%),
    var(--dark-bg);
}

.lineup-category { margin-bottom: 56px; }

.category-label {
  font-family: var(--font-headers);
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-label i { color: var(--neon-cyan); font-size: 1rem; }

/* Performer card as a link */
.performer-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.performer-link:hover .performer-name {
  color: var(--neon-yellow);
  text-shadow: 0 0 15px var(--neon-yellow);
}

.performer-ig {
  margin-top: 10px;
  font-family: var(--font-headers);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  opacity: 0.75;
  transition: opacity 0.3s;
}

.performer-link:hover .performer-ig {
  opacity: 1;
  text-shadow: 0 0 8px var(--neon-cyan);
}

/* Performer Cards */
.performer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.performer-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px 40px;
  text-align: center;
  min-width: 220px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performer-card.headliner {
  border-color: var(--orange-gold);
  box-shadow: 0 0 20px rgba(255,140,0,0.15), inset 0 0 30px rgba(255,140,0,0.04);
}

.performer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255,140,0,0.35), inset 0 0 30px rgba(255,140,0,0.07);
}

.performer-icon {
  font-size: 2rem;
  color: var(--neon-yellow);
  text-shadow: 0 0 15px var(--neon-yellow);
  margin-bottom: 12px;
}

/* Performer name — Anton bold, matches flyer "OC CHRIS • LIL SAY" */
.performer-name {
  font-family: var(--font-rave);
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.4);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.performer-time {
  font-family: var(--font-headers);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 2px;
}

.performer-badge {
  display: inline-block;
  background: var(--orange-gold);
  color: #000;
  font-family: var(--font-headers);
  font-size: 0.6rem;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 12px;
  box-shadow: 0 0 10px var(--orange-gold);
}

/* DJ Grid */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.dj-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dj-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
  transform: translateY(-4px);
}

.dj-icon {
  font-size: 1.8rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
  margin-bottom: 10px;
}

.dj-name {
  display: block;
  font-family: var(--font-rave);
  font-size: 0.9rem;
  color: var(--text-main);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.dj-role {
  display: block;
  font-family: var(--font-headers);
  font-size: 0.62rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
}

/* Support Grid */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.support-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.support-card:hover {
  border-color: var(--neon-purple);
  transform: translateY(-4px);
}

.support-icon { font-size: 2rem; margin-bottom: 10px; }

.support-name {
  font-family: var(--font-rave);
  font-size: 0.9rem;
  color: var(--neon-purple);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.support-desc { font-size: 0.85rem; color: var(--text-dim); }

/* ===================================================
   SCHEDULE / TIMELINE
   =================================================== */
.schedule-section {
  background:
    radial-gradient(ellipse at center, rgba(100,0,200,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #08000e 0%, var(--dark-bg) 100%);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-purple), var(--hot-pink), var(--neon-purple));
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--neon-purple);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  gap: 0 20px;
  align-items: start;
  margin-bottom: 40px;
  position: relative;
}

.timeline-time {
  font-family: var(--font-headers);
  font-size: 0.75rem;
  color: var(--neon-cyan);
  text-align: right;
  letter-spacing: 1px;
  padding-top: 6px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--neon-purple);
  border: 2px solid var(--dark-bg);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-purple);
  margin-top: 4px;
  justify-self: center;
}

.timeline-dot.highlight {
  background: var(--orange-gold);
  box-shadow: 0 0 20px var(--orange-gold), 0 0 40px rgba(255,140,0,0.4);
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.timeline-content {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 14px 18px;
  transition: border-color 0.3s;
}

.timeline-content:hover { border-color: var(--neon-purple); }

.timeline-content.highlight {
  border-color: var(--orange-gold);
  box-shadow: 0 0 20px rgba(255,140,0,0.15);
}

.timeline-event {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 1px;
}

.timeline-detail { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }

/* ===================================================
   GENRES
   =================================================== */
.genres-section { background: var(--dark-bg); text-align: center; }

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.genre-tag {
  font-family: var(--font-headers);
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,229,255,0.1), inset 0 0 10px rgba(0,229,255,0.04);
  transition: all 0.3s;
  cursor: default;
}

.genre-tag:hover {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  text-shadow: none;
  box-shadow: 0 0 20px var(--neon-cyan);
}

/* ===================================================
   VENUE
   =================================================== */
.venue-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,100,0,0.06) 0%, transparent 50%),
    var(--dark-bg);
}

.venue-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--dark-card);
  border: 1px solid var(--orange-gold);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(255,140,0,0.1);
  max-width: 900px;
  margin: 0 auto;
}

.venue-name {
  font-family: var(--font-rave);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--orange-gold);
  text-shadow: 0 0 20px var(--orange-gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.venue-address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.venue-address i { color: var(--orange-gold); }

.venue-details-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.venue-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headers);
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.venue-detail i { color: var(--orange-gold); }

.age-box {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.age-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.3);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--font-headers);
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--orange-gold);
}

.age-item i { font-size: 1rem; }

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--orange-gold);
  color: var(--orange-gold);
  font-family: var(--font-headers);
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.map-btn:hover {
  background: var(--orange-gold);
  color: var(--dark-bg);
  box-shadow: 0 0 20px var(--orange-gold);
}

.venue-atmosphere h4 {
  font-family: var(--font-headers);
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.atmosphere-list { display: flex; flex-direction: column; gap: 12px; }

.atm-item {
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--neon-purple);
  border-radius: 0 6px 6px 0;
  letter-spacing: 0.5px;
}

/* ===================================================
   SPONSORS
   =================================================== */
.sponsors-section {
  background:
    radial-gradient(ellipse at center bottom, rgba(57,255,20,0.05) 0%, transparent 60%),
    var(--dark-bg);
  text-align: center;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.sponsor-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 16px 28px;
  font-family: var(--font-headers);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57,255,20,0.3);
  transition: all 0.3s;
}

.sponsor-item:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(57,255,20,0.2);
  transform: translateY(-3px);
}

/* ===================================================
   FINAL CTA
   =================================================== */
.final-cta {
  padding: 100px 20px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(200,0,80,0.12) 0%, rgba(100,0,200,0.08) 30%, transparent 70%),
    linear-gradient(180deg, var(--dark-bg) 0%, #08000e 100%);
  position: relative;
  z-index: 1;
}

.cta-content { max-width: 800px; margin: 0 auto; }

.cta-friday {
  font-family: var(--font-headers);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--hot-pink);
  text-shadow: 0 0 15px var(--hot-pink);
  margin-bottom: 16px;
}

/* CTA title uses circus font — Rye */
.cta-title {
  font-family: var(--font-circus);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, #ffe566 0%, #ff8c00 50%, #cc3300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255,140,0,0.5));
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.cta-taglines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-family: var(--font-headers);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-dim);
}

/* ===================================================
   LIABILITY WAIVER BAR
   =================================================== */
.waiver-section {
  background: #07060d;
  border-top: 1px solid rgba(255, 140, 0, 0.2);
  border-bottom: 1px solid rgba(255, 140, 0, 0.2);
  padding: 22px 20px;
  position: relative;
  z-index: 1;
}

.waiver-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.waiver-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}

.waiver-icon {
  color: var(--orange-gold);
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(255,140,0,0.5);
  margin-top: 2px;
  flex-shrink: 0;
}

.waiver-text-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.waiver-label {
  font-family: var(--font-headers);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--orange-gold);
  text-shadow: 0 0 8px rgba(255,140,0,0.4);
}

.waiver-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #666677;
  line-height: 1.6;
  max-width: 720px;
}

.waiver-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,140,0,0.4);
  background: rgba(255,140,0,0.06);
  color: var(--orange-gold);
  font-family: var(--font-headers);
  font-size: 0.7rem;
  letter-spacing: 2px;
  padding: 9px 18px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.waiver-pdf-btn i {
  font-size: 0.9rem;
}

.waiver-pdf-btn:hover {
  background: rgba(255,140,0,0.15);
  border-color: var(--orange-gold);
  box-shadow: 0 0 12px rgba(255,140,0,0.25);
  color: var(--neon-yellow);
}

@media (max-width: 600px) {
  .waiver-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .waiver-pdf-btn {
    align-self: flex-start;
  }
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #030305;
  border-top: 1px solid var(--dark-border);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-circus);
  font-size: 1.1rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--orange-gold), var(--neon-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(255,140,0,0.5));
}

.footer-collab {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 1px;
}

.footer-event {
  font-family: var(--font-headers);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  line-height: 2;
}

.footer-note {
  font-size: 0.75rem;
  color: #444455;
  letter-spacing: 1px;
  line-height: 2;
}

/* ===================================================
   RESPONSIVE — TABLET (max 768px)
   =================================================== */
@media (max-width: 768px) {

  /* --- Hero --- */
  .hero { padding: 60px 16px 80px; }
  .presented-line1,
  .presented-line2 { font-size: clamp(0.65rem, 3vw, 0.85rem); }
  .spring-break-line { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .main-title { font-size: clamp(3rem, 13vw, 6rem); }
  .rave-line { font-size: clamp(2.6rem, 12vw, 5rem); }
  .hero-details { flex-direction: column; align-items: center; gap: 10px; }
  .hero-detail-item { font-size: 0.85rem; }
  .tagline { font-size: 2rem; }
  .presale-tag { font-size: 1.2rem; }
  .ticket-btn { padding: 16px 28px; font-size: 0.95rem; gap: 8px; }
  .ticket-price { font-size: 1.4rem; }
  .age-warning { font-size: 0.75rem; letter-spacing: 2px; }

  /* --- Countdown --- */
  .countdown-section { padding: 40px 16px; }
  .countdown-block { padding: 16px 18px; min-width: 76px; }
  .countdown-num { font-size: 2.2rem; }
  .countdown-sep { font-size: 2rem; padding-bottom: 20px; }

  /* --- Ticket strip --- */
  .ticket-strip-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* --- Sections general --- */
  .section { padding: 56px 16px; }
  .section-title { letter-spacing: 4px; }
  .section-divider { margin-bottom: 36px; }

  /* --- Lineup --- */
  .performer-cards { flex-direction: column; align-items: center; }
  .performer-card { width: 100%; max-width: 100%; padding: 24px 20px; }
  .performer-name { font-size: 1.3rem; }
  .dj-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .support-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* --- Timeline --- */
  .timeline::before { left: 14px; }
  .timeline-item {
    grid-template-columns: 18px 1fr;
    grid-template-rows: auto auto;
    gap: 0 12px;
  }
  .timeline-time {
    grid-column: 2; grid-row: 1;
    text-align: left;
    padding-bottom: 4px;
    font-size: 0.68rem;
  }
  .timeline-dot { grid-column: 1; grid-row: 1 / 3; margin-top: 5px; width: 14px; height: 14px; }
  .timeline-dot.highlight { width: 18px; height: 18px; }
  .timeline-content { grid-column: 2; grid-row: 2; padding: 10px 14px; }
  .timeline-event { font-size: 0.9rem; }

  /* --- Genres --- */
  .genre-tags { gap: 8px; }
  .genre-tag { font-size: 0.78rem; padding: 8px 16px; }

  /* --- Venue --- */
  .venue-card { grid-template-columns: 1fr; padding: 24px 18px; gap: 24px; }
  .venue-name { font-size: 1.2rem; }
  .age-box { gap: 12px; }

  /* --- Sponsors --- */
  .sponsors-grid { gap: 10px; }
  .sponsor-item { font-size: 0.75rem; padding: 12px 18px; }

  /* --- Final CTA --- */
  .final-cta { padding: 70px 16px; }
  .big-btn { padding: 16px 24px; font-size: 0.88rem; }

  /* --- Waiver --- */
  .waiver-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .waiver-pdf-btn { align-self: flex-start; }
  .waiver-text { font-size: 0.72rem; }

  /* --- Footer --- */
  .footer { padding: 32px 16px; }
  .footer-logo { font-size: 0.9rem; }
}

/* ===================================================
   RESPONSIVE — MOBILE (max 480px)
   =================================================== */
@media (max-width: 480px) {

  /* --- Hero --- */
  .hero { padding: 50px 14px 70px; min-height: 100svh; }
  .spring-break-line { font-size: clamp(1rem, 5vw, 1.4rem); }
  .main-title { font-size: clamp(2.6rem, 12.5vw, 5rem); }
  .rave-line { font-size: clamp(2.2rem, 12vw, 4.5rem); }
  .tagline { font-size: 1.8rem; }
  .presale-tag { font-size: 1.1rem; }
  .ticket-btn { padding: 15px 22px; font-size: 0.88rem; flex-wrap: wrap; justify-content: center; }
  .ticket-price { font-size: 1.3rem; }
  .age-warning { font-size: 0.7rem; letter-spacing: 1px; }
  .scroll-indicator { display: none; }

  /* --- Countdown --- */
  .countdown-grid { gap: 4px; }
  .countdown-block { padding: 12px 12px; min-width: 62px; }
  .countdown-num { font-size: 1.8rem; }
  .countdown-label { font-size: 0.55rem; letter-spacing: 2px; }
  .countdown-sep { font-size: 1.6rem; padding-bottom: 18px; }

  /* --- Sections --- */
  .section { padding: 44px 14px; }
  .section-title { font-size: 1.4rem; letter-spacing: 3px; }

  /* --- Lineup --- */
  .performer-card { padding: 20px 16px; }
  .performer-name { font-size: 1.2rem; letter-spacing: 2px; }
  .dj-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dj-name { font-size: 0.78rem; letter-spacing: 1px; }
  .support-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .support-name { font-size: 0.78rem; }
  .support-desc { font-size: 0.75rem; }
  .performer-ig { font-size: 0.6rem; }

  /* --- Timeline --- */
  .timeline-event { font-size: 0.85rem; }
  .timeline-detail { font-size: 0.72rem; }

  /* --- Genre tags --- */
  .genre-tag { font-size: 0.72rem; padding: 7px 13px; }

  /* --- Venue --- */
  .venue-card { padding: 18px 14px; }
  .venue-name { font-size: 1rem; letter-spacing: 2px; }
  .venue-address { font-size: 0.9rem; }
  .age-item { font-size: 0.7rem; padding: 6px 12px; }
  .atm-item { font-size: 0.85rem; padding: 8px 12px; }

  /* --- Sponsors --- */
  .sponsors-grid { gap: 8px; }
  .sponsor-item { font-size: 0.7rem; padding: 10px 14px; width: 100%; text-align: center; }

  /* --- Final CTA --- */
  .final-cta { padding: 56px 14px; }
  .cta-title { font-size: 1.6rem; letter-spacing: 2px; }
  .cta-sub { font-size: 0.9rem; }
  .big-btn { padding: 14px 18px; font-size: 0.82rem; width: 100%; justify-content: center; }
  .cta-taglines { font-size: 0.65rem; gap: 8px; }

  /* --- Waiver --- */
  .waiver-section { padding: 16px 14px; }
  .waiver-icon { font-size: 1.1rem; }
  .waiver-label { font-size: 0.62rem; }
  .waiver-text { font-size: 0.68rem; }
  .waiver-pdf-btn { font-size: 0.62rem; padding: 7px 14px; }

  /* --- Footer --- */
  .footer { padding: 28px 14px; }
  .footer-logo { font-size: 0.82rem; letter-spacing: 1px; }
  .footer-collab { font-size: 0.72rem; }
  .footer-event { font-size: 0.78rem; }
  .footer-note { font-size: 0.68rem; }
}

/* ===================================================
   RESPONSIVE — SMALL PHONES (max 360px)
   =================================================== */
@media (max-width: 360px) {
  .spring-break-line { font-size: clamp(0.7rem, 3vw, 0.9rem); }
  .main-title { font-size: clamp(1.4rem, 7.5vw, 2.5rem); }
  .rave-line { font-size: clamp(1.2rem, 7.5vw, 2.2rem); }
  .countdown-block { padding: 10px 8px; min-width: 54px; }
  .countdown-num { font-size: 1.5rem; }
  .countdown-sep { font-size: 1.3rem; }
  .section-title { font-size: 1.2rem; letter-spacing: 2px; }
  .dj-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   MUSIC MODAL — mobile tap-to-play prompt
   =================================================== */
.music-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.music-modal.show {
  display: flex;
}

.music-modal-box {
  background: linear-gradient(135deg, #0d0020, #1a0030);
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 0 40px rgba(204,0,255,0.4), 0 0 80px rgba(255,0,170,0.2);
  animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  0%   { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

.music-modal-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.music-modal-title {
  font-family: var(--font-circus);
  font-size: 1.6rem;
  background: linear-gradient(180deg, #ffe566, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255,140,0,0.5));
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.music-modal-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}

.music-modal-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--hot-pink), var(--neon-purple));
  border: none;
  border-radius: 30px;
  color: #fff;
  font-family: var(--font-headers);
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 16px 24px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255,0,170,0.5);
  transition: all 0.3s;
  margin-bottom: 12px;
  animation: btnPulse 2s ease-in-out infinite;
}

.music-modal-btn:hover,
.music-modal-btn:active {
  transform: scale(1.04);
  box-shadow: 0 0 35px rgba(255,0,170,0.8);
}

.music-modal-skip {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-headers);
  font-size: 0.7rem;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}

.music-modal-skip:hover { color: #fff; }

/* ===================================================
   MUSIC PLAYER — floating bottom left
   =================================================== */
.music-player {
  position: fixed;
  bottom: 24px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9990;
}

.music-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 0, 20, 0.85);
  border: 1px solid var(--neon-purple);
  color: #fff;
  font-family: var(--font-headers);
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 9px 16px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(204,0,255,0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.music-btn:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 0 20px rgba(255,0,170,0.5);
  background: rgba(20, 0, 35, 0.95);
}

.music-btn.playing {
  border-color: var(--neon-green);
  box-shadow: 0 0 16px rgba(57,255,20,0.4);
}

.music-icon { font-size: 0.9rem; }

/* Animated equalizer bars */
.music-bars {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.music-bars.active { display: flex; }

.music-bars span {
  display: block;
  width: 3px;
  background: var(--neon-green);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--neon-green);
  animation: barBounce 0.8s ease-in-out infinite;
}

.music-bars span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.music-bars span:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.music-bars span:nth-child(4) { height: 16px; animation-delay: 0.1s; }
.music-bars span:nth-child(5) { height: 8px;  animation-delay: 0.25s; }

@keyframes barBounce {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(0.3); }
}

@media (max-width: 480px) {
  .music-player {
    bottom: auto;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
  .music-btn { font-size: 0.65rem; padding: 8px 18px; }
  .music-label { display: inline; }
}

@media (max-width: 768px) {
  .main-title {
    filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.9));
  }
}

/* ===================================================
   INSTAGRAM IN-APP BROWSER FIX
   Forces text to never exceed screen width
   =================================================== */
* {
  max-width: 100%;
  box-sizing: border-box;
}

.main-title,
.rave-line,
.spring-break-line,
.presented-line1,
.presented-line2 {
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
