/* ===================================================
   SIRENS RAVE — Main Stylesheet
   Pirate & Siren Theme Event · April 25, 2026
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean-dark:    #00060e;
  --ocean-deep:    #010a19;
  --ocean-mid:     #030f22;
  --ocean-blue:    #041a3a;
  --teal:          #00b5b4;
  --teal-glow:     #00ffd5;
  --gold:          #d4a82a;
  --gold-light:    #f0c840;
  --siren-pink:    #d4007a;
  --siren-purple:  #6b1faa;
  --siren-magenta: #a01ab8;
  --accent-red:    #a0291d;
  --white:         #c8dff5;
  --muted:         #3d6688;
  --card-bg:       rgba(1, 8, 22, 0.85);
  --card-border:   rgba(0, 181, 180, 0.14);
  --font-display:  'Cinzel Decorative', serif;
  --font-heading:  'Cinzel', serif;
  --font-body:     'Raleway', sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background-color: var(--ocean-dark);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ocean-dark); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* Deep abyss vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 50%, transparent 40%, rgba(0,2,8,0.55) 100%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,2,8,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,2,8,0.8) 0%, transparent 70%);
}

/* ===== BUBBLES BACKGROUND ===== */
.bubbles-container {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,140,140,0.18), rgba(0,60,120,0.04));
  border: 1px solid rgba(0,181,180,0.10);
  animation: bubbleRise linear infinite;
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0) scale(1);   opacity: 0; }
  8%   { opacity: 0.6; }
  85%  { opacity: 0.2; }
  100% { transform: translateY(-110vh) translateX(20px) scale(1.08); opacity: 0; }
}

/* ===== PARTICLES ===== */
.particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--teal-glow);
  box-shadow: 0 0 8px var(--teal-glow), 0 0 20px rgba(0,255,213,0.4);
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(20px); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-60px) translateX(20px); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.75rem 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(0, 4, 12, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.8), 0 1px 0 rgba(0,181,180,0.08);
  border-bottom: 1px solid rgba(0,181,180,0.08);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(232,184,75,0.6);
  white-space: nowrap;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-anchor-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0,255,213,0.6));
}
.nav-links {
  display: flex; gap: 1.8rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--teal-glow); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ocean-dark);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 3, 10, 0.99);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.2rem 0; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--teal); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 6rem 2rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(0,30,80,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(80,10,160,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(180,0,100,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(0,15,50,0.9) 0%, transparent 80%),
    linear-gradient(180deg, #00060e 0%, #03112a 50%, #00060e 100%);
}
.ocean-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.caustic-light {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    60deg,
    transparent 0, transparent 60px,
    rgba(0,181,180,0.015) 60px, rgba(0,181,180,0.015) 61px
  ),
  repeating-linear-gradient(
    120deg,
    transparent 0, transparent 60px,
    rgba(0,181,180,0.012) 60px, rgba(0,181,180,0.012) 61px
  );
  animation: causticShift 10s ease-in-out infinite alternate;
}
@keyframes causticShift {
  0%  { opacity: 0.5; transform: scale(1); }
  100%{ opacity: 1;   transform: scale(1.05) rotate(2deg); }
}

/* ===== SIREN HERO IMAGE ===== */
.siren-hero-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}
.siren-hero-img img {
  width: clamp(300px, 55vw, 680px);
  height: auto;
  display: block;
  opacity: 0.13;
  filter:
    drop-shadow(0 0 30px rgba(0, 255, 213, 0.7))
    drop-shadow(0 0 80px rgba(0, 200, 200, 0.4))
    drop-shadow(0 0 140px rgba(0, 150, 180, 0.25));
  animation: sirenPulse 5s ease-in-out infinite;
}
@keyframes sirenPulse {
  0%, 100% {
    opacity: 0.13;
    filter:
      drop-shadow(0 0 30px rgba(0, 255, 213, 0.7))
      drop-shadow(0 0 80px rgba(0, 200, 200, 0.4))
      drop-shadow(0 0 140px rgba(0, 150, 180, 0.25));
  }
  50% {
    opacity: 0.20;
    filter:
      drop-shadow(0 0 50px rgba(0, 255, 213, 1))
      drop-shadow(0 0 120px rgba(0, 220, 220, 0.6))
      drop-shadow(0 0 200px rgba(107, 31, 170, 0.35));
  }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 860px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.hero-presented {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 12px rgba(0, 255, 213, 0.5);
  opacity: 1;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 8px rgba(233,30,140,0.3); }
  50%       { box-shadow: 0 0 20px rgba(233,30,140,0.7); }
}

