/* ============================================================
   TRUNK OR TREAT, SHOP, & EAT — MASTER EXPERIENTIAL FESTIVAL SYSTEM (v58.0)
   Designed with Atmospheric Canvas Fog, Holographic Foil, Tactical Radar HUD & Ticker
   ============================================================ */

:root {
  --bg-deep: #030812;
  --bg-slate: #081324;
  --bg-surface: #0e1f38;
  --bg-card: rgba(10, 23, 44, 0.88);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(251, 191, 36, 0.45);
  --border-orange: rgba(245, 158, 11, 0.5);
  --border-cyan: rgba(56, 189, 248, 0.45);
  --border-purple: rgba(56, 189, 248, 0.45);
  
  --gold: #fbbf24;
  --amber: #f59e0b;
  --orange: #ff7b00;
  --cyan: #38bdf8;
  --teal: #06b6d4;
  --emerald: #10b981;
  --palm-green: #22c55e;
  --purple-glow: #06b6d4;
  --green: #22c55e;
  
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  /* Fonts */
  --font-spooky: 'Cinzel Decorative', 'Pirata One', serif;
  --font-gothic: 'Cinzel Decorative', serif;
  --font-pirata: 'Pirata One', cursive;
  --font-metal: 'Metal Mania', cursive;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

.font-spooky { font-family: var(--font-spooky) !important; letter-spacing: 1.5px; }
.font-metal { font-family: var(--font-metal) !important; letter-spacing: 1.5px; }
.font-heading { font-family: var(--font-heading) !important; }

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-deep);
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--bg-deep);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -50px;
  left: 10px;
  background: var(--gold);
  color: #030812;
  padding: 10px 18px;
  font-weight: 800;
  z-index: 999999;
  border-radius: 6px;
  transition: top 0.25s ease;
}
.skip-link:focus {
  top: 15px;
}

/* ============================================================
   NEON LIGHTING & GLOW PHYSICS
   ============================================================ */
.neon-glow-headline {
  text-shadow: 
    0 0 10px rgba(251, 191, 36, 0.9),
    0 0 25px rgba(245, 158, 11, 0.7),
    0 0 50px rgba(6, 182, 212, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.95);
  animation: neonFlicker 6s infinite alternate ease-in-out;
}

@keyframes neonFlicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(245, 158, 11, 0.6));
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.88;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.2));
  }
}

.neon-text-amber {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

/* ============================================================
   TOP ANNOUNCEMENT BAR & STICKY NAVBAR
   ============================================================ */
.festival-announcement-bar {
  background: linear-gradient(90deg, #071324, #122846, #071324);
  border-bottom: 1.5px solid var(--border-gold);
  padding: 8px 1rem;
  font-size: 0.86rem;
  color: #e2e8f0;
  position: relative;
  z-index: 100;
}

.announcement-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.announcement-pill {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: beaconPulse 1.5s infinite;
}

@keyframes beaconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.announcement-cta {
  color: var(--gold);
  font-weight: 700;
}
.arrow-glyph {
  display: inline-block;
  transition: transform 0.2s ease;
}
.announcement-cta:hover .arrow-glyph {
  transform: translateX(4px);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 10, 20, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-avatar-frame {
  position: relative;
}

.nav-brand-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.nav-brand-title {
  font-size: 1.35rem;
  color: #ffffff;
  display: block;
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: 0.76rem;
  color: var(--cyan);
  font-weight: 600;
  display: block;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #cbd5e1;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

/* Mobile Drawer (Strictly Hidden on Desktop) */
.mobile-menu-drawer {
  display: none;
}
.mobile-nav-backdrop {
  display: none;
}

/* ============================================================
   BUTTONS & ROTATING BORDER BEAM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #ff7b00 100%);
  color: #030812;
  padding: 0.9rem 1.85rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(245, 158, 11, 0.6);
  color: #030812;
}

.btn-beam {
  position: relative;
  overflow: hidden;
}

.btn-beam::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
  transform: rotate(25deg);
  animation: sweepBeam 4s infinite;
}

@keyframes sweepBeam {
  0% { transform: translateX(-120%) rotate(25deg); }
  25%, 100% { transform: translateX(120%) rotate(25deg); }
}

.btn-outline {
  background: rgba(14, 31, 56, 0.7);
  border: 1.5px solid var(--border-cyan);
  color: var(--cyan);
  padding: 0.9rem 1.85rem;
}

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--cyan);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.86rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1.08rem;
  border-radius: 14px;
}

.btn-xl {
  padding: 1.2rem 2.9rem;
  font-size: 1.15rem;
  border-radius: 16px;
}

.btn-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 31, 56, 0.9);
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.btn-round:hover {
  background: var(--gold);
  color: #030812;
  transform: scale(1.1);
}




/* ============================================================
   DECLUTTERED & CINEMATIC HERO ARCHITECTURE (v66.0)
   ============================================================ */
.hero-editorial {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 0 5rem !important;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.68) saturate(1.2) contrast(1.05);
}

.hero-fog-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(6, 182, 212, 0.12), transparent 70%);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 20, 0.3) 0%, rgba(3, 8, 18, 0.65) 60%, rgba(3, 8, 18, 0.98) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1040px;
}

.hero-masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

/* Brand Crown */
.hero-brand-crown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.4rem;
}

.hero-logo-frame {
  position: relative;
  width: 84px;
  height: 84px;
}

.logo-backlight {
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, rgba(6, 182, 212, 0.2) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(10px);
}

.hero-logo-emblem {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(251, 191, 36, 0.35);
  background: #061122;
  object-fit: cover;
}

.hero-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 31, 56, 0.85);
  border: 1px solid var(--border-cyan);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  color: #ffffff;
  margin: 0.2rem 0 0.4rem;
  letter-spacing: 1px;
}

.hero-subtitle-bar {
  background: rgba(10, 23, 44, 0.85);
  border: 1px solid var(--border-gold);
  padding: 8px 24px;
  border-radius: 30px;
  color: var(--gold);
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.4rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Action Deck */
.hero-action-deck {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0.6rem;
}

.hero-countdown-deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-countdown-deck .deck-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--cyan);
}

.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.audio-deck-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 31, 56, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 6px 14px 6px 8px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.deck-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple);
  color: #030812;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.deck-play-btn:hover {
  transform: scale(1.1);
}

.deck-single-title {
  font-weight: 700;
  font-size: 0.82rem;
  color: #ffffff;
}

.deck-artist-badge {
  font-size: 0.68rem;
  color: var(--purple);
  font-weight: 700;
}

.deck-timer {
  font-family: monospace;
  font-size: 0.74rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--gold);
}

@media (max-width: 768px) {
  .hero-action-deck {
    flex-direction: column;
    gap: 1.4rem;
  }
}


/* ============================================================
   INFINITE ANGLED MARQUEE TICKER TAPE
   ============================================================ */
.marquee-ticker-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(90deg, #b45309, #d97706, #b45309);
  padding: 12px 0;
  transform: rotate(-1.5deg) scaleX(1.04);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 158, 11, 0.4);
  border-top: 1.5px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

.marquee-ticker-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-ticker-content {
  display: flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #030812;
  text-transform: uppercase;
  white-space: nowrap;
}

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

/* ============================================================
   EDITORIAL HEADERS & SECTION STYLING
   ============================================================ */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.editorial-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.4rem;
}

.section-tag-gold {
  display: inline-block;
  background: rgba(251, 191, 36, 0.12);
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.9rem;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.editorial-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.editorial-subtitle {
  font-size: clamp(0.96rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.65;
}

.highlight-amber {
  color: var(--gold);
  background: linear-gradient(135deg, #fbbf24 0%, #ff7b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   3D TILT CARDS & PILLARS BENTO
   ============================================================ */
.tilt-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.experience-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75), 0 0 25px rgba(251, 191, 36, 0.2);
}

.bento-large {
  grid-column: span 2;
}

.bento-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.bento-large .bento-media {
  height: 290px;
}

.bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-media img {
  transform: scale(1.08);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 31, 56, 0.98) 0%, rgba(14, 31, 56, 0.2) 60%, transparent 100%);
}

.bento-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(4, 10, 20, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
}

.bento-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bento-category-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.bento-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.bento-content p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.bento-action-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan);
}

.bento-action-link:hover {
  color: var(--gold);
}

/* ============================================================
   TASTE OF GALVESTON BAY DIRECTORY & FILTER CHIPS
   ============================================================ */
.culinary-filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.8rem;
}

.filter-tab-btn {
  background: rgba(14, 31, 56, 0.85);
  border: 1.5px solid var(--border-subtle);
  color: #cbd5e1;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-tab-btn:hover {
  border-color: var(--cyan);
  color: #ffffff;
  transform: translateY(-2px);
}

.filter-tab-btn.active {
  background: linear-gradient(135deg, #fbbf24 0%, #ff7b00 100%);
  color: #030812;
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
}

.culinary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.culinary-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.culinary-card:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(251, 191, 36, 0.2);
}

.culinary-header {
  margin-bottom: 0.6rem;
}

.culinary-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.badge-gold {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.badge-cyan {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.badge-purple {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--purple);
  color: var(--purple);
}

.culinary-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.culinary-spec {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.tasting-sample-tag {
  background: rgba(14, 31, 56, 0.9);
  border: 1px dashed var(--border-gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
  margin-top: auto;
}

.culinary-join {
  border: 2px dashed var(--border-gold);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.04);
}

.culinary-join-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.join-icon {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

/* ============================================================
   2025 FESTIVAL MOMENTS & PHOTO VAULT
   ============================================================ */
.cinema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.8rem;
}

.cinema-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.65);
  transition: border-color 0.3s ease;
}

.cinema-card:hover {
  border-color: var(--border-gold);
}

.cinema-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cinema-card-head h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
}

.cinema-quality {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cinema-player {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.cinema-player video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.vault-ribbon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 12px;
}

.vault-ribbon-header h3 {
  font-size: 1.5rem;
  color: #ffffff;
}

.vault-ribbon-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.vault-nav-buttons {
  display: flex;
  gap: 10px;
}

/* Photo Carousel */
.photo-carousel-track {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 22px;
  cursor: grab;
}

.photo-carousel-track::-webkit-scrollbar {
  height: 6px;
}
.photo-carousel-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.photo-carousel-inner {
  display: inline-flex;
  gap: 1.1rem;
}

.carousel-photo-card {
  position: relative;
  width: 230px;
  height: 165px;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid var(--border-subtle);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-photo-card:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
}

.photo-card-img-wrap {
  width: 100%;
  height: 100%;
}

.photo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(4, 10, 20, 0.88);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.74rem;
  color: #ffffff;
  font-weight: 700;
  z-index: 2;
}

.photo-card-expand {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 20, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.carousel-photo-card:hover .photo-card-expand {
  opacity: 1;
}

/* ============================================================
   VENDOR MARKET & SHOPPING
   ============================================================ */
.vendors-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-bottom: 3.8rem;
}

.vendor-display-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 22px;
  padding: 2rem 1.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vendor-display-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 20px rgba(251, 191, 36, 0.2);
}

.vendor-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.v-svg {
  width: 28px;
  height: 28px;
}

.vendor-display-card:hover .vendor-icon-badge {
  transform: scale(1.12) rotate(4deg);
}

.icon-amber {
  background: rgba(245, 158, 11, 0.2);
  border: 1.5px solid var(--amber);
  color: var(--amber);
}

.icon-teal {
  background: rgba(56, 189, 248, 0.2);
  border: 1.5px solid var(--purple);
  color: var(--purple);
}

.icon-gold {
  background: rgba(251, 191, 36, 0.2);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.icon-cyan {
  background: rgba(56, 189, 248, 0.2);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
}

.vendor-display-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.vendor-category {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
}

.vendor-display-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.vendor-application-banner {
  background: linear-gradient(135deg, rgba(14, 31, 56, 0.96), rgba(4, 10, 20, 0.98));
  border: 2px solid var(--border-gold);
  border-radius: 26px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(251, 191, 36, 0.25);
}

.banner-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-badge {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.banner-inner h3 {
  font-size: clamp(2rem, 4.8vw, 3rem);
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.banner-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.banner-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2.4rem;
}

.banner-perks span {
  background: rgba(10, 23, 44, 0.9);
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* ============================================================
   SCHEDULE TIMELINE
   ============================================================ */
.schedule-timeline-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.schedule-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.6rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.4rem 1.8rem;
  align-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.schedule-card:hover {
  transform: translateX(8px);
  border-color: var(--border-cyan);
}

.schedule-featured {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(14, 31, 56, 0.98));
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.25);
}

.schedule-time-badge {
  background: rgba(10, 23, 44, 0.95);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
}

.badge-glow {
  background: rgba(251, 191, 36, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.schedule-info h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.schedule-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ============================================================
   HOLOGRAPHIC SHIMMER & VINTAGE FESTIVAL TICKET
   ============================================================ */
.ticket-ticket-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.vintage-festival-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 180px 24px 1fr;
  background: linear-gradient(145deg, rgba(14, 31, 56, 0.97), rgba(6, 14, 26, 0.98));
  border: 2px solid var(--gold);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(251, 191, 36, 0.25);
}

.holo-glare-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.18) 0%,
    rgba(251, 191, 36, 0.12) 25%,
    rgba(56, 189, 248, 0.1) 50%,
    transparent 75%
  );
  mix-blend-mode: color-dodge;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  z-index: 10;
}

