/* ==========================================================================
   RADIANT APES × GO FERAL — Event Landing Page
   Design System: Dark Theme + Radiant Apes Yellow/Orange + Apple System Font
   ========================================================================== */

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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-hover: #222222;
  /* Primary accent — CTAs, links, active states, borders */
  --neon: #F2600A;
  --neon-dark: #CC4E05;
  --neon-subtle: rgba(242, 96, 10, 0.10);
  --neon-glow: 0 0 20px rgba(242, 96, 10, 0.35);
  /* Secondary accent — tags, badges, highlights, glitch heading */
  --yellow: #FFC700;
  --yellow-dark: #E0AC00;
  --yellow-subtle: rgba(255, 199, 0, 0.12);
  --yellow-glow: 0 0 20px rgba(255, 199, 0, 0.35);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary: #666666;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --danger: #ff4444;
  --success: var(--neon);
  --card-shadow: 0 16px 48px rgba(0,0,0,0.5);
  --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
  --font-display: 'Anton', var(--font-family);
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --max-width: 1200px;
  --nav-height: 64px;
}

/* ── Light Theme Override ────────────────────────────────────────────────── */
html[data-theme="light"] {
  --bg-primary: #fbfbfa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f2f2f0;
  --bg-hover: #eaeae7;
  --neon: #D9500A;
  --neon-dark: #B84208;
  --neon-subtle: rgba(217, 80, 10, 0.08);
  --neon-glow: 0 0 20px rgba(217, 80, 10, 0.18);
  --yellow: #B38600;
  --yellow-dark: #996F00;
  --yellow-subtle: rgba(179, 134, 0, 0.10);
  --yellow-glow: 0 0 20px rgba(179, 134, 0, 0.18);
  --text-primary: #0f0f0f;
  --text-secondary: #55564f;
  --text-tertiary: #8a8b83;
  --border: rgba(0, 0, 0, 0.09);
  --border-hover: rgba(0, 0, 0, 0.18);
  --danger: #d4302a;
  --success: var(--neon);
  --card-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
html[data-theme="light"] .navbar { background: rgba(251,251,250,0.7); }
html[data-theme="light"] .navbar.scrolled { background: rgba(251,251,250,0.96); }
html[data-theme="light"] ::selection { background: var(--neon); color: #fff; }

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

body,
.navbar, .footer, .booking-card, .lightbox {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: var(--font-bold);
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

::selection { background: var(--neon); color: #000; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon); }


/* ── Utility ──────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-6); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border-radius: 12px;
  font-weight: var(--font-semibold); transition: all 0.2s ease; height: 48px; border: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--neon); color: #000; }
.btn-primary:hover { background: var(--neon-dark); box-shadow: var(--neon-glow); }
.btn-outline { background: transparent; color: var(--neon); border: 1px solid var(--neon); }
.btn-outline:hover { background: var(--neon-subtle); }
.btn-full { width: 100%; }


/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.section { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.section-visible { opacity: 1; transform: translateY(0); }
.section-divider { height: 1px; background: var(--border); margin: 0; }


/* ══════════════════════════════════════════════════════════════════════════
   1. NAVBAR
   ══════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height);
  background: rgba(10,10,10,0.6); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border); z-index: 1000;
  transition: background 0.3s ease;
}
.navbar.scrolled { background: rgba(10,10,10,0.95); }

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-6);
}

.nav-brand { display: flex; align-items: center; }
.brand-logo { display: flex; align-items: center; }
.brand-logo-img { height: 30px; width: auto; display: block; }
.logo-dark-src { display: none; }
html[data-theme="dark"] .logo-light-src { display: none; }
html[data-theme="dark"] .logo-dark-src { display: block; }

.nav-links { display: flex; gap: var(--space-8); }
.nav-link {
  font-size: 0.9375rem; font-weight: var(--font-medium); color: var(--text-secondary);
  transition: color 0.2s; position: relative;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link.active { color: var(--neon); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--neon); border-radius: 1px;
}

.nav-right { display: flex; align-items: center; gap: var(--space-4); }

.nav-book-btn {
  display: flex; align-items: center; gap: var(--space-2);
  height: 38px; padding: 0 var(--space-5); border-radius: 10px;
  font-size: 0.875rem; font-weight: var(--font-semibold);
  color: #000; background: var(--neon); transition: all 0.2s;
}
.nav-book-btn:hover { background: var(--neon-dark); box-shadow: var(--neon-glow); }

/* ── Theme Toggle (Apple-style switch) ───────────────────────────────────── */
.theme-toggle {
  position: relative; width: 52px; height: 30px; border-radius: 999px;
  background: var(--bg-tertiary); border: 1px solid var(--border);
  cursor: pointer; flex-shrink: 0; padding: 0; transition: background 0.3s ease, border-color 0.3s ease;
}
.theme-toggle:hover { border-color: var(--border-hover); }
.theme-toggle-knob {
  position: absolute; top: 2px; left: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--text-primary); display: flex; align-items: center; justify-content: center;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
html[data-theme="light"] .theme-toggle-knob { transform: translateX(22px); background: var(--neon); }
.theme-toggle-knob svg { width: 14px; height: 14px; }
.theme-toggle-icon-sun { color: #0a0a0a; display: none; }
.theme-toggle-icon-moon { color: #0a0a0a; display: flex; }
html[data-theme="light"] .theme-toggle-icon-sun { display: flex; color: #fff; }
html[data-theme="light"] .theme-toggle-icon-moon { display: none; }
.mobile-theme-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) 0; margin-top: var(--space-2);
}
.mobile-theme-row span { font-size: 0.9375rem; color: var(--text-secondary); font-weight: var(--font-medium); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 24px; height: 24px; cursor: pointer; padding: 0; z-index: 10;
}
.nav-hamburger span {
  width: 100%; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ── Mobile Menu ──────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--bg-primary); z-index: 950; padding: var(--space-8) var(--space-6);
  display: flex; flex-direction: column; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease; overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-content { display: flex; flex-direction: column; gap: var(--space-4); }
.mobile-menu-link {
  font-size: 1.5rem; font-weight: var(--font-semibold); color: var(--text-primary);
  padding: var(--space-3) 0; border-bottom: 1px solid var(--border); letter-spacing: -0.02em;
}
.mobile-menu-link:hover { color: var(--neon); }
.mobile-menu-divider { height: 1px; background: var(--border); margin: var(--space-4) 0; }
.mobile-book-btn { margin-top: var(--space-4); }


/* ══════════════════════════════════════════════════════════════════════════
   2. HERO BANNER
   ══════════════════════════════════════════════════════════════════════════ */
.hero-gallery { padding-top: calc(var(--nav-height) + var(--space-6)); }

.hero-banner-single {
  position: relative; border-radius: 16px; overflow: hidden;
  max-height: 480px; display: block;
}
.hero-banner-single .gallery-img { width: 100%; max-height: 480px; object-fit: cover; transition: transform 0.6s ease; }
.hero-banner-single:hover .gallery-img { transform: scale(1.02); }


/* ══════════════════════════════════════════════════════════════════════════
   3. CONTENT LAYOUT
   ══════════════════════════════════════════════════════════════════════════ */
.content-wrapper { padding-bottom: var(--space-20); }

.content-layout {
  display: flex; gap: var(--space-10);
  margin-top: var(--space-8);
}
.content-main { flex: 1; min-width: 0; }
.content-sidebar { width: 360px; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════════════════
   4. EVENT HEADER
   ══════════════════════════════════════════════════════════════════════════ */
.event-header { padding-top: var(--space-8); padding-bottom: var(--space-4); }

.event-tags { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4); flex-wrap: wrap; }
.tag {
  font-size: 0.75rem; font-weight: var(--font-semibold); color: var(--yellow);
  padding: var(--space-1) var(--space-3); border: 1px solid rgba(255,199,0,0.35);
  border-radius: 999px; background: var(--yellow-subtle); text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-separator { color: var(--text-tertiary); font-size: 0.875rem; }

.event-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: 3rem; letter-spacing: 0.01em;
  line-height: 1; margin-bottom: var(--space-5);
}
.event-title .title-x { color: var(--neon); }

/* ── Glitch Heading (yellow ⇄ orange color-shift) ────────────────────────── */
.glitch-heading {
  position: relative;
  display: inline-block;
}
.glitch-heading-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(100deg, var(--yellow) 0%, var(--neon) 35%, var(--yellow) 65%, var(--neon) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--yellow);
  animation: heading-color-shift 6s ease-in-out infinite;
}
.glitch-heading-text .title-x {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--neon);
}
.glitch-heading::before,
.glitch-heading::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.glitch-heading::before {
  color: var(--neon);
  animation: heading-glitch-1 7s steps(1) infinite;
  clip-path: inset(0 0 0 0);
}
.glitch-heading::after {
  color: var(--yellow);
  animation: heading-glitch-2 7s steps(1) infinite;
  clip-path: inset(0 0 0 0);
}

@keyframes heading-color-shift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

/* Brief on-brand glitch flicker every ~7s, resting the rest of the time */
@keyframes heading-glitch-1 {
  0%, 94%, 100% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
  94.5% { opacity: 0.85; transform: translate(-3px, 0); clip-path: inset(10% 0 65% 0); }
  95.5% { opacity: 0.85; transform: translate(2px, 0); clip-path: inset(55% 0 15% 0); }
  96.5% { opacity: 0; transform: translate(0, 0); }
}
@keyframes heading-glitch-2 {
  0%, 94%, 100% { opacity: 0; transform: translate(0, 0); clip-path: inset(0 0 0 0); }
  94.5% { opacity: 0.85; transform: translate(3px, 0); clip-path: inset(45% 0 30% 0); }
  95.5% { opacity: 0.85; transform: translate(-2px, 0); clip-path: inset(5% 0 80% 0); }
  96.5% { opacity: 0; transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .glitch-heading-text { animation: none; background-position: 0% 0%; }
  .glitch-heading::before, .glitch-heading::after { animation: none; opacity: 0; }
}

.event-meta { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.meta-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: 0.9375rem; color: var(--text-secondary);
}
.meta-item svg { color: var(--text-tertiary); flex-shrink: 0; }
.meta-price { color: var(--neon); font-weight: var(--font-semibold); }


/* ══════════════════════════════════════════════════════════════════════════
   5. SECTIONS (About, Artist, Video, Tickets, Venue, Terms)
   ══════════════════════════════════════════════════════════════════════════ */
.section-title {
  font-size: 1.25rem; font-weight: var(--font-semibold);
  letter-spacing: -0.01em; margin-bottom: var(--space-5);
}

/* About */
.about-lead {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: 1.5rem; letter-spacing: 0.01em; color: var(--text-primary);
  margin-bottom: var(--space-4);
}
.about-lead .lead-x { color: var(--neon); }
.about-content p {
  color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.65;
  margin-bottom: var(--space-4);
}
.about-content p:last-child { margin-bottom: 0; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
  margin: var(--space-6) 0;
}
.feature-item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4); background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: 12px;
  font-size: 0.875rem; font-weight: var(--font-medium);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-item:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.feature-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--neon); }
.feature-icon svg { width: 20px; height: 20px; }

.about-tagline-banner {
  display: flex; align-items: center; justify-content: center; text-align: center;
  gap: var(--space-2); margin-top: var(--space-6); padding: var(--space-5) var(--space-6);
  background: var(--neon-subtle); border: 1px solid rgba(242,96,10,0.25);
  border-radius: 14px; font-weight: var(--font-semibold); font-size: 1.0625rem;
  color: var(--neon); flex-wrap: wrap;
}

/* Artist / Featuring */
.artist-section { padding: var(--space-8) 0; }
.artist-card {
  display: flex; gap: var(--space-8); align-items: stretch;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.artist-poster-wrap {
  flex-shrink: 0; width: 260px; cursor: pointer; position: relative; overflow: hidden;
  background: var(--bg-tertiary);
}
.artist-poster-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.artist-poster-wrap:hover img { transform: scale(1.04); }
.artist-poster-hint {
  position: absolute; bottom: var(--space-3); left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-1) var(--space-3); border-radius: 999px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.6875rem; font-weight: var(--font-medium);
  white-space: nowrap;
}
.artist-poster-hint svg { width: 12px; height: 12px; }

.artist-info { flex: 1; padding: var(--space-8) var(--space-8) var(--space-8) 0; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.artist-eyebrow { font-size: 0.75rem; font-weight: var(--font-semibold); color: var(--yellow); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-2); }
.artist-name { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 2rem; letter-spacing: 0.01em; margin-bottom: var(--space-3); }
.artist-desc { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.65; margin-bottom: var(--space-5); }
.artist-meta { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.artist-meta .meta-item { font-size: 0.875rem; }

/* Video */
.video-section { padding: var(--space-8) 0; }
.video-gif-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4);
  max-width: 640px; margin: 0 auto;
}
.video-gif-item {
  position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
  background: var(--bg-secondary); border: 1px solid var(--border);
}
.video-gif-item video { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #000; }
.video-gif-play-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15); opacity: 0; transition: opacity 0.2s ease;
}
.video-gif-play-icon::before {
  content: ''; position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,0.55);
}
.video-gif-play-icon svg { position: relative; color: #fff; margin-left: 2px; }
.video-gif-item:hover .video-gif-play-icon,
.video-gif-item:focus-visible .video-gif-play-icon { opacity: 1; }

/* Video Lightbox */
.video-lightbox-box { max-width: 520px; }
.video-lightbox-box video { width: 100%; max-height: 80vh; border-radius: 12px; background: #000; display: block; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
  border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: -52px; }
.lightbox-next { right: -52px; }
@media (max-width: 640px) {
  .lightbox-prev { left: var(--space-2); }
  .lightbox-next { right: var(--space-2); }
}

/* Venue Gallery */
.venue-gallery-section { padding: var(--space-8) 0; }
.venue-gallery-wrap { position: relative; }
.venue-gallery-scroll {
  display: flex; gap: var(--space-4); overflow-x: auto; scroll-behavior: smooth;
  padding-bottom: var(--space-2); -ms-overflow-style: none; scrollbar-width: none;
}
.venue-gallery-scroll::-webkit-scrollbar { display: none; }
.venue-gallery-card {
  flex: 0 0 auto; width: 200px; aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-secondary);
}
.venue-gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.venue-gallery-arrow {
  position: absolute; top: 50%; right: -14px; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg-primary);
  border: 1px solid var(--border); color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--card-shadow); transition: background 0.15s;
}
.venue-gallery-arrow:hover { background: var(--bg-hover); }
@media (max-width: 640px) {
  .venue-gallery-card { width: 150px; }
  .venue-gallery-arrow { display: none; }
}