/* ---- Hero Logo ---- */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem auto;
  width: 100%;
}
.hero-logo-img {
  width: clamp(260px, 55vw, 520px);
  height: auto;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 30px rgba(0, 255, 213, 0.55))
    drop-shadow(0 0 80px rgba(0, 180, 180, 0.25));
  animation: logoGlow 4s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 25px rgba(0, 255, 213, 0.5))
      drop-shadow(0 0 60px rgba(0, 180, 180, 0.2));
  }
  50% {
    filter:
      drop-shadow(0 0 50px rgba(0, 255, 213, 0.85))
      drop-shadow(0 0 100px rgba(0, 200, 180, 0.4));
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 35%, var(--teal-glow) 75%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 40px rgba(180,120,10,0.35)) drop-shadow(0 0 80px rgba(0,200,160,0.15));
}
.anchor-icon {
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
  font-size: 0.7em;
  vertical-align: middle;
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--teal-glow);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(0,255,213,0.5), 0 0 60px rgba(0,150,150,0.3);
}
.hero-tagline {
  font-size: 1rem;
  color: var(--teal-glow);
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(0, 255, 213, 0.5);
}

.hero-details {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.detail-item {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(0,80,80,0.08);
  border: 1px solid rgba(0,181,180,0.14);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}
.detail-item i { color: var(--teal); }

.hero-cta-group {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--siren-purple) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0,181,180,0.3), 0 0 60px rgba(80,10,160,0.15);
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,181,180,0.5), 0 0 80px rgba(107,31,170,0.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: rgba(232,184,75,0.12);
  box-shadow: 0 4px 20px rgba(232,184,75,0.3);
  transform: translateY(-2px);
}

/* ---- Countdown ---- */
.countdown-wrap { margin-top: 1rem; }
.countdown-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.countdown {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cblock {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,100,100,0.06);
  border: 1px solid rgba(0,181,180,0.14);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  min-width: 72px;
}
.cblock span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-glow);
  text-shadow: 0 0 16px rgba(0,255,231,0.7);
  line-height: 1;
}
.cblock label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 0.3rem;
}

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
  background: linear-gradient(90deg, var(--ocean-dark), var(--ocean-deep), var(--ocean-dark));
  border-top: 1px solid rgba(0,201,200,0.15);
  border-bottom: 1px solid rgba(0,201,200,0.15);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-glow);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
  position: relative; z-index: 1;
  padding: 6rem 2rem;
}
.section-dark {
  background: linear-gradient(180deg, var(--ocean-dark) 0%, var(--ocean-deep) 50%, var(--ocean-dark) 100%);
}
.container {
  max-width: 1200px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 4rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(180,130,10,0.35), 0 0 60px rgba(80,40,0,0.2);
}
.section-sub {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== CONCEPT GRID ===== */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.concept-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  backdrop-filter: blur(10px);
}
.concept-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,181,180,0.4);
  box-shadow: 0 12px 40px rgba(0,181,180,0.12), 0 0 60px rgba(80,10,160,0.1);
}
.concept-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.concept-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 0.8rem;
}
.concept-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.concept-card strong { color: var(--white); }