/* Left Stub */
.ticket-stub-left {
  background: rgba(8, 18, 34, 0.95);
  padding: 2.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.stub-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.stub-date-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.stub-month {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}

.stub-day {
  font-size: 3.4rem;
  color: var(--gold);
  margin: 4px 0;
}

.stub-year {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 700;
}

.stub-barcode {
  display: flex;
  gap: 3px;
  height: 38px;
  align-items: center;
}

.b-line {
  width: 2px;
  height: 100%;
  background: #ffffff;
}

.b-line.wide {
  width: 4px;
}

.stub-serial {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Perforation */
.ticket-perforation-line {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  z-index: 2;
}

.perf-hole {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--gold);
}

.perf-hole.hole-top { margin-top: -24px; }
.perf-hole.hole-bottom { margin-bottom: -24px; }

.perf-dash {
  width: 2px;
  height: 80%;
  background: repeating-linear-gradient(to bottom, var(--border-gold), var(--border-gold) 6px, transparent 6px, transparent 12px);
}

/* Ticket Right Body */
.ticket-body-right {
  padding: 2.6rem 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.pass-type-badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.ticket-body-header h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.ticket-body-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ticket-price-ribbon {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(6, 14, 26, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1rem 1.6rem;
}

.price-block .price-amount {
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.price-block .price-unit {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 700;
}

.price-free .price-amount {
  color: var(--green);
}

.price-free .price-unit {
  color: var(--green);
}

.price-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.ticket-perks-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.ticket-perks-checklist span {
  font-size: 0.92rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-perks-checklist span::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
}

.ticket-purchase-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 0.5rem;
}

.pass-assurance-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   TACTICAL GROUNDS RADAR & TRANSIT MAP
   ============================================================ */
.transit-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.8rem;
}

.transit-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transit-highlight {
  border-color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.2);
}

.transit-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.transit-gold {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.t-svg {
  width: 24px;
  height: 24px;
}

.transit-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.transit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Tactical Grounds Radar Box */
.grounds-radar-box {
  background: linear-gradient(145deg, rgba(14, 31, 56, 0.96), rgba(4, 10, 20, 0.98));
  border: 2px solid var(--border-gold);
  border-radius: 24px;
  padding: 2.4rem;
  margin-bottom: 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.radar-header {
  margin-bottom: 1.8rem;
}

.radar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.radar-header h3 {
  font-size: 1.8rem;
  color: #ffffff;
}

.radar-beacons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.radar-beacon-item {
  background: rgba(10, 23, 44, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.radar-beacon-item:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
}

.beacon-number {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.88rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radar-beacon-item strong {
  font-size: 0.98rem;
  color: #ffffff;
  display: block;
  margin-bottom: 2px;
}

.radar-beacon-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.map-showcase-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--border-subtle);
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.map-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  background: rgba(10, 23, 44, 0.96);
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

.map-address-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  color: #ffffff;
}

.beacon-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7b00;
  box-shadow: 0 0 10px #ff7b00;
  animation: beaconPulse 1.5s infinite;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-search-wrapper {
  margin-top: 1.8rem;
}

.faq-search-input {
  width: 100%;
  max-width: 580px;
  background: rgba(14, 31, 56, 0.9);
  border: 1.5px solid var(--border-gold);
  border-radius: 30px;
  padding: 12px 24px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.faq-accordion-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.faq-question {
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.faq-question h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #030812;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsor-container {
  max-width: 880px;
  text-align: center;
}

.sponsor-brand-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: 24px;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  text-align: left;
  margin-top: 1.2rem;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.sponsor-kemah-seal {
  flex-shrink: 0;
  filter: drop-shadow(0 6px 20px rgba(251, 191, 36, 0.4));
}

.sponsor-brand-text h3 {
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.sponsor-brand-text p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #02050a;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
}

.footer-producer-card {
  background: linear-gradient(135deg, rgba(14, 31, 56, 0.95), rgba(4, 10, 20, 0.98));
  border: 1.5px solid var(--border-cyan);
  border-radius: 24px;
  padding: 2.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.8rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
}

.producer-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--cyan);
  display: block;
  margin-bottom: 4px;
}

.producer-info h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.producer-info p {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 620px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.8rem;
  margin-bottom: 3.8rem;
}

.footer-col-brand .footer-logo {
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  margin-bottom: 0.9rem;
}

.footer-col-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-col h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.3rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-legal-bar a {
  color: var(--gold);
}

.footer-meta {
  margin-top: 4px;
  font-size: 0.82rem;
}

/* ============================================================
   MODALS (LIGHTBOX & TICKET CHECKOUT)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(2, 5, 10, 0.97);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-dialog {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-btn-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(14, 31, 56, 0.9);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-view-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-view-box img {
  max-width: 88vw;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1.5px solid var(--border-subtle);
  box-shadow: 0 25px 65px rgba(0,0,0,0.98);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 18, 34, 0.92);
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.8);
}

#lightbox-prev-btn { left: -26px; }
#lightbox-next-btn { right: -26px; }

.lightbox-footer {
  margin-top: 14px;
  text-align: center;
}

.lightbox-footer p {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
}

.lightbox-footer span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Checkout Card */
.modal-content-card {
  position: relative;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-gold);
  border-radius: 24px;
  padding: 2.6rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(251, 191, 36, 0.25);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.9rem;
  cursor: pointer;
}

.modal-content-card h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 5px;
}

.form-row input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(3, 8, 18, 0.9);
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
}

.modal-total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1.2rem;
  color: #ffffff;
}

.modal-total-box strong {
  font-size: 1.8rem;
  color: var(--gold);
}

.modal-success-box {
  text-align: center;
  padding: 1.6rem 0;
}

.modal-success-box h4 {
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (TABLETS & PHONES)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-keynote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large {
    grid-column: span 2;
  }
  .radar-beacons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .transit-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }
  .vintage-festival-ticket {
    grid-template-columns: 1fr;
  }
  .ticket-stub-left {
    border-right: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    flex-direction: row;
    justify-content: space-around;
  }
  .ticket-perforation-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .section {
    padding: 4.2rem 0;
  }
  .hero-editorial {
    padding: 3rem 0 4.2rem;
  }
  .hero-keynote-grid {
    grid-template-columns: 1fr;
  }
  .experience-bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large {
    grid-column: span 1;
  }
  .radar-beacons-grid {
    grid-template-columns: 1fr;
  }
  .ticket-perks-checklist {
    grid-template-columns: 1fr;
  }
  .ticket-price-ribbon {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .price-divider {
    display: none;
  }
  .sponsor-brand-box {
    flex-direction: column;
    text-align: center;
  }
  .footer-producer-card {
    flex-direction: column;
    text-align: center;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col ul {
    align-items: center;
  }
  
  /* Mobile Navigation Drawer Activation */
  .mobile-menu-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1.5px solid var(--border-gold);
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    padding: 1.6rem;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.85);
  }
  .mobile-menu-drawer.active {
    right: 0;
  }
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  .mobile-drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-drawer-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.9rem;
    cursor: pointer;
  }
  .mobile-drawer-body {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    overflow-y: auto;
  }
  .mobile-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: #cbd5e1;
  }
  .mobile-link.highlight-link {
    color: var(--gold);
    font-weight: 800;
  }
}

@media (max-width: 480px) {
  .transit-guide-grid {
    grid-template-columns: 1fr;
  }
  .schedule-card {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .schedule-time-badge {
    align-self: flex-start;
  }
  .ticket-body-right {
    padding: 1.8rem 1.4rem;
  }
  #lightbox-prev-btn { left: -10px; }
  #lightbox-next-btn { right: -10px; }
}


/* ============================================================
   DEVELOPER VISUAL POLISH: PROGRESS BAR, VINYL, SEALS & NODES
   ============================================================ */

/* 1. Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #ff7b00, #38bdf8);
  z-index: 100001;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(56, 189, 248, 0.6);
  transition: width 0.1s linear;
}

/* 2. Mini Spinning Vinyl Disc */
.mini-vinyl-record {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, #1e293b 25%, #0f172a 60%, #020617 100%);
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  flex-shrink: 0;
}

.vinyl-groove {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.vinyl-center-hole {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 1px solid #000;
}

.audio-playing .mini-vinyl-record {
  animation: spinVinyl 2.4s linear infinite;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 3. Ticket Header Flex & Holographic Gold Seal */
.ticket-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.ticket-gold-seal {
  width: 78px;
  height: 78px;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.4));
  flex-shrink: 0;
  animation: sealGlowPulse 4s infinite alternate ease-in-out;
}

.seal-svg {
  width: 100%;
  height: 100%;
}

@keyframes sealGlowPulse {
  0% { transform: rotate(0deg) scale(0.98); opacity: 0.85; }
  100% { transform: rotate(4deg) scale(1.04); opacity: 1; filter: drop-shadow(0 0 18px rgba(251, 191, 36, 0.7)); }
}

/* 4. Timeline Connected Neon Conduit Line */
.schedule-timeline-container {
  position: relative;
}



.schedule-card {
  position: relative;
  z-index: 2;
}

/* 5. Floating Lantern Back-to-Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 31, 56, 0.95), rgba(7, 16, 30, 0.98));
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(251, 191, 36, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--gold);
  color: #030812;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
}

.lantern-svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  
  .ticket-header-flex {
    flex-direction: column;
  }
}


/* ============================================================
   CUSTOM ARTISAN GRAPHICS, FILIGREE CORNERS & GUILLOCHE TEXTURES
   ============================================================ */

/* 1. Custom Engraved Hero Ribbon */
.hero-custom-ribbon {
  width: 100%;
  max-width: 620px;
  margin: 0.4rem auto 2.2rem;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.9));
  animation: ribbonFloat 4s infinite alternate ease-in-out;
}

.ribbon-banner-svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes ribbonFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

/* 2. Ornate Card Filigree Corners */
.art-framed-card {
  position: relative;
}

.card-filigree-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.card-filigree-corners svg {
  position: absolute;
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.filigree-top-left { top: 12px; left: 12px; }
.filigree-top-right { top: 12px; right: 12px; }
.filigree-bottom-left { bottom: 12px; left: 12px; }
.filigree-bottom-right { bottom: 12px; right: 12px; }

.art-framed-card:hover .card-filigree-corners svg {
  opacity: 1;
  color: #fef08a;
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.6));
}



/* 4. Guilloche Engraved Banknote Texture on Festival Pass */
.vintage-festival-ticket {
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.05) 10%, transparent 10.5%),
    radial-gradient(circle at 0% 0%, rgba(6, 182, 212, 0.04) 15%, transparent 15.5%),
    linear-gradient(145deg, rgba(14, 31, 56, 0.98), rgba(6, 14, 26, 0.99));
  background-size: 24px 24px, 32px 32px, 100% 100%;
}

.ticket-stub-left {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 8px
  );
}

.ticket-body-right {
  border-left: 1px solid rgba(251, 191, 36, 0.2);
}


/* ============================================================
   BESPOKE ILLUSTRATED VECTOR ART STYLING
   ============================================================ */
.bespoke-section-crest {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 0.6rem;
  line-height: 0;
}

.crest-svg {
  width: 100%;
  height: auto;
}

.bespoke-svg {
  width: 24px;
  height: 24px;
  display: block;
}

.vendor-bespoke-art {
  width: 38px;
  height: 38px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.vendor-display-card:hover .vendor-bespoke-art {
  transform: scale(1.15) rotate(-5deg);
}

.transit-bespoke-art {
  width: 32px;
  height: 32px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}


/* ============================================================
   HAUNTED FLASHLIGHT MODE, LURKING EYES & GHOST GLITCH (v59.0)
   ============================================================ */



/* 2. Flashlight Mode Nav Button */
.btn-flashlight-mode {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(14, 31, 56, 0.9);
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
}

.btn-flashlight-mode:hover {
  background: var(--gold);
  color: #030812;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.btn-flashlight-mode.active {
  background: #ff7b00;
  border-color: #ff7b00;
  color: #030812;
  box-shadow: 0 0 25px #ff7b00;
}

.flashlight-icon {
  width: 18px;
  height: 18px;
}

/* 3. Flashlight Dark Maze Overlay */
.flashlight-maze-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}