/* Tickets */
.tickets-overview { padding: var(--space-8) 0; }
.ticket-offer-banner {
  display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4);
  padding: var(--space-3) var(--space-4); background: var(--neon-subtle);
  border: 1px solid rgba(242,96,10,0.25); border-radius: 10px;
  font-size: 0.875rem; color: var(--neon); font-weight: var(--font-medium);
}
.ticket-offer-banner svg { flex-shrink: 0; }

.ticket-card {
  background: var(--bg-secondary); border: 1px solid rgba(242,96,10,0.2);
  border-radius: 14px; padding: var(--space-5); display: flex;
  flex-direction: column; gap: var(--space-3); transition: border-color 0.2s;
}
.ticket-card:hover { border-color: var(--neon); }

.ticket-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-2); }
.ticket-card-name { font-weight: var(--font-semibold); font-size: 1rem; }

.ticket-card-status {
  font-size: 0.6875rem; padding: 3px 8px; border-radius: 999px;
  font-weight: var(--font-semibold); text-transform: uppercase; letter-spacing: 0.03em; white-space: nowrap;
}
.status-available { background: var(--yellow-subtle); color: var(--yellow); }

.ticket-card-note { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.4; }
.ticket-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: var(--space-3); border-top: 1px dashed var(--border); gap: var(--space-4); }
.ticket-card-price-wrap { display: flex; align-items: baseline; gap: var(--space-2); }
.ticket-card-price { font-size: 1.5rem; font-weight: var(--font-bold); }
.ticket-card-price-from { font-size: 0.75rem; color: var(--text-tertiary); }
.ticket-card-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  height: 42px; padding: 0 var(--space-6); border-radius: 10px;
  background: var(--neon); color: #000; font-weight: var(--font-semibold);
  font-size: 0.9375rem; transition: all 0.2s; white-space: nowrap;
}
.ticket-card-cta:hover { background: var(--neon-dark); box-shadow: var(--neon-glow); }