.brand-quote {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(80,10,160,0.12), rgba(0,120,120,0.06));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(80,10,160,0.18);
}
.brand-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--white);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.highlight {
  color: var(--teal-glow);
  text-shadow: 0 0 12px rgba(0,255,231,0.5);
  font-style: normal;
}
.brand-quote cite {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ===== EXPERIENCE GRID ===== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.exp-item {
  background: rgba(1, 6, 18, 0.75);
  border: 1px solid rgba(212,168,42,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s;
}
.exp-item:hover {
  border-color: rgba(212,168,42,0.3);
  transform: translateY(-4px);
  background: rgba(2, 10, 30, 0.95);
}
.exp-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.exp-item h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.exp-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 120px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--teal), var(--siren-pink), var(--teal), transparent);
}
.tl-item {
  display: grid;
  grid-template-columns: 100px 30px 1fr;
  gap: 0 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.tl-time {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--teal-glow);
  letter-spacing: 0.05em;
  text-align: right;
  padding-top: 0.2rem;
}
.tl-dot {
  width: 16px; height: 16px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--ocean-dark);
  box-shadow: 0 0 16px rgba(0,181,180,0.9), 0 0 30px rgba(0,181,180,0.3);
  margin-top: 0.1rem;
  position: relative;
  z-index: 1;
}
.tl-content h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.tl-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ===== LINEUP ===== */
.lineup-grid {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
  margin-bottom: 2rem;
}
.lineup-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  width: 260px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.lineup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,181,180,0.1), 0 0 60px rgba(80,10,160,0.12);
}
.lineup-card.headliner {
  border-color: rgba(232,184,75,0.4);
  background: linear-gradient(160deg, rgba(232,184,75,0.08), rgba(5,20,50,0.9));
}
.lc-badge {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--siren-pink);
  border: 1px solid rgba(233,30,140,0.3);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.headliner .lc-badge { color: var(--gold); border-color: rgba(232,184,75,0.4); }
.lc-avatar {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--teal), var(--siren-purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
}
.headliner .lc-avatar { background: linear-gradient(135deg, var(--gold), var(--siren-pink)); }
.lineup-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}
.lineup-card p { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.6rem; }
.lc-time {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.lineup-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* ===== DRESS CODE ===== */
.dress-intro {
  text-align: center; max-width: 700px; margin: 0 auto 3rem;
  font-size: 1.05rem; color: var(--muted); line-height: 1.8;
}
.dress-intro strong { color: var(--white); }
.dress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.dress-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
}
.dress-card-header {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}
.dress-card.allowed .dress-card-header { background: rgba(0,201,200,0.12); color: var(--teal-glow); }
.dress-card.tips .dress-card-header { background: rgba(232,184,75,0.12); color: var(--gold-light); }
.dress-card.notallowed .dress-card-header { background: rgba(192,57,43,0.12); color: #e74c3c; }
.dress-card ul { padding: 1.2rem 1.5rem; }
.dress-card li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dress-card li:last-child { border-bottom: none; }
.dress-note {
  background: rgba(192,57,43,0.08);
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
  color: #e74c3c;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.costume-contest-banner {
  background: linear-gradient(135deg, rgba(232,184,75,0.1), rgba(233,30,140,0.1));
  border: 1px solid rgba(232,184,75,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.ccb-inner {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ccb-inner > i {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.7;
}
.ccb-inner h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.ccb-inner p { font-size: 0.9rem; color: var(--muted); }
.ccb-inner strong { color: var(--white); }

/* ===== TICKETS ===== */
.tickets-grid {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; margin-bottom: 2rem;
}
.ticket-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  width: 300px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,181,180,0.18), 0 0 80px rgba(107,31,170,0.15);
}
.ticket-card.featured {
  border-color: rgba(0,201,200,0.5);
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(0,201,200,0.25);
}
.ticket-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}
.ticket-ribbon {
  position: absolute; top: 16px; right: -8px;
  background: var(--teal);
  color: var(--ocean-dark);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 1.2rem 0.3rem 0.8rem;
  border-radius: 4px 0 0 4px;
}
.ticket-ribbon::after {
  content: '';
  position: absolute; right: -8px; top: 0; bottom: 0;
  border-left: 8px solid var(--teal);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.ticket-top {
  background: linear-gradient(160deg, rgba(0,150,150,0.12), rgba(1,8,22,0.7));
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  position: relative;
}
.ticket-wave {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--siren-purple), transparent);
  margin-bottom: 1.2rem;
  border-radius: 2px;
}
.ticket-tier {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ticket-price sup {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--muted);
}
.ticket-top > p { font-size: 0.82rem; color: var(--muted); }
.ticket-body { padding: 1.5rem; }
.ticket-body ul { margin-bottom: 1.5rem; }
.ticket-body li {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ticket-body li i.fa-check { color: var(--teal); }
.ticket-body li i.fa-times { color: #555; }
.ticket-body li .faded { opacity: 0.4; }
.btn-ticket {
  display: block; width: 100%; text-align: center;
  padding: 0.85rem;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ticket:hover { background: rgba(0,201,200,0.12); }
.btn-ticket-featured {
  background: linear-gradient(135deg, var(--teal), var(--siren-purple));
  border-color: transparent;
  color: var(--white);
}
.btn-ticket-featured:hover { opacity: 0.9; }
/* Tier 1 active ticket glow pulse */
.ticket-active {
  border-color: rgba(0,181,180,0.5) !important;
  box-shadow: 0 8px 40px rgba(0,181,180,0.18), 0 0 100px rgba(0,80,80,0.2);
  animation: ticketGlow 3s ease-in-out infinite;
}
@keyframes ticketGlow {
  0%, 100% { box-shadow: 0 8px 40px rgba(0,181,180,0.18), 0 0 60px rgba(0,80,80,0.15); }
  50%       { box-shadow: 0 8px 60px rgba(0,181,180,0.35), 0 0 120px rgba(107,31,170,0.2); }
}

/* Locked ticket */
.ticket-locked {
  position: relative;
  filter: brightness(0.38) saturate(0.25);
  pointer-events: none;
  user-select: none;
}
.ticket-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(0,4,12,0.65);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.ticket-lock-overlay i {
  font-size: 2.2rem;
  color: var(--muted);
  opacity: 0.7;
}
.ticket-lock-overlay p {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-align: center;
  padding: 0 1rem;
}

/* Live ribbon */
.ticket-ribbon-live {
  background: linear-gradient(135deg, var(--siren-pink), var(--siren-purple)) !important;
  color: var(--white) !important;
  animation: pulseBadge 2s ease-in-out infinite;
}

/* Ticket counter bar */
.ticket-counter {
  margin-bottom: 1.2rem;
}
.tc-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.tc-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--siren-purple));
  border-radius: 50px;
  transition: width 1s ease;
}
.tc-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--teal-glow);
  text-align: center;
}