/* 4. Lurking Creepy Glowing Eyes */
.creepy-eyes-pair {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 1.5rem auto 2.5rem;
  height: 20px;
}

.creepy-eye {
  position: relative;
  width: 22px;
  height: 12px;
  background: #030812;
  border-radius: 50%;
  border: 1.5px solid #ff7b00;
  box-shadow: 0 0 12px #ff7b00, 0 0 20px rgba(245, 158, 11, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: blinkEyes 4.5s infinite ease-in-out;
}

.eye-right {
  animation-delay: 0.15s;
}

.creepy-pupil {
  width: 5px;
  height: 10px;
  background: #fef08a;
  border-radius: 50%;
  box-shadow: 0 0 6px #ffffff;
  transform: translate(calc(var(--pupil-x, 0) * 1px), calc(var(--pupil-y, 0) * 1px));
}

@keyframes blinkEyes {
  0%, 88%, 92%, 100% { transform: scaleY(1); opacity: 0.95; }
  90% { transform: scaleY(0.08); opacity: 0.2; }
}

/* 5. Ghostly Spectral Text Glitch on Hover */
.font-spooky:hover {
  animation: spectralGlitch 0.4s infinite alternate;
}

@keyframes spectralGlitch {
  0% {
    text-shadow: -2px 0 #ef4444, 2px 0 #38bdf8, 0 0 25px rgba(251, 191, 36, 0.8);
    transform: translate(0, 0);
  }
  50% {
    text-shadow: 2px 0 #ef4444, -2px 0 #06b6d4, 0 0 35px rgba(245, 158, 11, 0.9);
    transform: translate(-1px, 1px);
  }
  100% {
    text-shadow: -1px 0 #22c55e, 1px 0 #ef4444, 0 0 20px rgba(251, 191, 36, 0.7);
    transform: translate(1px, -1px);
  }
}


/* ============================================================
   EDITORIAL SCRAPBOOK & NON-BOX LAYOUT STYLING (v60.0)
   ============================================================ */

/* Scrapbook Vintage Tape Graphic */
.scrapbook-tape-strip {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 110px;
  height: 26px;
  background: rgba(254, 240, 138, 0.4);
  border: 1px dashed rgba(251, 191, 36, 0.6);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: none;
}

/* Asymmetrical Dynamic Card Tilts */
.experience-bento-grid .bento-card:nth-child(1) {
  transform: rotate(-0.8deg);
}

.experience-bento-grid .bento-card:nth-child(2) {
  transform: rotate(1.2deg);
}

.experience-bento-grid .bento-card:nth-child(3) {
  transform: rotate(-1.1deg);
}

.experience-bento-grid .bento-card:nth-child(4) {
  transform: rotate(0.9deg);
}

.experience-bento-grid .bento-card:hover {
  transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
  z-index: 10;
}

/* Badge Stamp Overhang */
.bento-stamp {
  transform: translate(8px, -8px) rotate(4deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(251, 191, 36, 0.4);
}


/* ============================================================
   RESPONSIVE LAYOUT AUDIT & VIEWPORT PRECISION FIXES (v61.0)
   ============================================================ */

/* 1. Global Viewport Overflow Protection */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  position: relative;
}

/* 2. Marquee Ticker Overflow Clamp */
.marquee-ticker-container {
  width: 100%;
  max-width: 100vw;
  margin-left: 0;
  box-sizing: border-box;
  transform: rotate(-1deg);
}

/* 3. Hero Custom Ribbon Mobile Scaler */
.hero-custom-ribbon {
  width: 100%;
  max-width: 560px;
  padding: 0 10px;
}

/* 4. Stadium Countdown Responsive Scaling */
.stadium-countdown-tiles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 12px);
  max-width: 100%;
}

.stadium-tile {
  min-width: clamp(58px, 17vw, 82px);
  padding: 8px clamp(6px, 1.5vw, 16px);
}

.stadium-tile .val {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.tile-divider {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
}

/* 5. Mobile & Tablet Bento Card Adjustments */
@media (max-width: 900px) {
  .experience-bento-grid .bento-card {
    transform: none !important;
  }
  .bento-large .bento-media {
    height: 230px;
  }
}

/* 6. Tactical Grounds Radar Grid Precision */
@media (max-width: 1024px) {
  .radar-beacons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .radar-beacons-grid {
    grid-template-columns: 1fr;
  }
}

/* 7. Vintage Pass Mobile Header Layout */
@media (max-width: 768px) {
  .ticket-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .ticket-gold-seal {
    width: 60px;
    height: 60px;
  }
  .price-block .price-amount {
    font-size: 2.2rem;
  }
}

/* 8. Culinary Filter Nav Mobile Wrap */
.culinary-filter-nav {
  gap: 8px;
}

.filter-tab-btn {
  padding: 8px 16px;
  font-size: 0.86rem;
}

/* 9. Hero Audio Deck Architecture - Handled responsively in Priority UX Styling */

/* 10. Nav Actions Mobile Wrap */
@media (max-width: 480px) {
  .nav-actions .btn-flashlight-mode .flashlight-label {
    display: none;
  }
  .nav-actions .btn-flashlight-mode {
    padding: 6px 10px;
  }
  .hero-cta-row .btn {
    width: 100%;
  }
}


/* ============================================================
   FINAL VISUAL PERFECTION & REFINED SPATIAL BALANCE (v64.0)
   ============================================================ */

/* 1. Hero Section Bottom Breathing Room */
.hero-editorial {
  padding-bottom: 4.8rem !important;
}

/* 2. Responsive Tablet Footer 2x2 Grid */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.2rem !important;
  }
  .footer-producer-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 2rem 1.5rem !important;
  }
  .producer-info p {
    margin: 0 auto !important;
  }
}

@media (max-width: 640px) {
  .footer-links-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .footer-col ul {
    align-items: center !important;
  }
}

/* 3. Refined Section Spacing */
.section {
  padding: 5.5rem 0 !important;
}

.editorial-header {
  margin-bottom: 3.2rem !important;
}


/* Prominent Hero Logo Crown */
.hero-logo-crown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.4rem;
}

.hero-logo-frame {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto;
}

.logo-backlight {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.5) 0%, rgba(6, 182, 212, 0.25) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(12px);
  animation: logoGlow 4s infinite alternate ease-in-out;
}

@keyframes logoGlow {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.08); }
}

.hero-logo-emblem {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(251, 191, 36, 0.4);
  background: #061122;
  object-fit: cover;
}


/* ============================================================
   UPGRADED NAVIGATION & PROMINENT LARGE LOGO SUITE (v67.0)
   ============================================================ */

/* 1. Large Navbar Brand & Logo */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 8, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border-subtle);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-avatar-frame {
  position: relative;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.nav-brand-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.45);
  background: #040d1a;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-brand:hover .nav-brand-img {
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.7);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-title {
  font-size: 1.55rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.nav-brand-sub {
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.8px;
}

/* 2. Clean Center Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 700;
  color: #cbd5e1;
  padding: 6px 10px;
  border-radius: 8px;
  position: relative;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
}

/* 3. Large Prominent Hero Mascot Logo */
.hero-logo-frame {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto;
}

.hero-logo-emblem {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 30px rgba(251, 191, 36, 0.5);
  background: #061122;
  object-fit: cover;
}

.logo-backlight {
  position: absolute;
  inset: -14px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.6) 0%, rgba(6, 182, 212, 0.3) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(14px);
  animation: logoGlow 4s infinite alternate ease-in-out;
}

/* 4. Responsive Breakpoint for Smooth Mobile Drawer Transition */
@media (max-width: 1180px) {
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}


/* ============================================================
   ALWAYS-VISIBLE HAUNTED MODE & RESPONSIVE PRECISION (v68.0)
   ============================================================ */

/* 1. Navbar Haunted Button (Always Visible) */
.btn-flashlight-mode {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  background: rgba(14, 31, 56, 0.95);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 7px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
  flex-shrink: 0;
  z-index: 1002;
}

.btn-flashlight-mode:hover {
  background: var(--gold);
  color: #030812;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.btn-flashlight-mode.active {
  background: #ff7b00 !important;
  border-color: #fef08a !important;
  color: #030812 !important;
  box-shadow: 0 0 25px #ff7b00, 0 0 35px rgba(251, 191, 36, 0.8) !important;
}

/* 2. Floating Always-Visible Haunted Mode HUD */
.floating-haunted-hud {
  position: fixed;
  top: 75px;
  right: 20px;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

body.haunted-mode-active .floating-haunted-hud {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-haunted-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff7b00, #dc2626);
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 123, 0, 0.8);
  transition: all 0.2s ease;
}

.floating-haunted-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #ea580c, #b91c1c);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 123, 0, 1);
}

/* 3. Mobile Drawer Haunted Button */
.mobile-haunted-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(251, 191, 36, 0.15);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 12px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  margin-bottom: 0.8rem;
}

/* 4. Complete Responsive Optimization across Breakpoints */
@media (max-width: 600px) {
  .nav-actions {
    gap: 8px;
  }
  .btn-flashlight-mode .flashlight-label {
    display: none;
  }
  .btn-flashlight-mode {
    padding: 7px 10px;
  }
  .nav-brand-img {
    width: 52px !important;
    height: 52px !important;
  }
  .nav-brand-title {
    font-size: 1.25rem !important;
  }
  .floating-haunted-hud {
    top: 65px;
    right: 12px;
  }
  .floating-haunted-btn {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}


/* ============================================================
   PURE LOGO (NO BORDER LINES) & CLEAN NAVIGATION / CTA (v69.0)
   ============================================================ */

/* 1. Navbar Clean Logo (No Circular Lines) */
.nav-brand-img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7)) !important;
  transition: transform 0.25s ease !important;
}

.nav-brand:hover .nav-brand-img {
  transform: scale(1.08) !important;
}

/* 2. Hero Clean Logo (Pure Floating Mascot - No Border Ring) */
.hero-logo-frame {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-emblem {
  position: relative;
  width: 140px !important;
  height: 140px !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.35)) !important;
  transition: transform 0.3s ease;
}

/* Remove all background backlights/rings around logo */
.logo-backlight {
  display: none !important;
}

/* Footer and Drawer Logos (No Borders) */
.footer-logo, .mobile-drawer-brand img {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

/* 3. Clean Navigation Styling */
.navbar {
  background: rgba(3, 8, 18, 0.95) !important;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.25) !important;
}

.nav-container {
  max-width: 1400px !important;
  padding: 0.6rem 2rem !important;
}

.nav-brand-title {
  font-size: 1.5rem !important;
  color: #fbbf24 !important;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.5) !important;
}

.nav-brand-sub {
  font-size: 0.8rem !important;
  color: #38bdf8 !important;
}

/* 4. Clean Countdown & Hero CTAs */
.stadium-tile {
  background: rgba(10, 23, 44, 0.92) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 12px !important;
  padding: 8px clamp(8px, 1.8vw, 16px) !important;
  min-width: clamp(56px, 16vw, 76px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(251, 191, 36, 0.25) !important;
}

.stadium-tile .val {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  display: block;
}

.stadium-tile .lbl {
  font-size: 0.68rem !important;
  color: var(--gold) !important;
  font-weight: 800 !important;
}

.tile-divider {
  font-size: 1.4rem !important;
  color: var(--gold) !important;
  font-weight: 900 !important;
}

.hero-subtitle-bar {
  background: rgba(10, 23, 44, 0.9) !important;
  border: 1px solid var(--border-gold) !important;
  padding: 7px 22px !important;
  border-radius: 30px !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7) !important;
}


/* ============================================================
   CINEMATIC GOTHIC TYPOGRAPHY & ENGRAVED PLAQUE SUITE (v70.0)
   ============================================================ */

/* 1. Cinematic Gothic Headlines */
.font-gothic-master {
  font-family: 'Cinzel Decorative', serif !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

.font-spooky {
  font-family: 'Cinzel Decorative', 'Pirata One', serif !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.font-countdown {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
}

/* 2. Bespoke Engraved Gothic Plaques (Replacing Generic Rounded Pills) */
.gothic-plaque-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(16, 36, 64, 0.94) 0%, rgba(6, 14, 28, 0.98) 100%);
  border: 1.5px solid #fbbf24;
  padding: 8px 24px;
  border-radius: 6px;
  box-shadow: 
    inset 0 0 15px rgba(251, 191, 36, 0.2),
    0 8px 30px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(245, 158, 11, 0.25);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gothic-plaque-pill::before,
.gothic-plaque-pill::after {
  content: '◆';
  font-size: 0.65rem;
  color: #fbbf24;
  opacity: 0.85;
}

.gothic-plaque-pill:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 0 20px rgba(251, 191, 36, 0.35),
    0 12px 35px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(251, 191, 36, 0.5);
}