/* Venue */
.venue-section { padding: var(--space-8) 0; }
.venue-info { display: flex; flex-direction: column; gap: var(--space-5); }
.venue-name { font-size: 1.125rem; font-weight: var(--font-semibold); margin-bottom: var(--space-1); }
.venue-address { color: var(--text-secondary); font-size: 0.9375rem; margin-bottom: var(--space-3); line-height: 1.5; }
.venue-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.venue-chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-1) var(--space-3); border-radius: 999px;
  background: var(--bg-tertiary); border: 1px solid var(--border);
  font-size: 0.8125rem; color: var(--text-secondary); font-weight: var(--font-medium);
}
.venue-chip svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--text-tertiary); }

.venue-actions { display: flex; flex-wrap: wrap; gap: var(--space-5); align-items: center; }
.venue-directions, .venue-schedule-btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--neon); font-size: 0.9375rem; font-weight: var(--font-medium);
  background: none; border: none; cursor: pointer;
}
.venue-directions:hover, .venue-schedule-btn:hover { text-decoration: underline; }

.venue-map {
  width: 100%; height: 280px; background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden; position: relative;
}
.venue-map iframe { width: 100%; height: 100%; border: 0; }
.map-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-3);
  color: var(--text-tertiary); font-size: 0.875rem;
}
.map-fallback a { color: var(--neon); }