/* Locked button */
.btn-ticket-locked {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: var(--muted) !important;
  cursor: not-allowed !important;
  display: block; width: 100%; text-align: center;
  padding: 0.85rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  border: 1px solid;
}

.ticket-notice {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(233,30,140,0.08);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.ticket-notice i { color: var(--siren-pink); font-size: 1.2rem; flex-shrink: 0; }
.ticket-notice p { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }
.ticket-notice strong { color: var(--white); }

/* ===== VIP ===== */
/* VIP price note */
.vip-price-note {
  display: flex; align-items: center; gap: 0.6rem;
  justify-content: center;
  background: rgba(232,184,75,0.07);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.vip-price-note i { flex-shrink: 0; }

/* Tier label */
.vip-tier-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--teal-glow);
  border: 1px solid rgba(0,201,200,0.3);
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.vip-featured .vip-tier-label {
  color: var(--gold);
  border-color: rgba(232,184,75,0.4);
}

.vip-grid {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: center; margin-bottom: 2.5rem;
}

/* Two-tier layout — centered, equal width */
.vip-grid-two {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.vip-grid-two .vip-card {
  flex: 1 1 300px;
  max-width: 360px;
}
.vip-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 300px;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.vip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,201,200,0.15);
}
.vip-card.vip-featured {
  background: linear-gradient(160deg, rgba(139,47,201,0.15), rgba(5,20,50,0.9));
  border-color: rgba(139,47,201,0.45);
  box-shadow: 0 8px 40px rgba(139,47,201,0.2);
}
.vip-card.vip-featured:hover {
  box-shadow: 0 20px 60px rgba(139,47,201,0.35);
}
.vip-crown { font-size: 3rem; margin-bottom: 1rem; display: block; }
.vip-card h3 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.vip-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.vip-price span { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); }
.vip-card ul { text-align: left; margin-bottom: 2rem; }
.vip-card li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.vip-card li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.btn-vip {
  display: block;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-vip:hover {
  background: rgba(232,184,75,0.12);
  box-shadow: 0 4px 20px rgba(232,184,75,0.3);
}
.btn-vip-featured {
  background: linear-gradient(135deg, var(--siren-purple), var(--siren-magenta));
  border-color: transparent;
  color: var(--white);
}
.btn-vip-featured:hover {
  opacity: 0.9;
  box-shadow: 0 8px 30px rgba(139,47,201,0.5);
}
.btn-vip-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
  color: var(--white);
}
.btn-vip-ig:hover {
  opacity: 0.9;
  box-shadow: 0 8px 30px rgba(253,29,29,0.4);
}
.vip-reserve-btns {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.vip-reserve-btns .btn-vip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.vip-contact {
  text-align: center;
  background: rgba(5,20,50,0.5);
  border: 1px solid rgba(0,201,200,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.vip-contact p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.4rem; }
.vip-contact strong { color: var(--white); }
.vip-contact i { color: var(--teal); }
.vip-email {
  color: var(--teal-glow);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.3s, text-shadow 0.3s;
}
.vip-email:hover {
  color: var(--white);
  text-shadow: 0 0 14px rgba(0,255,231,0.7);
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.venue-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.venue-logo { font-size: 3rem; margin-bottom: 0.5rem; }
.venue-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.venue-loc {
  font-size: 0.9rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.venue-details { margin-bottom: 1.5rem; }
.vd-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vd-item:last-child { border-bottom: none; }
.vd-item > i { color: var(--teal); margin-top: 4px; width: 16px; text-align: center; }
.vd-item div { display: flex; flex-direction: column; }
.vd-item strong { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.15rem; }
.vd-item span { font-size: 0.92rem; color: var(--white); }
.btn-directions {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal), var(--ocean-blue));
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  transition: all 0.3s;
}
.btn-directions:hover { opacity: 0.85; transform: translateY(-2px); }
.location-map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.location-map iframe { height: 100%; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--ocean-dark);
  border-top: 1px solid rgba(0,181,180,0.08);
  padding-top: 5rem;
  overflow: hidden;
}
.footer-ocean {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--siren-purple), var(--gold), transparent);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(232,184,75,0.4);
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.3rem; }
.footer-tagline { color: var(--teal) !important; font-style: italic; }
.footer-email {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--teal);
  margin-top: 0.5rem;
  transition: color 0.3s, text-shadow 0.3s;
  letter-spacing: 0.03em;
}
.footer-email:hover {
  color: var(--teal-glow);
  text-shadow: 0 0 10px rgba(0,255,231,0.5);
}
.footer-info h4, .footer-links h4, .footer-social h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-info p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-info i { color: var(--teal); width: 14px; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--teal-glow); }
.social-icons { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; }
.social-btn {
  width: 42px; height: 42px;
  background: rgba(0,80,80,0.08);
  border: 1px solid rgba(0,181,180,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--teal);
  color: var(--ocean-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,201,200,0.4);
}
.social-note { font-size: 0.82rem; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: #1e3550;
  letter-spacing: 0.05em;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 3, 10, 0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--ocean-deep);
  border: 1px solid rgba(0,201,200,0.3);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 440px; width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(0,201,200,0.2);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.1rem; transition: color 0.3s;
}
.modal-close:hover { color: var(--white); }
.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
}
.modal-box p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.5rem; }
.modal-tagline { color: var(--teal) !important; font-style: italic; }
.modal-contact {
  margin-top: 0.6rem !important;
  font-size: 0.85rem;
  color: var(--muted);
}
.modal-contact a {
  color: var(--teal-glow);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.modal-contact a:hover { color: var(--white); }
.modal-social { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1rem; }

/* ===== QR SECTION ===== */
.qr-section-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.qr-section-card {
  text-align: center;
}
.qr-section-code {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: inline-block;
  box-shadow: 0 0 50px rgba(0,181,180,0.2), 0 0 100px rgba(80,10,160,0.1);
  margin-bottom: 1rem;
}
.qr-section-code canvas,
.qr-section-code img { display: block; }
.qr-section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.qr-section-url {
  font-size: 0.72rem;
  color: var(--teal);
  font-family: monospace;
  margin-bottom: 1.2rem;
}
.qr-section-btns {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}
.qr-section-btns .btn-primary,
.qr-section-btns .btn-secondary {
  font-size: 0.75rem;
  padding: 0.7rem 1.4rem;
}
.qr-section-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.qr-section-text > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.qr-share-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.qr-share-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.qr-share-list li i { color: var(--teal); width: 16px; }
.qr-share-list strong { color: var(--white); }

/* Footer QR */
.footer-qr h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.footer-qr-code {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: inline-block;
  box-shadow: 0 0 16px rgba(0,201,200,0.2);
}
.footer-qr-code canvas,
.footer-qr-code img { display: block; }

@media (max-width: 600px) {
  .qr-section-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .qr-share-list { align-items: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .timeline::before { left: 80px; }
  .tl-item { grid-template-columns: 60px 24px 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 5rem 1.5rem 3rem; }
  .hero-presented {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0 0.5rem;
  }
  .hero-title { font-size: clamp(2.2rem, 11vw, 4rem); }
  .hero-subtitle { font-size: clamp(0.85rem, 3.5vw, 1.2rem); letter-spacing: 0.15em; }
  .hero-tagline { font-size: 0.88rem; }
  .hero-details { gap: 0.6rem; }
  .detail-item { font-size: 0.78rem; padding: 0.4rem 0.9rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .cblock { min-width: 58px; padding: 0.6rem 0.8rem; }
  .cblock span { font-size: 1.6rem; }

  /* Siren bg image — smaller on mobile */
  .siren-hero-img img { width: clamp(260px, 85vw, 420px); }

  /* Timeline */
  .timeline::before { left: 0; }
  .tl-item {
    grid-template-columns: 24px 1fr;
    gap: 0 1rem;
  }
  .tl-time {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  /* Tickets */
  .tickets-grid { flex-direction: column; align-items: center; }
  .ticket-card { width: 100%; max-width: 360px; }
  .ticket-card.featured { transform: scale(1); }

  /* Lineup */
  .lineup-card { width: 100%; max-width: 360px; }

  /* Dress code */
  .dress-grid { grid-template-columns: 1fr; }

  /* Concept grid */
  .concept-grid { grid-template-columns: 1fr; }

  /* Experience grid */
  .experience-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* QR section */
  .qr-section-wrap { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .qr-share-list { align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1.2rem; }
  .hero { padding: 5rem 1.2rem 3rem; }

  /* Hero presented-by wraps cleanly */
  .hero-presented {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
    padding: 0 0.2rem;
  }

  /* Countdown tighter */
  .countdown { gap: 0.6rem; }
  .cblock { min-width: 52px; padding: 0.5rem 0.6rem; }
  .cblock span { font-size: 1.4rem; }
  .cblock label { font-size: 0.55rem; }

  /* Ticket cards full width */
  .tickets-grid { flex-direction: column; align-items: center; }
  .ticket-card { width: 100%; max-width: 100%; }

  /* Section titles smaller */
  .section-title { font-size: clamp(1.3rem, 6vw, 2rem); }

  /* Footer single col */
  .footer-inner { grid-template-columns: 1fr; }
  .vip-grid { flex-direction: column; align-items: center; }

  /* Costume contest banner */
  .ccb-inner { flex-direction: column; text-align: center; }
  .ccb-inner > i { display: none; }

  /* Location map shorter */
  .location-map { height: 220px; }

  /* Navbar logo smaller */
  .nav-logo { font-size: 1rem; }

  /* Hero logo on smallest screens */
  .hero-logo-img { width: clamp(200px, 80vw, 320px); }
}