.partner-plaque {
  border-color: var(--cyan);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
}

.partner-plaque::before,
.partner-plaque::after {
  color: var(--cyan);
}

.details-plaque {
  border-color: var(--gold);
  color: #ffffff;
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.6rem;
}

.plaque-icon {
  font-size: 1rem;
}

/* 3. Sleek & Prestigious Navigation Cleanup */
.navbar {
  padding: 0.5rem 0 !important;
  background: rgba(3, 8, 18, 0.97) !important;
  border-bottom: 1px solid rgba(251, 191, 36, 0.3) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.85) !important;
}

.nav-brand-title {
  font-family: 'Cinzel Decorative', serif !important;
  font-weight: 900 !important;
  font-size: 1.35rem !important;
  color: #fbbf24 !important;
  letter-spacing: 1px !important;
}

.nav-link {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

/* 4. Section Titles Gothic Upgrade */
.editorial-title {
  font-family: 'Cinzel Decorative', serif !important;
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 900 !important;
  letter-spacing: 1.5px !important;
}


/* ============================================================
   PERFECTED GOOGLE FONTS & NAVIGATION SUITE (v71.0)
   ============================================================ */

/* 1. Master Typography Suite */
:root {
  --font-spooky: 'Pirata One', 'Cinzel', serif;
  --font-pirata: 'Pirata One', cursive;
  --font-cinzel: 'Cinzel', serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

.font-pirata-master {
  font-family: 'Pirata One', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  font-size: clamp(2.8rem, 6.8vw, 5.2rem) !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
}

.font-spooky {
  font-family: 'Pirata One', cursive !important;
  letter-spacing: 1.5px !important;
}

.editorial-title {
  font-family: 'Pirata One', cursive !important;
  font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

.nav-brand-title {
  font-family: 'Pirata One', cursive !important;
  font-size: 1.65rem !important;
  letter-spacing: 1.2px !important;
  color: #fbbf24 !important;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.6) !important;
}

/* 2. Pristine Navigation Bar Layout */
.festival-announcement-bar {
  background: linear-gradient(90deg, #050d1a, #0e223d, #050d1a) !important;
  border-bottom: 1px solid rgba(251, 191, 36, 0.3) !important;
  padding: 6px 1rem !important;
  font-size: 0.82rem !important;
}

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(3, 8, 18, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(251, 191, 36, 0.2) !important;
  padding: 0.4rem 0 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8) !important;
}

.nav-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 1.8rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.2rem !important;
  height: 68px !important;
}

.nav-brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.nav-brand-img {
  width: 58px !important;
  height: 58px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8)) !important;
}

.nav-brand-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
}

.nav-brand-sub {
  font-family: var(--font-heading) !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  color: var(--cyan) !important;
  letter-spacing: 0.5px !important;
}

.nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 1.4rem !important;
}

.nav-link {
  font-family: var(--font-heading) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #cbd5e1 !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.nav-link:hover {
  color: #fbbf24 !important;
  background: rgba(251, 191, 36, 0.1) !important;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.btn-flashlight-mode {
  height: 38px !important;
  padding: 0 14px !important;
  font-size: 0.8rem !important;
}

.nav-actions .btn-primary {
  height: 38px !important;
  padding: 0 18px !important;
  font-size: 0.84rem !important;
  white-space: nowrap !important;
}

/* 3. Smooth Responsive Navigation Breakpoint */
@media (max-width: 1200px) {
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}


/* ============================================================
   ICONIC GOOGLE HALLOWEEN CREEPSTER & ZERO-OVERFLOW NAV (v72.0)
   ============================================================ */

/* 1. Global Viewport Overflow Lockdown */
html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: clip !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

/* 2. Iconic Google Halloween Fonts */
:root {
  --font-spooky: 'Creepster', cursive;
  --font-creepster: 'Creepster', cursive;
  --font-jolly: 'Jolly Lodger', cursive;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

.font-creepster-master {
  font-family: 'Creepster', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem) !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  text-shadow: 
    0 0 15px rgba(251, 191, 36, 0.95),
    0 0 30px rgba(245, 158, 11, 0.8),
    0 0 50px rgba(6, 182, 212, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.95) !important;
}

.font-spooky {
  font-family: 'Creepster', cursive !important;
  letter-spacing: 1.5px !important;
}

.editorial-title {
  font-family: 'Creepster', cursive !important;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem) !important;
  letter-spacing: 2px !important;
}

.nav-brand-title {
  font-family: 'Creepster', cursive !important;
  font-size: 1.6rem !important;
  letter-spacing: 1.5px !important;
  color: #fbbf24 !important;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.7) !important;
}

/* 3. Bulletproof Zero-Overflow Navigation */
.festival-announcement-bar {
  width: 100% !important;
  max-width: 100vw !important;
  background: linear-gradient(90deg, #030812, #0b1d38, #030812) !important;
  border-bottom: 1px solid rgba(251, 191, 36, 0.3) !important;
  padding: 6px 12px !important;
  font-size: 0.82rem !important;
  overflow: hidden !important;
}

.announcement-inner {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}

.navbar {
  width: 100% !important;
  max-width: 100vw !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(3, 8, 18, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.25) !important;
  padding: 0.35rem 0 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85) !important;
  overflow: hidden !important;
}

.nav-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  height: 64px !important;
}

.nav-brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.nav-brand-img {
  width: 52px !important;
  height: 52px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8)) !important;
}

.nav-brand-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
}

.nav-brand-sub {
  font-family: var(--font-heading) !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  color: var(--cyan) !important;
  letter-spacing: 0.5px !important;
}

.nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

.nav-link {
  font-family: var(--font-heading) !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #cbd5e1 !important;
  padding: 5px 8px !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.nav-link:hover {
  color: #fbbf24 !important;
  background: rgba(251, 191, 36, 0.12) !important;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

.btn-flashlight-mode {
  height: 36px !important;
  padding: 0 12px !important;
  font-size: 0.78rem !important;
}

.nav-actions .btn-primary {
  height: 36px !important;
  padding: 0 16px !important;
  font-size: 0.82rem !important;
  white-space: nowrap !important;
}

/* 4. Smooth Responsive Transition */
@media (max-width: 1040px) {
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}


/* ============================================================
   OFFICIAL LOGO COLOR PALETTE & BULLETPROOF NAVIGATION (v73.0)
   ============================================================ */

/* 1. Official Mascot Logo Color System */
:root {
  /* Logo Background & Nautical Navy */
  --bg-main: #061122;
  --bg-surface: #0a1b33;
  --bg-card: rgba(10, 27, 51, 0.92);
  --bg-card-hover: rgba(14, 38, 71, 0.96);

  /* Logo Amber, Gold & Sunset Orange */
  --logo-gold: #fbbf24;
  --logo-amber: #f59e0b;
  --logo-orange: #ff7800;
  --logo-honey: #d97706;

  /* Logo Ghost White & Coastal Cyan */
  --logo-cyan: #38bdf8;
  --logo-ice: #bae6fd;
  --logo-white: #f8fafc;

  /* Logo Palm Green & Carnival Coral */
  --logo-green: #22c55e;
  --logo-coral: #ff7800;

  /* Universal Overrides */
  --gold: #fbbf24;
  --amber: #f59e0b;
  --cyan: #38bdf8;
  --border-gold: rgba(251, 191, 36, 0.35);
  --border-cyan: rgba(56, 189, 248, 0.3);
  --border-subtle: rgba(56, 189, 248, 0.15);
}

/* 2. Global Viewport Overflow Fix */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: clip !important;
  background-color: var(--bg-main) !important;
  color: var(--logo-white) !important;
  box-sizing: border-box !important;
}

/* 3. Bulletproof Navbar (Never Cut Off on Any Screen) */
.festival-announcement-bar {
  width: 100% !important;
  background: linear-gradient(90deg, #040d1a, #0c2344, #040d1a) !important;
  border-bottom: 1px solid var(--border-gold) !important;
  padding: 6px 1rem !important;
  font-size: 0.82rem !important;
  box-sizing: border-box !important;
}

.announcement-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  background: rgba(6, 17, 34, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1.5px solid var(--border-gold) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.nav-container {
  max-width: 1220px !important;
  margin: 0 auto !important;
  padding: 0 1.2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 66px !important;
  box-sizing: border-box !important;
  gap: 0.8rem !important;
}

.nav-brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.nav-brand-img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7)) !important;
}

.nav-brand-title {
  font-family: 'Creepster', cursive !important;
  font-size: 1.45rem !important;
  color: var(--logo-gold) !important;
  line-height: 1 !important;
  letter-spacing: 1px !important;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.6) !important;
}

.nav-brand-sub {
  font-family: var(--font-heading) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--logo-cyan) !important;
  letter-spacing: 0.5px !important;
}

.nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 0.9rem !important;
  margin: 0 auto !important;
}

.nav-link {
  font-family: var(--font-heading) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #cbd5e1 !important;
  padding: 6px 8px !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.nav-link:hover {
  color: var(--logo-gold) !important;
  background: rgba(251, 191, 36, 0.12) !important;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

.btn-flashlight-mode {
  height: 36px !important;
  padding: 0 12px !important;
  font-size: 0.78rem !important;
  background: rgba(10, 27, 51, 0.9) !important;
  border: 1px solid var(--logo-gold) !important;
  color: var(--logo-gold) !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
}

.nav-actions .btn-primary {
  height: 36px !important;
  padding: 0 16px !important;
  font-size: 0.82rem !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #fbbf24 0%, #ff7800 100%) !important;
  border: none !important;
  color: #030812 !important;
  box-shadow: 0 4px 15px rgba(255, 120, 0, 0.4) !important;
}

/* Strict Mobile/Tablet Breakpoint (Never Allows Nav Cutoff) */
@media (max-width: 1140px) {
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}

/* 4. Logo Color Theming Across Entire Page */
.btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #ff7800 100%) !important;
  color: #030812 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
  box-shadow: 0 8px 25px rgba(255, 120, 0, 0.7) !important;
  transform: translateY(-2px) !important;
}

.section-tag-gold {
  color: var(--logo-gold) !important;
  background: rgba(251, 191, 36, 0.12) !important;
  border: 1px solid var(--logo-gold) !important;
}

.gothic-plaque-pill {
  background: linear-gradient(180deg, rgba(10, 27, 51, 0.95) 0%, rgba(6, 17, 34, 0.98) 100%) !important;
  border: 1.5px solid var(--logo-gold) !important;
  box-shadow: inset 0 0 15px rgba(251, 191, 36, 0.2), 0 8px 25px rgba(0, 0, 0, 0.8) !important;
}


/* ============================================================
   SMART SLIM STICKY HEADER & AMBIENT INTRO (v74.0)
   ============================================================ */

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  background: rgba(6, 17, 34, 0.94) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1.5px solid var(--border-gold) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7) !important;
}

/* Compact on scroll */
.navbar.navbar-scrolled {
  background: rgba(3, 9, 20, 0.98) !important;
  border-bottom: 1px solid rgba(251, 191, 36, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9) !important;
}

.navbar.navbar-scrolled .nav-container {
  height: 54px !important;
}

.navbar.navbar-scrolled .nav-brand-img {
  width: 40px !important;
  height: 40px !important;
}

.navbar.navbar-scrolled .nav-brand-title {
  font-size: 1.3rem !important;
}

.navbar.navbar-scrolled .nav-brand-sub {
  display: none !important;
}

.navbar.navbar-scrolled .nav-actions .btn-primary,
.navbar.navbar-scrolled .btn-flashlight-mode {
  height: 32px !important;
  font-size: 0.76rem !important;
}

/* Atmospheric Welcome Flash */
.atmospheric-welcome-flash {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(251, 191, 36, 0.35), rgba(6, 182, 212, 0.2), transparent 70%);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  animation: welcomeLightning 1.2s ease-out forwards;
}

@keyframes welcomeLightning {
  0% { opacity: 0; }
  15% { opacity: 0.7; }
  25% { opacity: 0.1; }
  35% { opacity: 0.9; }
  60% { opacity: 0.2; }
  100% { opacity: 0; }
}


/* ============================================================
   PERFECT NAVBAR LOGO PRECISION (v75.0)
   ============================================================ */