/* Terms */
.terms-section { padding: var(--space-6) 0; }
.terms-toggle {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: var(--space-3) 0; cursor: pointer; border: none;
  background: none; text-align: left;
}
.terms-toggle .section-title { margin-bottom: 0; }
.terms-chevron { transition: transform 0.3s ease; color: var(--text-secondary); flex-shrink: 0; }
.terms-toggle.expanded .terms-chevron { transform: rotate(180deg); }

.terms-content {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.terms-list { padding: var(--space-4) 0; counter-reset: terms; }
.terms-list li {
  color: var(--text-secondary); font-size: 0.8125rem; line-height: 1.6;
  margin-bottom: var(--space-3); padding-left: var(--space-8);
  position: relative; counter-increment: terms;
}
.terms-list li::before {
  content: counter(terms) "."; position: absolute; left: 0;
  color: var(--text-tertiary); font-weight: var(--font-medium);
  font-size: 0.75rem; min-width: var(--space-6);
}


/* ══════════════════════════════════════════════════════════════════════════
   6. BOOKING CARD (Sidebar)
   ══════════════════════════════════════════════════════════════════════════ */
.booking-card {
  position: sticky; top: calc(var(--nav-height) + var(--space-6));
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}

.booking-offer {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5); background: var(--neon-subtle);
  border-bottom: 1px solid var(--border);
}
.booking-offer span { font-size: 0.8125rem; color: var(--neon); font-weight: var(--font-medium); }