.nav-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  padding: 2px 0 !important;
}

.brand-avatar-frame {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  height: 54px !important;
  width: auto !important;
}

.nav-brand-img {
  height: 54px !important;
  width: auto !important;
  max-width: 60px !important;
  object-fit: contain !important;
  display: block !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 8px rgba(251, 191, 36, 0.2)) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-brand:hover .nav-brand-img {
  transform: scale(1.08) !important;
}

.nav-brand-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.nav-brand-title {
  font-family: 'Creepster', cursive !important;
  font-size: 1.55rem !important;
  color: var(--logo-gold) !important;
  letter-spacing: 1px !important;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.6) !important;
  line-height: 1.05 !important;
  margin: 0 !important;
}

.nav-brand-sub {
  font-family: var(--font-heading) !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  color: var(--logo-cyan) !important;
  letter-spacing: 0.6px !important;
  margin-top: 2px !important;
}

/* Scrolled Nav Logo Size */
.navbar.navbar-scrolled .brand-avatar-frame {
  height: 44px !important;
}

.navbar.navbar-scrolled .nav-brand-img {
  height: 44px !important;
}

.navbar.navbar-scrolled .nav-brand-title {
  font-size: 1.35rem !important;
}


/* ============================================================
   MILLION-DOLLAR DESIGNER SUITE & UNIFIED LOGO PALETTE (v76.0)
   ============================================================ */

/* 1. Master Palette Tokens Sourced Directly From Mascot Emblem */
:root {
  --color-abyss: #030813;
  --color-navy-dark: #061122;
  --color-navy-medium: #0c1d36;
  --color-navy-light: #132a4d;
  
  --color-ghost-white: #f8fafc;
  --color-ice-cyan: #38bdf8;
  --color-cyan-glow: rgba(56, 189, 248, 0.4);
  
  --color-gold: #fbbf24;
  --color-amber: #f59e0b;
  --color-sunset-orange: #ff7800;
  --color-gold-glow: rgba(251, 191, 36, 0.45);
  
  --color-palm-green: #22c55e;
  --color-coral: #ff7800;

  /* Universal Overrides */
  --bg-dark: var(--color-abyss);
  --bg-card: rgba(12, 29, 54, 0.88);
  --border-gold: rgba(251, 191, 36, 0.35);
  --border-cyan: rgba(56, 189, 248, 0.3);
}

/* 2. Global Section Lighting & High-End Depth */
.section {
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(12, 29, 54, 0.6) 0%, rgba(3, 8, 19, 0.98) 100%);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

/* 3. High-End Card Glassmorphism & Filigree */
.bento-card, 
.restaurant-card, 
.vendor-display-card, 
.schedule-item-card, 
.faq-item {
  background: linear-gradient(145deg, rgba(12, 29, 54, 0.88) 0%, rgba(6, 17, 34, 0.95) 100%) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.25) !important;
  border-radius: 16px !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.75),
    inset 0 1px 1px rgba(255, 255, 255, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bento-card:hover, 
.restaurant-card:hover, 
.vendor-display-card:hover, 
.schedule-item-card:hover {
  border-color: var(--color-gold) !important;
  transform: translateY(-6px) !important;
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(251, 191, 36, 0.35),
    inset 0 0 15px rgba(56, 189, 248, 0.15) !important;
}

/* 4. Restaurant Cards Brand Identity */
.restaurant-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.restaurant-badge-top {
  background: rgba(3, 8, 19, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.restaurant-cuisine-tag {
  color: var(--color-ice-cyan);
  font-weight: 700;
  font-size: 0.8rem;
}

/* 5. Holographic Ticket Pass Perfection */
.ticket-hologram-card {
  background: linear-gradient(135deg, rgba(14, 38, 71, 0.95) 0%, rgba(6, 17, 34, 0.98) 100%) !important;
  border: 2px solid var(--color-gold) !important;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.95),
    0 0 35px rgba(251, 191, 36, 0.4),
    inset 0 0 30px rgba(56, 189, 248, 0.2) !important;
}

.ticket-gold-ribbon {
  background: linear-gradient(90deg, #fbbf24, #ff7800, #fbbf24) !important;
  color: #030813 !important;
  font-weight: 900 !important;
}

/* 6. Section Tags & Badges */
.section-tag-gold {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold) !important;
  background: rgba(251, 191, 36, 0.12) !important;
  border: 1px solid rgba(251, 191, 36, 0.4) !important;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

/* 7. Footer Master Prestige */
.footer-editorial {
  background: linear-gradient(180deg, #061122 0%, #02050c 100%) !important;
  border-top: 2px solid var(--border-gold) !important;
  padding: 4.5rem 0 2rem !important;
}

.footer-brand-title {
  font-family: 'Creepster', cursive !important;
  font-size: 2rem !important;
  color: var(--color-gold) !important;
  letter-spacing: 1.5px !important;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.7) !important;
}





/* ============================================================
   COASTAL TEAL & EMERALD PALM GREEN SUITE (REPLACING PURPLE)
   ============================================================ */

:root {
  --color-teal: #06b6d4;
  --color-teal-dark: #0891b2;
  --color-emerald: #10b981;
  --color-palm: #22c55e;
  --border-teal: rgba(6, 182, 212, 0.35);
}

.icon-teal {
  background: rgba(6, 182, 212, 0.15) !important;
  border-color: #06b6d4 !important;
  color: #06b6d4 !important;
}

.highlight-teal {
  color: #06b6d4 !important;
  text-shadow: 0 0 15px rgba(6, 182, 212, 0.5) !important;
}

.badge-teal {
  background: rgba(6, 182, 212, 0.2) !important;
  border: 1px solid #06b6d4 !important;
  color: #38bdf8 !important;
}


/* ============================================================
   STRICT LOGO PALETTE ENFORCEMENT & BESPOKE ICONS (v77.0)
   ============================================================ */

/* 1. All Icon Badges Strictly Styled in Logo Tones */
.icon-amber, .icon-gold {
  background: rgba(251, 191, 36, 0.15) !important;
  border: 1.5px solid #fbbf24 !important;
  color: #fbbf24 !important;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.25) !important;
}

.icon-teal, .icon-cyan {
  background: rgba(6, 182, 212, 0.15) !important;
  border: 1.5px solid #06b6d4 !important;
  color: #06b6d4 !important;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.25) !important;
}

.icon-green, .icon-emerald {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1.5px solid #10b981 !important;
  color: #10b981 !important;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.25) !important;
}

.icon-orange {
  background: rgba(255, 120, 0, 0.15) !important;
  border: 1.5px solid #ff7800 !important;
  color: #ff7800 !important;
  box-shadow: 0 0 15px rgba(255, 120, 0, 0.25) !important;
}

/* 2. All Links, Accents, and Glowing Text */
.highlight-amber, .highlight-gold {
  color: #fbbf24 !important;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.6) !important;
}

.highlight-teal, .highlight-cyan {
  color: #06b6d4 !important;
  text-shadow: 0 0 15px rgba(6, 182, 212, 0.5) !important;
}

.highlight-orange {
  color: #ff7800 !important;
  text-shadow: 0 0 15px rgba(255, 120, 0, 0.5) !important;
}

/* 3. Filigree SVG Corners in Bento Cards */
.card-filigree-corners svg {
  color: #fbbf24 !important;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5)) !important;
}

/* 4. Timeline Badges */
.schedule-time-badge {
  background: linear-gradient(135deg, #0c213b, #061122) !important;
  border: 1.5px solid #fbbf24 !important;
  color: #fbbf24 !important;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3) !important;
}


/* ============================================================
   VISUAL POLISH SUITE v78 (VENDOR BANNER, TABS & AUDIO WAVE)
   ============================================================ */

/* Vendor Application Banner */
.vendor-apply-banner {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, rgba(12, 33, 59, 0.95) 0%, rgba(6, 17, 34, 0.98) 100%);
  border: 1.5px solid #06b6d4;
  border-radius: 16px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(6, 182, 212, 0.25);
  flex-wrap: wrap;
}

.vendor-apply-content {
  flex: 1;
  min-width: 280px;
}

/* Culinary Category Tabs */
.culinary-filter-btn {
  background: rgba(6, 17, 34, 0.85) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.3) !important;
  color: #cbd5e1 !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 25px !important;
  transition: all 0.25s ease !important;
}

.culinary-filter-btn:hover {
  border-color: #fbbf24 !important;
  color: #fbbf24 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3) !important;
}

.culinary-filter-btn.active {
  background: linear-gradient(135deg, #fbbf24 0%, #ff7800 100%) !important;
  border-color: #ffffff !important;
  color: #030812 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.5) !important;
}

/* Audio Player Pulse */
.audio-deck-card.playing {
  border-color: #06b6d4 !important;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.5), 0 10px 30px rgba(0, 0, 0, 0.9) !important;
}


/* ============================================================
   COSTUME TROPHY RIBBON & CANDLELIGHT HOVER FLICKER (v79.0)
   ============================================================ */

/* 1. Costume Contest Trophy Ribbon */
.costume-trophy-ribbon {
  background: linear-gradient(135deg, rgba(12, 33, 59, 0.95) 0%, rgba(6, 17, 34, 0.98) 100%);
  border: 1.5px solid #fbbf24;
  border-radius: 16px;
  padding: 1.8rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(251, 191, 36, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.trophy-crown-badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid #fbbf24;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 1px;
}

.trophy-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.trophy-cat-card {
  background: rgba(4, 11, 23, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.25s ease;
}

.trophy-cat-card:hover {
  border-color: #fbbf24;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(251, 191, 36, 0.3);
}

.trophy-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.trophy-cat-card strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

.trophy-cat-card small {
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 600;
}

/* 2. Jack-O-Lantern Candlelight Flicker on Card Hover */
@keyframes candleFlickerPulse {
  0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(251, 191, 36, 0.3), inset 0 0 12px rgba(255, 120, 0, 0.2); }
  50% { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 28px rgba(255, 120, 0, 0.5), inset 0 0 18px rgba(251, 191, 36, 0.35); }
  100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 22px rgba(251, 191, 36, 0.35), inset 0 0 14px rgba(255, 120, 0, 0.25); }
}

.bento-card:hover, .restaurant-card:hover {
  animation: candleFlickerPulse 1.8s infinite alternate ease-in-out;
}


/* ============================================================
   FLAWLESS STICKY HEADER SYSTEM (v80.0)
   ============================================================ */

html, body {
  overflow-x: clip !important;
}

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;
  background: rgba(6, 17, 34, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1.5px solid var(--border-gold) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.navbar.navbar-scrolled {
  background: rgba(3, 9, 20, 0.98) !important;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.5) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95) !important;
}

.navbar.navbar-scrolled .nav-container {
  height: 56px !important;
}

.navbar.navbar-scrolled .nav-brand-img {
  height: 44px !important;
}

.navbar.navbar-scrolled .nav-brand-title {
  font-size: 1.35rem !important;
}

.navbar.navbar-scrolled .nav-brand-sub {
  display: none !important;
}


/* ============================================================
   FLAWLESS MOBILE DRAWER & HAMBURGER NAVIGATION (v81.0)
   ============================================================ */

/* 1. Hamburger Menu Toggle Button */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(10, 27, 51, 0.95);
  border: 1.5px solid #fbbf24;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  z-index: 1002;
}

.menu-toggle:hover {
  background: #fbbf24;
  transform: scale(1.05);
}

.menu-toggle:hover span {
  background: #030812;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fbbf24;
  border-radius: 3px;
  transition: all 0.25s ease;
}

/* 2. Mobile Drawer Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 15, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 3. Mobile Slide-Out Drawer */
.mobile-menu-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 320px !important;
  max-width: 86vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: linear-gradient(180deg, #07152b 0%, #030813 100%) !important;
  border-left: 2px solid #fbbf24 !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95), 0 0 25px rgba(251, 191, 36, 0.2) !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
}

.mobile-menu-drawer.active {
  transform: translateX(0) !important;
}

/* 4. Drawer Header */
.mobile-drawer-header {
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.25);
  background: rgba(4, 11, 23, 0.95);
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

.mobile-drawer-close {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid #fbbf24;
  color: #fbbf24;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: #fbbf24;
  color: #030812;
  transform: rotate(90deg);
}

/* 5. Drawer Body & Touch Links */
.mobile-drawer-body {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.mobile-link {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  color: #f8fafc;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  background: rgba(10, 27, 51, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.15);
  transition: all 0.2s ease;
}

.mobile-link:hover, .mobile-link:active {
  background: rgba(251, 191, 36, 0.18);
  border-color: #fbbf24;
  color: #fbbf24;
  transform: translateX(4px);
}

.mobile-link.highlight-link {
  background: linear-gradient(135deg, #fbbf24 0%, #ff7800 100%);
  color: #030812 !important;
  font-weight: 800;
  margin: 8px 0;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 120, 0, 0.5);
}

.mobile-drawer-footer {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
}

.mobile-drawer-footer a {
  color: #38bdf8;
  font-weight: 700;
}

/* 6. Display Hamburger on Breakpoint */
@media (max-width: 1140px) {
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}


/* ============================================================
   BULLETPROOF SCROLL & MOBILE DRAWER ENGINE (v82.0)
   ============================================================ */

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body.drawer-open {
  overflow: hidden !important;
}

/* Remove any full-screen click-blocking overlays */
.atmospheric-welcome-flash {
  display: none !important;
}


.background-canvas-container,
#atmosphere-canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: -1 !important;
}


/* Sticky Navbar */
.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  background: rgba(6, 17, 34, 0.96) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1.5px solid var(--border-gold) !important;
}