.booking-price-row { padding: var(--space-5) var(--space-5) var(--space-2); }
.booking-price { display: flex; align-items: baseline; gap: var(--space-2); }
.price-label { font-size: 0.875rem; color: var(--text-secondary); }
.price-amount { font-size: 1.75rem; font-weight: var(--font-bold); }
.price-note { font-size: 0.75rem; color: var(--text-tertiary); margin-top: 2px; }

.book-tickets-btn {
  display: flex; align-items: center; justify-content: center;
  width: calc(100% - var(--space-10)); margin: var(--space-4) var(--space-5) var(--space-5);
  height: 48px; border-radius: 12px; background: var(--neon); color: #000;
  font-weight: var(--font-semibold); font-size: 1rem; border: none;
  transition: all 0.2s; cursor: pointer;
}
.book-tickets-btn:hover { background: var(--neon-dark); box-shadow: var(--neon-glow); transform: scale(1.01); }

.booking-info { border-top: 1px solid var(--border); }
.booking-info-item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--border);
  transition: background 0.15s; text-decoration: none;
}
.booking-info-item:last-child { border-bottom: none; }
.booking-info-item:hover { background: var(--bg-hover); }

.info-icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-tertiary); border-radius: 8px; flex-shrink: 0;
  color: var(--text-secondary);
}
.info-text { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.info-primary { font-size: 0.9375rem; font-weight: var(--font-medium); }
.info-secondary { font-size: 0.8125rem; color: var(--text-secondary); }
.info-chevron { color: var(--text-tertiary); flex-shrink: 0; }

.booking-powered {
  padding: var(--space-3) var(--space-5); background: var(--bg-tertiary);
  text-align: center; font-size: 0.75rem; color: var(--text-tertiary);
}
.booking-powered strong { color: var(--text-secondary); }


/* ══════════════════════════════════════════════════════════════════════════
   7. LIGHTBOX (poster / schedule preview)
   ══════════════════════════════════════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: var(--space-6);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-box {
  position: relative; max-width: 480px; width: 100%; max-height: 88vh;
  transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox-overlay.open .lightbox-box { transform: scale(1); }
.lightbox-box img { width: 100%; height: 100%; max-height: 88vh; object-fit: contain; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: -44px; right: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }


/* ══════════════════════════════════════════════════════════════════════════
   8. MOBILE BOTTOM BAR
   ══════════════════════════════════════════════════════════════════════════ */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  height: 72px; background: var(--bg-primary);
  border-top: 1px solid var(--border); z-index: 900;
  padding: 0 var(--space-4);
}
.mobile-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.mobile-bar-price { display: flex; flex-direction: column; }
.mobile-bar-label { font-size: 0.75rem; color: var(--text-secondary); }
.mobile-bar-amount { font-size: 1.25rem; font-weight: var(--font-bold); }
.mobile-bar-btn {
  display: flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 var(--space-8); border-radius: 12px;
  background: var(--neon); color: #000; font-weight: var(--font-semibold);
  font-size: 0.9375rem; border: none; cursor: pointer; transition: all 0.2s;
}
.mobile-bar-btn:hover { background: var(--neon-dark); }


/* ══════════════════════════════════════════════════════════════════════════
   9. FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); padding: var(--space-10) 0 var(--space-8); }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-8); flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: var(--space-3); }
.footer-logo-img { height: 26px; width: auto; }
.footer-tagline { font-size: 0.8125rem; color: var(--text-tertiary); }
.footer-links { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.footer-links a { font-size: 0.875rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; justify-content: space-between; margin-top: var(--space-8);
  padding-top: var(--space-4); border-top: 1px solid var(--border);
  font-size: 0.75rem; color: var(--text-tertiary); flex-wrap: wrap; gap: var(--space-2);
}
.footer-powered strong { color: var(--text-secondary); }


/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .content-layout { gap: var(--space-6); }
  .content-sidebar { width: 320px; }
  .artist-poster-wrap { width: 220px; }
}

/* Tablet / Mobile */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .nav-links { display: none; }
  .nav-book-btn { display: none !important; }
  .nav-hamburger { display: flex; }

  .hero-gallery { padding-top: calc(var(--nav-height) + var(--space-4)); }
  .hero-banner-single { border-radius: 12px; max-height: 280px; }
  .hero-banner-single .gallery-img { max-height: 280px; }

  .event-title { font-size: 2.1rem; }
  .event-meta { flex-direction: column; gap: var(--space-3); }

  .content-layout { flex-direction: column; gap: 0; }
  .content-main { width: 100%; }
  .content-sidebar { width: 100%; display: none; }

  .mobile-bottom-bar { display: block; }
  .content-wrapper { padding-bottom: calc(var(--space-12) + 72px); }

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

  .artist-card { flex-direction: column; }
  .artist-poster-wrap { width: 100%; height: 360px; }
  .artist-info { padding: var(--space-6); }
  .artist-name { font-size: 1.625rem; }

  .video-gif-grid { max-width: 340px; gap: var(--space-2); }

  .ticket-card-footer { flex-direction: column; align-items: stretch; gap: var(--space-3); }
  .ticket-card-cta { width: 100%; }

  .footer-content { flex-direction: column; gap: var(--space-5); }
  .footer-links { flex-wrap: wrap; gap: var(--space-4); }
  .footer-bottom { flex-direction: column; gap: var(--space-2); }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .venue-map { height: 200px; }
  .booking-info-item { padding: var(--space-3) var(--space-4); }
  .event-title { font-size: 1.75rem; }
  .about-lead { font-size: 1.25rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: var(--space-3); font-size: 0.8125rem; }
  .artist-poster-wrap { height: 300px; }
  .about-tagline-banner { font-size: 0.9375rem; padding: var(--space-4); }
}