/* Mobile Drawer */
.mobile-nav-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(2, 6, 15, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 99998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.mobile-nav-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-menu-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 320px !important;
  max-width: 86vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #061122 !important;
  border-left: 2px solid #fbbf24 !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95) !important;
}

.mobile-menu-drawer.active {
  transform: translateX(0) !important;
}

@media (max-width: 1140px) {
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}


/* ============================================================
   CANVAS STACKING FIX (CONTENT 100% VISIBLE)
   ============================================================ */

.background-canvas-container,
#atmosphere-canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

main, #main-content, section, .hero-editorial, footer, .navbar, .festival-announcement-bar {
  position: relative !important;
  z-index: 1 !important;
}

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}


/* ============================================================
   DEFINITIVE STACKING ORDER: NAVBAR & HERO HIERARCHY (v83.0)
   ============================================================ */

/* Canvas strictly in background */
#spooky-atmosphere-canvas,
#atmosphere-canvas,
.background-canvas-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* Base content sections */
main, #main-content, section, .hero-editorial, .section {
  position: relative !important;
  z-index: 1 !important;
}

.hero-bg-media, .hero-bg-img, .hero-fog-overlay, .hero-bg-gradient {
  z-index: 0 !important;
}

.hero-container, .hero-masthead {
  position: relative !important;
  z-index: 2 !important;
}

/* Announcement Header & Sticky Navbar Always on Top */
.festival-announcement-bar {
  position: relative !important;
  z-index: 10001 !important;
}

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
  background: rgba(6, 17, 34, 0.97) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9) !important;
}

/* Mobile Drawer Above Everything */
.mobile-nav-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999998 !important;
}

.mobile-menu-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 999999 !important;
}


/* ============================================================
   LUXURY MOBILE NAVIGATION & TOUCH-OPTIMIZED DRAWER (v85.0)
   Designed by Seismic Rave
   ============================================================ */

/* 1. Global Viewport & Stacking Bounds */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: #030812;
  color: #cbd5e1;
}

body.drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Background Atmosphere Canvas Strictly at z-index -1 */
#spooky-atmosphere-canvas,
#atmosphere-canvas,
.background-canvas-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* Content Sections */
main, #main-content, section, .hero-editorial, .section, footer {
  position: relative;
  z-index: 1;
}

/* 2. Top Announcement Bar */
.festival-announcement-bar {
  background: linear-gradient(90deg, #050e1c 0%, #0d223f 50%, #050e1c 100%);
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.35);
  padding: 8px 1rem;
  font-size: 0.86rem;
  color: #e2e8f0;
  position: relative;
  z-index: 10001;
}

/* 3. Sticky Master Navbar */
.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
  width: 100% !important;
  background: rgba(4, 11, 23, 0.94) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.35) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85) !important;
  transition: all 0.25s ease !important;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.2rem;
  height: 70px;
  transition: height 0.25s ease;
}

.navbar.navbar-scrolled .nav-container {
  height: 56px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
  transition: transform 0.2s ease;
}

.nav-brand:hover .nav-brand-img {
  transform: scale(1.06) rotate(-2deg);
}

.nav-brand-title {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 1px;
}

.nav-brand-sub {
  font-size: 0.72rem;
  color: #38bdf8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fbbf24;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 4. Hamburger Menu Button */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(10, 27, 51, 0.85);
  border: 1.5px solid #fbbf24;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 10px rgba(251, 191, 36, 0.2);
}

.menu-toggle:hover, .menu-toggle:active {
  background: #fbbf24;
  transform: scale(1.05);
}

.menu-toggle:hover span, .menu-toggle:active span {
  background: #030812;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fbbf24;
  border-radius: 3px;
  transition: all 0.25s ease;
}

/* 5. Mobile Slide-Out Drawer & Backdrop */
.mobile-nav-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(2, 6, 15, 0.86) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 999998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.mobile-nav-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-menu-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 330px !important;
  max-width: 88vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: linear-gradient(180deg, #06152b 0%, #030814 100%) !important;
  border-left: 2px solid #fbbf24 !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(251, 191, 36, 0.25) !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box !important;
}

.mobile-menu-drawer.active {
  transform: translateX(0) !important;
}

.mobile-drawer-header {
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.25);
  background: rgba(3, 9, 20, 0.98);
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer-close {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid #fbbf24;
  color: #fbbf24;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: #fbbf24;
  color: #030812;
  transform: rotate(90deg);
}

.mobile-drawer-body {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mobile-haunted-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  background: rgba(56, 189, 248, 0.12);
  border: 1.5px solid #38bdf8;
  border-radius: 12px;
  color: #38bdf8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  margin-bottom: 6px;
  transition: all 0.2s ease;
}

.mobile-haunted-toggle-btn:hover {
  background: #38bdf8;
  color: #030812;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #f8fafc;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  background: rgba(10, 27, 51, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.15);
  transition: all 0.2s ease;
}

.mobile-link:hover, .mobile-link:active {
  background: rgba(251, 191, 36, 0.2);
  border-color: #fbbf24;
  color: #fbbf24;
  transform: translateX(4px);
}

.mobile-link.highlight-link {
  background: linear-gradient(135deg, #fbbf24 0%, #ff7800 100%) !important;
  color: #030812 !important;
  font-weight: 800 !important;
  margin: 6px 0;
  justify-content: center;
  border: none !important;
  box-shadow: 0 4px 20px rgba(255, 120, 0, 0.5);
}

.mobile-drawer-footer {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  background: rgba(3, 9, 20, 0.98);
}

.mobile-drawer-footer a {
  color: #38bdf8;
  font-weight: 700;
}

/* 6. Responsive Breakpoints */
@media (max-width: 1140px) {
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .festival-announcement-bar .announcement-text {
    display: none;
  }
  .festival-announcement-bar .announcement-inner {
    justify-content: space-between;
  }
  .nav-brand-sub {
    display: none;
  }
  .nav-brand-title {
    font-size: 1.3rem;
  }
  .nav-brand-img {
    width: 44px;
    height: 44px;
  }
  .nav-actions .btn-flashlight-mode {
    display: none;
  }
}


/* ============================================================
   PERFECT MOBILE NAVBAR SIZING & HIGHEST Z-INDEX DRAWER (v86.0)
   ============================================================ */

/* 1. Mobile Announcement Bar */
@media (max-width: 768px) {
  .festival-announcement-bar {
    padding: 6px 10px !important;
    font-size: 0.78rem !important;
    text-align: center !important;
  }
  .festival-announcement-bar .announcement-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
  }
  .festival-announcement-bar .announcement-pill {
    padding: 2px 6px !important;
    font-size: 0.7rem !important;
  }
  .festival-announcement-bar .announcement-text {
    display: none !important;
  }
  .festival-announcement-bar .announcement-cta {
    font-size: 0.75rem !important;
    padding: 2px 6px !important;
  }
}

/* 2. Mobile Navbar Layout & Spacing */
@media (max-width: 768px) {
  .navbar {
    background: rgba(3, 9, 20, 0.98) !important;
  }
  .navbar .nav-container {
    height: 60px !important;
    padding: 0 10px !important;
    gap: 8px !important;
  }
  .navbar .nav-brand {
    gap: 8px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }
  .navbar .nav-brand-img {
    width: 38px !important;
    height: 38px !important;
  }
  .navbar .nav-brand-title {
    font-size: 1.25rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
  .navbar .nav-brand-sub {
    font-size: 0.65rem !important;
    white-space: nowrap !important;
  }
  .navbar .btn-flashlight-mode {
    display: none !important;
  }
  .navbar .nav-actions {
    gap: 8px !important;
    flex-shrink: 0 !important;
  }
  .navbar .btn-primary {
    padding: 0.48rem 0.85rem !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
  }
  .navbar .menu-toggle {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
  }
}

/* 3. Mobile Slide-Out Drawer Maximum Stacking Priority */
.mobile-nav-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(2, 6, 15, 0.88) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 2147483646 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.25s ease, visibility 0.25s ease !important;
}

.mobile-nav-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-menu-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 310px !important;
  max-width: 86vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: linear-gradient(180deg, #07152b 0%, #030814 100%) !important;
  border-left: 2px solid #fbbf24 !important;
  z-index: 2147483647 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(251, 191, 36, 0.3) !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box !important;
}

.mobile-menu-drawer.active {
  transform: translateX(0) !important;
}


/* ============================================================
   TOP-LEVEL BODY DRAWER (ABSOLUTE TOPMOST LAYER) (v87.0)
   ============================================================ */

.mobile-nav-backdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(2, 6, 15, 0.88) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 2147483646 !important;
  display: none !important;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav-backdrop.active {
  display: block !important;
  opacity: 1 !important;
}

.mobile-menu-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 320px !important;
  max-width: 86vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: linear-gradient(180deg, #07172e 0%, #030814 100%) !important;
  border-left: 2.5px solid #fbbf24 !important;
  z-index: 2147483647 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -15px 0 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(251, 191, 36, 0.3) !important;
  transform: translateX(100%) !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box !important;
  visibility: hidden;
}

.mobile-menu-drawer.active {
  transform: translateX(0) !important;
  visibility: visible !important;
}

.mobile-drawer-header {
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.25);
  background: rgba(3, 9, 20, 0.98);
}

.mobile-drawer-close {
  background: rgba(251, 191, 36, 0.2) !important;
  border: 1.5px solid #fbbf24 !important;
  color: #fbbf24 !important;
  font-size: 1.8rem !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
}

.mobile-drawer-close:hover, .mobile-drawer-close:active {
  background: #fbbf24 !important;
  color: #030812 !important;
  transform: scale(1.1);
}


/* ============================================================
   FULL-OPEN LUXURY MOBILE DRAWER & CUSTOM ICON SYSTEM (v88.0)
   Designed by Seismic Rave (www.seismicrave.com)
   ============================================================ */

/* Desktop Nav Icons */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #f1f5f9;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-icon {
  font-size: 1.05rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-link:hover .nav-icon {
  transform: scale(1.25) rotate(-6deg);
}

.nav-link:hover {
  color: #fbbf24;
}

/* Full-Open Mobile Portal Drawer */
@media (max-width: 768px) {
  .mobile-menu-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: radial-gradient(circle at top right, #0d223f 0%, #050e1c 60%, #02060f 100%) !important;
    border-left: none !important;
    border-top: 2px solid #fbbf24 !important;
  }

  .mobile-drawer-header {
    padding: 1.4rem 1.6rem !important;
  }

  .mobile-drawer-brand img {
    width: 50px !important;
    height: 50px !important;
  }

  .mobile-drawer-close {
    width: 48px !important;
    height: 48px !important;
    font-size: 2rem !important;
  }

  .mobile-drawer-body {
    padding: 1.4rem 1.6rem !important;
    gap: 10px !important;
  }

  .mobile-link {
    padding: 14px 16px !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    background: rgba(10, 27, 51, 0.75) !important;
    border: 1px solid rgba(56, 189, 248, 0.25) !important;
  }

  .mobile-link:hover, .mobile-link:active {
    background: rgba(251, 191, 36, 0.25) !important;
    border-color: #fbbf24 !important;
    color: #fbbf24 !important;
  }
}


/* ============================================================
   ZERO DOUBLE SCROLLING ENGINE FOR MOBILE DRAWER (v89.0)
   ============================================================ */

html.drawer-open,
body.drawer-open {
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
  overscroll-behavior: none !important;
  touch-action: none !important;
}

.mobile-menu-drawer {
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Compact, ergonomic spacing to prevent long inner scroll */
@media (max-width: 768px) {
  .mobile-drawer-header {
    padding: 1rem 1.2rem !important;
  }
  
  .mobile-drawer-body {
    padding: 0.8rem 1.2rem 1.2rem !important;
    gap: 6px !important;
  }

  .mobile-link {
    padding: 10px 14px !important;
    font-size: 0.96rem !important;
    gap: 10px !important;
  }

  .mobile-haunted-toggle-btn {
    padding: 9px 12px !important;
    font-size: 0.88rem !important;
    margin-bottom: 4px !important;
  }

  .mobile-drawer-footer {
    padding: 0.9rem 1.2rem !important;
    font-size: 0.78rem !important;
  }
}


/* ============================================================
   CUSTOM SPOOKY VECTOR SVGS & SLEEK LUXURY DRAWER (v90.0)
   ============================================================ */

/* Sleek Glowing Gold Custom Scrollbar */
.mobile-menu-drawer::-webkit-scrollbar {
  width: 5px !important;
}

.mobile-menu-drawer::-webkit-scrollbar-track {
  background: rgba(2, 6, 15, 0.7) !important;
}

.mobile-menu-drawer::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fbbf24 0%, #ff7800 100%) !important;
  border-radius: 6px !important;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.6) !important;
}

/* Custom Vector SVG Icon Dynamics */
.drawer-icon-svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.mobile-link:hover .drawer-icon-svg,
.mobile-link:active .drawer-icon-svg {
  transform: scale(1.22) rotate(-6deg);
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
}

.mobile-haunted-toggle-btn:hover .drawer-icon-svg {
  transform: scale(1.2) rotate(12deg);
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.8));
}

/* Spooky Atmospheric Glows on Drawer Rows */
.mobile-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: rgba(6, 17, 34, 0.7) !important;
  border: 1.5px solid rgba(56, 189, 248, 0.18) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.08) !important;
}

.mobile-link:hover {
  background: rgba(251, 191, 36, 0.15) !important;
  border-color: #fbbf24 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(251, 191, 36, 0.3) !important;
}

.mobile-link.highlight-link {
  background: linear-gradient(135deg, #fbbf24 0%, #ff7800 100%) !important;
  color: #030812 !important;
  font-weight: 900 !important;
  border: none !important;
  box-shadow: 0 6px 25px rgba(255, 120, 0, 0.6), 0 0 15px rgba(251, 191, 36, 0.5) !important;
}

.mobile-link.highlight-link .drawer-icon-svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}


/* ============================================================
   PERFECT DESKTOP NAVBAR SPACING & ZERO-OVERFLOW (v91.0)
   ============================================================ */

.navbar .nav-container {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.navbar .nav-brand {
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.navbar .nav-brand-img {
  width: 48px !important;
  height: 48px !important;
}

.navbar .nav-brand-title {
  font-size: 1.4rem !important;
}

.navbar .nav-brand-sub {
  font-size: 0.68rem !important;
}

.navbar .nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-shrink: 1 !important;
}

.navbar .nav-link {
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  padding: 6px 4px !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;
}

.navbar .nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.navbar .btn-flashlight-mode {
  padding: 6px 12px !important;
  font-size: 0.82rem !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
}

.navbar .btn-primary {
  padding: 0.55rem 1.15rem !important;
  font-size: 0.85rem !important;
  border-radius: 10px !important;
  white-space: nowrap !important;
}

/* Switch seamlessly to Mobile Drawer when screen <= 1180px */
@media (max-width: 1180px) {
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}


/* = Master Responsive Navigation Lockdown (Highest Priority) = */
@media screen and (max-width: 1140px) {
  .nav-menu,
  .navbar .nav-menu,
  #nav-links,
  .navbar #nav-links {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .menu-toggle,
  .navbar .menu-toggle,
  #menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1002 !important;
  }

  .navbar .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  .navbar .nav-brand {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }

  .navbar .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }

  .navbar .btn-flashlight-mode {
    display: none !important;
  }
}

@media screen and (min-width: 1141px) {
  .nav-menu,
  .navbar .nav-menu {
    display: flex !important;
  }
  .menu-toggle,
  .navbar .menu-toggle {
    display: none !important;
  }
}


/* ============================================================
   INTERACTIVE HAUNTED FLASHLIGHT ENGINE (v92.0)
   ============================================================ */

/* The Atmospheric Flashlight Vignette */
/* body.haunted-mode-active::after replaced by hardware-accelerated canvas */
  100% { filter: contrast(120%) brightness(105%); }
}

/* Eerie Haunted Glows on Active Elements */
body.haunted-mode-active .hero-headline {
  text-shadow: 
    0 0 15px rgba(34, 197, 94, 0.9),
    0 0 35px rgba(16, 185, 129, 0.8),
    0 0 60px rgba(6, 182, 212, 0.6) !important;
  animation: hauntedGlowPulse 2s infinite alternate ease-in-out !important;
}

@keyframes hauntedGlowPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px #10b981); }
  100% { transform: scale(1.015); filter: drop-shadow(0 0 25px #22c55e); }
}

body.haunted-mode-active .bento-card,
body.haunted-mode-active .restaurant-card,
body.haunted-mode-active .carousel-photo-card {
  border-color: rgba(34, 197, 94, 0.5) !important;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.25) !important;
}

.btn-flashlight-mode.active,
.mobile-haunted-toggle-btn.active {
  background: #22c55e !important;
  color: #030812 !important;
  border-color: #22c55e !important;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.8) !important;
}


/* ============================================================
   LUXURY 3-COLUMN CULINARY CARD GRID & FOOD DYNAMICS (v93.0)
   ============================================================ */

.culinary-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)) !important;
  gap: 2rem !important;
  margin-top: 2.2rem !important;
}

@media (max-width: 820px) {
  .culinary-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.4rem !important;
  }
}

.restaurant-card {
  display: flex !important;
  flex-direction: column !important;
  background: rgba(8, 20, 38, 0.92) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.3) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 100% !important;
}

.restaurant-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: #fbbf24 !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(251, 191, 36, 0.35) !important;
}

.restaurant-media {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  background: #030812 !important;
}

.restaurant-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.restaurant-card:hover .restaurant-media img {
  transform: scale(1.08) !important;
}

.restaurant-badge-top {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(4, 11, 23, 0.9) !important;
  border: 1px solid #fbbf24 !important;
  color: #fbbf24 !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8) !important;
  letter-spacing: 0.4px !important;
}

.restaurant-body {
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  justify-content: space-between !important;
}

.restaurant-body h4 {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 4px !important;
  line-height: 1.2 !important;
}

.restaurant-cuisine-tag {
  color: #38bdf8 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.restaurant-body p {
  color: #cbd5e1 !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
  margin: 0 0 1.2rem !important;
}

.card-action-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 0.9rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: auto !important;
}

.badge-included {
  color: #22c55e !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}


/* ============================================================
   PERSISTENT FLOATING HAUNTED MODE EXIT HUD (v94.0)
   ============================================================ */

.floating-haunted-exit-hud {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  background: rgba(3, 15, 8, 0.95) !important;
  border: 2px solid #22c55e !important;
  color: #ffffff !important;
  padding: 10px 18px !important;
  border-radius: 30px !important;
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  cursor: pointer !important;
  z-index: 2147483645 !important;
  display: none !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(34, 197, 94, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  transition: all 0.25s ease !important;
  animation: hudPulseGlow 2s infinite alternate ease-in-out !important;
}

@keyframes hudPulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(34, 197, 94, 0.4); }
  100% { transform: scale(1.05); box-shadow: 0 0 30px rgba(34, 197, 94, 0.85); }
}

.floating-haunted-exit-hud.visible {
  display: flex !important;
}

.floating-haunted-exit-hud:hover {
  background: #22c55e !important;
  color: #030812 !important;
  transform: scale(1.08) !important;
}

.hud-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.floating-haunted-exit-hud:hover .hud-pulse-dot {
  background: #030812;
}

.hud-key-tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.floating-haunted-exit-hud:hover .hud-key-tag {
  background: rgba(0, 0, 0, 0.25);
  border-color: #030812;
  color: #030812;
}


/* ============================================================
   PERFECT SCHEDULE TIMELINE CARD ARCHITECTURE (v95.0)
   ============================================================ */

.schedule-timeline-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.4rem !important;
  max-width: 920px !important;
  margin: 2.2rem auto 0 !important;
  width: 100% !important;
}

.schedule-item-card {
  display: grid !important;
  grid-template-columns: 130px 1fr !important;
  gap: 1.8rem !important;
  align-items: center !important;
  background: rgba(8, 20, 38, 0.94) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.3) !important;
  border-radius: 20px !important;
  padding: 1.6rem 2rem !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.schedule-item-card:hover {
  transform: translateX(8px) !important;
  border-color: #fbbf24 !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(251, 191, 36, 0.35) !important;
}

.schedule-time-badge {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(255, 120, 0, 0.15)) !important;
  border: 1.5px solid #fbbf24 !important;
  color: #fbbf24 !important;
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  text-align: center !important;
  padding: 0.85rem 1rem !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(251, 191, 36, 0.2) !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.schedule-card-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.schedule-card-content .badge-category {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  width: fit-content !important;
  margin-bottom: 2px !important;
}

.schedule-card-content .badge-gold {
  background: rgba(251, 191, 36, 0.15) !important;
  border: 1px solid #fbbf24 !important;
  color: #fbbf24 !important;
}

.schedule-card-content .badge-teal {
  background: rgba(6, 182, 212, 0.15) !important;
  border: 1px solid #06b6d4 !important;
  color: #38bdf8 !important;
}

.schedule-card-content h4 {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.schedule-card-content p {
  font-size: 0.94rem !important;
  color: #cbd5e1 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

@media (max-width: 680px) {
  .schedule-item-card {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
    padding: 1.4rem !important;
  }
}


/* ============================================================
   HIGH-CONTRAST GOLDEN AUDIO PLAYER & SOUNDWAVE BARS (v96.0)
   ============================================================ */

.audio-deck-card {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: rgba(4, 12, 24, 0.95) !important;
  border: 1.5px solid #fbbf24 !important;
  padding: 6px 16px 6px 8px !important;
  border-radius: 40px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(251, 191, 36, 0.35) !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  backdrop-filter: blur(12px) !important;
}

.audio-deck-card:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 30px rgba(251, 191, 36, 0.6) !important;
}

.deck-main-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.deck-actions-group {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.deck-play-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #fbbf24 0%, #ff7800 100%) !important;
  color: #030812 !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.9) !important;
  transition: transform 0.2s ease !important;
  flex-shrink: 0 !important;
}

.deck-play-btn svg {
  fill: #030812 !important;
  stroke: none !important;
}

.deck-play-btn:hover {
  transform: scale(1.15) !important;
}

.deck-text-group {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
  gap: 2px !important;
}

.deck-single-title {
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  color: #ffffff !important;
  letter-spacing: 0.3px !important;
}

.deck-artist-badge {
  font-size: 0.72rem !important;
  color: #38bdf8 !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
}

.deck-timer {
  font-family: monospace !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  color: #fbbf24 !important;
  background: rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(251, 191, 36, 0.3) !important;
  padding: 3px 8px !important;
  border-radius: 12px !important;
}

/* Animated Equalizer Waves */
.audio-equalizer-bars {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.audio-deck-card.audio-playing .audio-equalizer-bars,
.audio-deck-card.playing .audio-equalizer-bars {
  display: flex !important;
}

.audio-equalizer-bars span {
  width: 3px;
  background: #22c55e;
  border-radius: 2px;
  animation: eqBounce 1s infinite ease-in-out alternate;
}

.audio-equalizer-bars span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.audio-equalizer-bars span:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.audio-equalizer-bars span:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.audio-equalizer-bars span:nth-child(4) { height: 100%; animation-delay: 0.4s; }

@keyframes eqBounce {
  0% { height: 20%; }
  100% { height: 100%; }
}


/* ============================================================
   AUDIO PLAYER MP3 DOWNLOAD BUTTON (v97.0)
   ============================================================ */

.deck-download-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(56, 189, 248, 0.15) !important;
  border: 1px solid #38bdf8 !important;
  color: #38bdf8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  flex-shrink: 0 !important;
  margin-left: 2px !important;
}

.deck-download-btn:hover {
  background: #38bdf8 !important;
  color: #030812 !important;
  transform: scale(1.15) translateY(-2px) !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.8) !important;
}

/* ============================================================
   OFFICIAL MUSIC VIDEO SHOWCASE SECTION (v98.0)
   ============================================================ */

.section-video-showcase {
  padding: 4.5rem 0 3.5rem !important;
  background: radial-gradient(circle at 50% 30%, rgba(14, 31, 56, 0.6) 0%, rgba(3, 8, 18, 0.98) 75%) !important;
  position: relative !important;
}

.video-player-frame-wrapper {
  max-width: 1060px !important;
  margin: 2.2rem auto 0 !important;
  background: rgba(4, 12, 24, 0.96) !important;
  border: 2px solid #fbbf24 !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(251, 191, 36, 0.35) !important;
  backdrop-filter: blur(16px) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.video-player-frame-wrapper:hover {
  border-color: #ff7800 !important;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.95), 0 0 45px rgba(255, 120, 0, 0.5) !important;
}

.video-player-container {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  background: #000000 !important;
  overflow: hidden !important;
}

.video-player-container video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  outline: none !important;
}

.video-meta-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.4rem 2rem !important;
  background: rgba(8, 20, 38, 0.98) !important;
  border-top: 1.5px solid rgba(251, 191, 36, 0.25) !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}

.video-meta-left {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.video-performer-title {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}

.video-subtitle-badge {
  font-size: 0.82rem !important;
  color: #38bdf8 !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
}

.video-meta-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.btn-outline-cyan {
  background: rgba(56, 189, 248, 0.12) !important;
  border: 1.5px solid #06b6d4 !important;
  color: #38bdf8 !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.btn-outline-cyan:hover {
  background: #06b6d4 !important;
  color: #030812 !important;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.7) !important;
}

.deck-watch-video-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(251, 191, 36, 0.15) !important;
  border: 1px solid #fbbf24 !important;
  color: #fbbf24 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.deck-watch-video-btn:hover {
  background: #fbbf24 !important;
  color: #030812 !important;
  transform: scale(1.08) !important;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.8) !important;
}

@media (max-width: 768px) {
  .video-meta-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.2rem 1.4rem !important;
  }
  .video-meta-actions {
    width: 100% !important;
    justify-content: space-between !important;
  }
}

/* ============================================================
   PERFECT HOLOGRAPHIC FESTIVAL TICKET ARCHITECTURE (v99.0)
   ============================================================ */

.ticket-hologram-card {
  max-width: 980px !important;
  margin: 2.5rem auto 0 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  border: 2px solid #fbbf24 !important;
  background: rgba(4, 12, 24, 0.97) !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(251, 191, 36, 0.3) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  backdrop-filter: blur(16px) !important;
}

.ticket-hologram-card:hover {
  border-color: #ff7800 !important;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.95), 0 0 45px rgba(255, 120, 0, 0.5) !important;
}

.ticket-gold-ribbon {
  background: linear-gradient(90deg, #fbbf24 0%, #ff7800 100%) !important;
  color: #030812 !important;
  font-weight: 900 !important;
  font-size: 0.85rem !important;
  padding: 10px 20px !important;
  text-align: center !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.ticket-content-body {
  display: grid !important;
  grid-template-columns: 1fr 290px !important;
  gap: 2.2rem !important;
  padding: 2.5rem 2.8rem !important;
  align-items: center !important;
}

.ticket-left-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  text-align: left !important;
}

.ticket-event-tag {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #38bdf8 !important;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px !important;
  flex-wrap: wrap !important;
}

.ticket-name {
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.ticket-desc {
  color: #cbd5e1 !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  margin: 0 0 1rem !important;
}

.ticket-perks-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px 16px !important;
}

.ticket-perk-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-size: 0.92rem !important;
  color: #f1f5f9 !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.perk-check {
  color: #22c55e !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  flex-shrink: 0 !important;
}

.ticket-right-price {
  background: rgba(3, 9, 20, 0.9) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.35) !important;
  border-radius: 20px !important;
  padding: 2rem 1.6rem !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

.price-bubble {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  line-height: 1 !important;
}

.price-val {
  font-size: 3.4rem !important;
  font-weight: 900 !important;
  color: #fbbf24 !important;
  line-height: 1 !important;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5) !important;
}

.price-lbl {
  font-size: 0.85rem !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-top: 4px !important;
}

.kids-free-tag {
  background: rgba(34, 197, 94, 0.2) !important;
  border: 1px solid #22c55e !important;
  color: #22c55e !important;
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  padding: 4px 14px !important;
  border-radius: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.ticket-right-price .btn-checkout-trigger {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
}

.ticket-serial-barcode {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  margin-top: 6px !important;
  width: 100% !important;
}

.barcode-lines {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  height: 22px !important;
  width: 100% !important;
}

.barcode-lines span {
  display: block !important;
  width: 2px !important;
  height: 100% !important;
  background: #cbd5e1 !important;
}

.barcode-lines span:nth-child(even) {
  width: 3.5px !important;
}

.barcode-lines span:nth-child(3n) {
  width: 1.5px !important;
}

.barcode-text {
  font-family: monospace !important;
  font-size: 0.7rem !important;
  color: #94a3b8 !important;
  letter-spacing: 1px !important;
}

@media (max-width: 860px) {
  .ticket-content-body {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
    padding: 1.8rem 1.4rem !important;
  }
  .ticket-perks-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   INTERACTIVE GOLD & CYAN FAQ ACCORDION SYSTEM (v100.0)
   ============================================================ */

.faq-accordion-container {
  max-width: 880px !important;
  margin: 2.4rem auto 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.faq-item {
  background: rgba(4, 12, 24, 0.96) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.25) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(14px) !important;
}

.faq-item:hover {
  border-color: rgba(251, 191, 36, 0.6) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.8), 0 0 20px rgba(251, 191, 36, 0.2) !important;
}

.faq-item.active {
  border-color: #fbbf24 !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(251, 191, 36, 0.35) !important;
}

.faq-question {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.35rem 1.8rem !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  text-align: left !important;
  cursor: pointer !important;
  outline: none !important;
  font-family: inherit !important;
  gap: 1rem !important;
  margin: 0 !important;
  transition: color 0.2s ease !important;
}

.faq-question:hover {
  color: #fbbf24 !important;
}

.faq-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(251, 191, 36, 0.15) !important;
  border: 1.5px solid #fbbf24 !important;
  color: #fbbf24 !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  line-height: 1 !important;
}

.faq-item.active .faq-icon {
  background: #fbbf24 !important;
  color: #030812 !important;
  transform: rotate(45deg) !important;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.8) !important;
}

.faq-answer {
  display: none !important;
  padding: 0 1.8rem 1.5rem !important;
  font-size: 0.98rem !important;
  color: #cbd5e1 !important;
  line-height: 1.65 !important;
  border-top: 1px solid rgba(251, 191, 36, 0.12) !important;
  padding-top: 1.1rem !important;
}

.faq-item.active .faq-answer {
  display: block !important;
  animation: faqFadeIn 0.3s ease-out forwards !important;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   TACTICAL GROUNDS & LOCATION MAP ARCHITECTURE (v103.0)
   ============================================================ */

.section-location {
  padding: 4.5rem 0 3.5rem !important;
  position: relative !important;
}

.grounds-map-flex {
  display: grid !important;
  grid-template-columns: 1fr 1.15fr !important;
  gap: 2.2rem !important;
  max-width: 1100px !important;
  margin: 2.4rem auto 0 !important;
  align-items: stretch !important;
}

.grounds-info-card {
  background: rgba(4, 12, 24, 0.96) !important;
  border: 2px solid #fbbf24 !important;
  border-radius: 24px !important;
  padding: 2.4rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(251, 191, 36, 0.25) !important;
  backdrop-filter: blur(16px) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.grounds-info-card:hover {
  border-color: #ff7800 !important;
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 120, 0, 0.4) !important;
}

.grounds-info-top {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.location-beacon-row {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.pulse-beacon {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #ff7800 !important;
  box-shadow: 0 0 14px #ff7800 !important;
  animation: beaconGlow 1.5s infinite ease-in-out alternate !important;
}

@keyframes beaconGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 1; filter: drop-shadow(0 0 8px #ff7800); }
}

.beacon-label {
  color: #fbbf24 !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
}

.location-address-title {
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.location-notice-pill {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(251, 191, 36, 0.1) !important;
  border: 1px solid rgba(251, 191, 36, 0.3) !important;
  color: #cbd5e1 !important;
  padding: 8px 14px !important;
  border-radius: 12px !important;
  font-size: 0.86rem !important;
  line-height: 1.4 !important;
  margin: 4px 0 10px !important;
}

.location-features-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.loc-feature-box {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  background: rgba(8, 20, 38, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 1rem 1.2rem !important;
  transition: all 0.2s ease !important;
}

.loc-feature-box:hover {
  border-color: #38bdf8 !important;
  background: rgba(14, 31, 56, 0.95) !important;
}

.loc-feature-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.loc-feature-icon.icon-cyan {
  background: rgba(6, 182, 212, 0.15) !important;
  border: 1px solid #06b6d4 !important;
  color: #38bdf8 !important;
}

.loc-feature-icon.icon-gold {
  background: rgba(251, 191, 36, 0.15) !important;
  border: 1px solid #fbbf24 !important;
  color: #fbbf24 !important;
}

.loc-feature-text strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 0.98rem !important;
  margin-bottom: 2px !important;
}

.loc-feature-text p {
  margin: 0 !important;
  color: #94a3b8 !important;
  font-size: 0.84rem !important;
  line-height: 1.4 !important;
}

.btn-directions-cta {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0.85rem 1.4rem !important;
  font-size: 0.96rem !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  margin-top: 1.2rem !important;
  text-decoration: none !important;
}

.grounds-embed-card {
  border: 2px solid rgba(251, 191, 36, 0.35) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background: #000000 !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(251, 191, 36, 0.2) !important;
  min-height: 420px !important;
  display: flex !important;
  transition: all 0.35s ease !important;
}

.grounds-embed-card:hover {
  border-color: #fbbf24 !important;
}

.grounds-embed-card iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  border: 0 !important;
  display: block !important;
}

@media (max-width: 860px) {
  .grounds-map-flex {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }
  .grounds-embed-card {
    min-height: 340px !important;
  }
  .grounds-embed-card iframe {
    min-height: 340px !important;
  }
}






/* ============================================================
   ZERO-OVERFLOW MASTER NAVIGATION SYSTEM (v107.0)
   ============================================================ */
.navbar {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  z-index: 10000 !important;
  background: rgba(3, 8, 18, 0.94) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1.5px solid rgba(251, 191, 36, 0.28) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85) !important;
  box-sizing: border-box !important;
  overflow-x: clip !important;
}

.navbar .nav-container {
  max-width: 1360px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 clamp(0.75rem, 1.6vw, 1.5rem) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(8px, 1.2vw, 16px) !important;
  height: 68px !important;
  box-sizing: border-box !important;
}

.navbar .nav-brand {
  gap: 8px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.navbar .nav-brand-img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain !important;
}

.navbar .nav-brand-title {
  font-size: clamp(1.15rem, 1.35vw, 1.38rem) !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.navbar .nav-brand-sub {
  font-size: 0.64rem !important;
  color: #38bdf8 !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.navbar .nav-menu {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(4px, 0.75vw, 12px) !important;
  flex-shrink: 1 !important;
  margin: 0 auto !important;
}

.navbar .nav-link {
  font-size: clamp(0.74rem, 0.8vw, 0.84rem) !important;
  font-weight: 700 !important;
  color: #e2e8f0 !important;
  padding: 6px clamp(4px, 0.5vw, 8px) !important;
  letter-spacing: 0.4px !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.navbar .nav-link:hover {
  color: #fbbf24 !important;
  background: rgba(251, 191, 36, 0.12) !important;
}

.navbar .nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: clamp(6px, 0.8vw, 10px) !important;
  flex-shrink: 0 !important;
}

.navbar .btn-flashlight-mode {
  padding: 6px clamp(8px, 1vw, 12px) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
}

.navbar .btn-primary {
  padding: 0.45rem clamp(0.75rem, 1vw, 1.05rem) !important;
  font-size: clamp(0.76rem, 0.82vw, 0.84rem) !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  white-space: nowrap !important;
}

@media (max-width: 1320px) and (min-width: 1181px) {
  .navbar .btn-flashlight-mode .flashlight-label {
    display: none !important;
  }
  .navbar .btn-flashlight-mode {
    padding: 6px 8px !important;
    border-radius: 50% !important;
  }
}

@media (max-width: 1180px) {
  .nav-menu,
  .navbar .nav-menu,
  #nav-links,
  .navbar #nav-links {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
  .menu-toggle,
  .navbar .menu-toggle,
  #menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1002 !important;
  }
  .navbar .btn-flashlight-mode {
    display: none !important;
  }
}

@media (min-width: 1181px) {
  .nav-menu,
  .navbar .nav-menu {
    display: flex !important;
  }
  .menu-toggle,
  .navbar .menu-toggle {
    display: none !important;
  }
}
