/* ============================================================
   VOLTAGE — Miami nightclub (fictional portfolio example)
   Pure black, electric cyan + hot magenta neon.
   No external images: gradients, glows, and inline SVG only.
   ============================================================ */

:root {
  --black: #000000;
  --panel: #0a0a0f;
  --panel-2: #101018;
  --cyan: #00f0ff;
  --magenta: #ff2bd6;
  --white: #f4f6ff;
  --muted: #b9c0d4;
  --line: rgba(0, 240, 255, 0.25);
  --glow-cyan: 0 0 6px rgba(0, 240, 255, 0.9), 0 0 18px rgba(0, 240, 255, 0.55), 0 0 42px rgba(0, 240, 255, 0.3);
  --glow-magenta: 0 0 6px rgba(255, 43, 214, 0.9), 0 0 18px rgba(255, 43, 214, 0.55), 0 0 42px rgba(255, 43, 214, 0.3);
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-wordmark: "Monoton", "Orbitron", system-ui, sans-serif;
  --font-body: "Rajdhani", system-ui, sans-serif;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--cyan);
}

img, svg {
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Accessibility: skip link & focus ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--cyan);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.brand .bolt {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.8));
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-shadow: var(--glow-cyan);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-block;
  padding: 0.35rem 0.15rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.site-nav .nav-cta {
  padding: 0.35rem 1.1rem;
  border: 1px solid var(--magenta);
  border-radius: 999px;
  color: var(--magenta);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  text-shadow: var(--glow-magenta);
  box-shadow: var(--glow-magenta);
}

/* Mobile nav toggle — display:none is unconditional at desktop widths;
   only the mobile media query below (and only once JS has flagged
   html.js) ever shows it. No-JS visitors keep the plain inline link list
   and never see the button. */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 6px rgba(0, 240, 255, 0.8);
}

/* The three neon bars morph into a magenta ✕ while the overlay is open. */
.nav-toggle[aria-expanded="true"] {
  border-color: var(--magenta);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: var(--magenta);
  box-shadow: 0 0 6px rgba(255, 43, 214, 0.8);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: no-preference) {
  .nav-toggle-bar {
    transition: transform 0.25s ease, opacity 0.2s ease,
      background-color 0.2s ease;
  }
}

/* Full-screen neon overlay menu (mobile + JS only). */
@media (max-width: 720px) {
  html.js .nav-toggle {
    display: inline-flex;
  }

  html.js .site-nav {
    position: fixed;
    inset: 0;
    z-index: 40; /* under the sticky header so the toggle stays on top */
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 18% 12%, rgba(0, 240, 255, 0.14), transparent 45%),
      radial-gradient(circle at 82% 88%, rgba(255, 43, 214, 0.14), transparent 45%),
      rgba(0, 0, 5, 0.96);
    visibility: hidden;
    opacity: 0;
  }

  html.js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  html.js .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  html.js .site-nav li {
    opacity: 0;
  }

  html.js .site-nav.is-open li {
    opacity: 1;
  }

  html.js .site-nav a {
    font-size: 1.25rem;
    letter-spacing: 0.3em;
  }

  /* Alternate cyan / magenta neon, sign-style. */
  html.js .site-nav li:nth-child(odd) a {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
  }

  html.js .site-nav li:nth-child(even) a {
    color: var(--magenta);
    text-shadow: var(--glow-magenta);
  }

  html.js .site-nav li:nth-child(even) .nav-cta {
    color: var(--magenta);
  }

  /* Links flicker in like neon tubes striking, staggered. Under reduced
     motion there is no flicker or transition — they appear instantly. */
  @media (prefers-reduced-motion: no-preference) {
    html.js .site-nav {
      transition: opacity 0.2s linear, visibility 0s linear 0.2s;
    }

    html.js .site-nav.is-open {
      transition: opacity 0.2s linear, visibility 0s;
    }

    html.js .site-nav.is-open li {
      animation: nav-flicker 0.55s steps(1, end) both;
    }

    html.js .site-nav.is-open li:nth-child(1) { animation-delay: 0.05s; }
    html.js .site-nav.is-open li:nth-child(2) { animation-delay: 0.12s; }
    html.js .site-nav.is-open li:nth-child(3) { animation-delay: 0.19s; }
    html.js .site-nav.is-open li:nth-child(4) { animation-delay: 0.26s; }
    html.js .site-nav.is-open li:nth-child(5) { animation-delay: 0.33s; }
    html.js .site-nav.is-open li:nth-child(6) { animation-delay: 0.4s; }
  }
}

/* Neon-tube strike: hard opacity steps, no tweening. */
@keyframes nav-flicker {
  0%   { opacity: 0; }
  16%  { opacity: 1; }
  26%  { opacity: 0.25; }
  38%  { opacity: 1; }
  50%  { opacity: 0.4; }
  62%  { opacity: 1; }
  74%  { opacity: 0.7; }
  84%  { opacity: 1; }
  100% { opacity: 1; }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.25rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: var(--glow-cyan);
}

.section-intro {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* Oversized vertical section labels */
.section-label {
  position: absolute;
  top: clamp(4rem, 9vw, 7.5rem);
  right: 0.35rem;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  letter-spacing: 0.35em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 240, 255, 0.28);
  user-select: none;
  pointer-events: none;
}

.section:nth-of-type(odd) .section-label {
  -webkit-text-stroke-color: rgba(255, 43, 214, 0.28);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 6vw, 5rem) clamp(6rem, 12vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 15% 0%, rgba(0, 240, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(255, 43, 214, 0.16), transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--line);
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.hero h1 {
  margin: 0.5rem 0 1.25rem;
  font-size: clamp(3.2rem, 13vw, 10rem);
  line-height: 1;
}

.hero-wordmark {
  font-family: var(--font-wordmark);
  font-weight: 400;
  color: var(--white);
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.85),
    0 0 12px rgba(255, 43, 214, 0.9),
    0 0 32px rgba(255, 43, 214, 0.7),
    0 0 80px rgba(255, 43, 214, 0.45),
    0 0 140px rgba(0, 240, 255, 0.35);
}

.hero-tagline {
  max-width: 56ch;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--white);
}

.hero-facts {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.equalizer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  width: 100%;
  height: clamp(40px, 7vw, 72px);
  color: rgba(0, 240, 255, 0.35);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
}

.btn-primary {
  color: var(--cyan);
  border: 2px solid var(--cyan);
  background: rgba(0, 240, 255, 0.06);
}

.btn-primary:hover {
  color: var(--white);
  text-shadow: var(--glow-cyan);
  box-shadow: var(--glow-cyan), inset 0 0 18px rgba(0, 240, 255, 0.25);
}

.btn-ghost {
  color: var(--magenta);
  border: 2px solid var(--magenta);
  background: rgba(255, 43, 214, 0.06);
}

.btn-ghost:hover {
  color: var(--white);
  text-shadow: var(--glow-magenta);
  box-shadow: var(--glow-magenta), inset 0 0 18px rgba(255, 43, 214, 0.25);
}

/* ---------- Marquee strip ---------- */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.08), rgba(255, 43, 214, 0.08));
  padding: 0.7rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

/* ---------- Events: ticket stubs ---------- */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 1fr));
  gap: 1.75rem;
}

.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
}

.ticket-magenta {
  border-color: rgba(255, 43, 214, 0.3);
}

.ticket-main {
  padding: 1.6rem 1.75rem;
}

.ticket-day {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticket-name {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ticket-cyan .ticket-name {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.ticket-magenta .ticket-name {
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
}

.ticket-genre {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ticket-djs {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.ticket-djs strong {
  color: var(--white);
  font-weight: 700;
}

.ticket-meta {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

/* Perforated stub edge: dashed rule + punched notches */
.ticket-stub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 7.5rem;
  padding: 1.2rem 0.9rem;
  border-left: 2px dashed rgba(244, 246, 255, 0.35);
}

.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  left: -12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--line);
}

.ticket-stub::before {
  top: -12px;
}

.ticket-stub::after {
  bottom: -12px;
}

.stub-admit {
  margin: 0;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.barcode {
  width: 100%;
  height: 2rem;
  color: var(--white);
  opacity: 0.85;
}

.stub-code {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ---------- VIP ---------- */
.vip {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 43, 214, 0.08), transparent 65%),
    var(--black);
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.vip-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.vip-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.vip-card-featured {
  border-color: var(--magenta);
  box-shadow: 0 0 24px rgba(255, 43, 214, 0.25);
}

.vip-card-featured h3 {
  color: var(--magenta);
  text-shadow: 0 0 10px rgba(255, 43, 214, 0.5);
}

.vip-flag {
  position: absolute;
  top: -0.8rem;
  right: 1.25rem;
  margin: 0;
  padding: 0.2rem 0.9rem;
  background: var(--magenta);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
}

.vip-price {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.vip-amount {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.45);
}

.vip-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vip-card li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  color: var(--muted);
}

.vip-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
  clip-path: polygon(60% 0, 10% 55%, 45% 55%, 35% 100%, 95% 40%, 55% 40%);
}

.vip-note {
  margin-top: 2rem;
  max-width: 62ch;
  color: var(--muted);
}

/* ---------- About ---------- */
.about-cols {
  columns: 2 22rem;
  column-gap: 3rem;
  max-width: 70rem;
}

.about-cols p {
  break-inside: avoid;
  color: var(--muted);
  font-size: 1.15rem;
}

.about-cols p:first-of-type {
  color: var(--white);
}

/* ---------- FAQ ---------- */
.faq details {
  max-width: 50rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background: var(--panel);
}

.faq summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--magenta);
  text-shadow: 0 0 8px rgba(255, 43, 214, 0.7);
}

.faq details[open] summary::after {
  content: "\2212"; /* minus sign */
}

.faq summary h3 {
  display: inline;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}

.faq summary:hover h3 {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.faq details p {
  margin: 0;
  padding: 0 1.4rem 1.25rem;
  color: var(--muted);
  font-size: 1.1rem;
}

/* ---------- Hours & location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 2.5rem;
}

.location-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.location-block p {
  color: var(--muted);
}

.big-fact {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white) !important;
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 22rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(244, 246, 255, 0.18);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.hours-list li span:last-child {
  color: var(--cyan);
}

.hours-list li:last-child span:last-child {
  color: var(--muted);
}

.hours-note {
  margin-top: 0.9rem;
  max-width: 22rem;
  font-size: 1rem;
  color: var(--muted);
}

/* ---------- Reserve ---------- */
.reserve {
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0, 240, 255, 0.09), transparent 65%),
    var(--black);
}

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
  max-width: 64rem;
}

.reserve-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.6rem 1.5rem;
  border: 2px solid var(--line);
  border-radius: 1rem;
  text-decoration: none;
  background: var(--panel);
}

.reserve-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.reserve-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.reserve-value {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  overflow-wrap: anywhere;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3rem clamp(1.25rem, 6vw, 5rem) 3.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.3em;
  text-shadow: var(--glow-magenta);
}

.footer-brand .bolt {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--magenta);
  filter: drop-shadow(0 0 6px rgba(255, 43, 214, 0.8));
}

.site-footer p {
  color: var(--muted);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.footer-fine {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* ============================================================
   MOTION — every animation lives behind prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  /* Hover transitions are also motion-gated */
  .btn {
    transition: box-shadow 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
  }

  .reserve-card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  /* Slow neon hue drift on the hero wordmark */
  @keyframes neon-drift {
    0%, 100% {
      text-shadow:
        0 0 7px rgba(255, 255, 255, 0.85),
        0 0 12px rgba(255, 43, 214, 0.9),
        0 0 32px rgba(255, 43, 214, 0.7),
        0 0 80px rgba(255, 43, 214, 0.45),
        0 0 140px rgba(0, 240, 255, 0.35);
    }
    50% {
      text-shadow:
        0 0 7px rgba(255, 255, 255, 0.85),
        0 0 12px rgba(0, 240, 255, 0.9),
        0 0 32px rgba(0, 240, 255, 0.7),
        0 0 80px rgba(0, 240, 255, 0.45),
        0 0 140px rgba(255, 43, 214, 0.35);
    }
  }

  .hero-wordmark {
    animation: neon-drift 7s ease-in-out infinite;
  }

  /* Animated gradient wash behind the hero */
  @keyframes gradient-pan {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--cyan));
    background-size: 200% 100%;
    animation: gradient-pan 6s linear infinite;
  }

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

  .marquee-track {
    animation: marquee-scroll 28s linear infinite;
  }

  /* Equalizer shimmer */
  @keyframes eq-pulse {
    0%, 100% { opacity: 0.35; }
    50%      { opacity: 0.7; }
  }

  .equalizer {
    animation: eq-pulse 2.4s ease-in-out infinite;
  }

  /* Featured VIP card glow breathing */
  @keyframes vip-breathe {
    0%, 100% { box-shadow: 0 0 24px rgba(255, 43, 214, 0.25); }
    50%      { box-shadow: 0 0 40px rgba(255, 43, 214, 0.45); }
  }

  .vip-card-featured {
    animation: vip-breathe 4s ease-in-out infinite;
  }
}

/* ---------- Small screens ---------- */
@media (max-width: 560px) {
  .ticket {
    grid-template-columns: 1fr;
  }

  .ticket-stub {
    width: 100%;
    flex-direction: row;
    border-left: 0;
    border-top: 2px dashed rgba(244, 246, 255, 0.35);
  }

  .ticket-stub::before,
  .ticket-stub::after {
    left: auto;
    top: -12px;
    bottom: auto;
  }

  .ticket-stub::before {
    left: -12px;
  }

  .ticket-stub::after {
    right: -12px;
  }

  .stub-admit {
    writing-mode: horizontal-tb;
  }

  .section-label {
    display: none;
  }
}

/* Social links (fictional .example profiles) */
.social-links { display: flex; gap: 1.2rem; list-style: none; justify-content: center; padding: 0 1.5rem; margin: 1.5rem auto 0; }
.social-links a { display: inline-flex; color: inherit; opacity: 0.85; }
.social-links a:hover, .social-links a:focus-visible { opacity: 1; }
.social-links svg { width: 1.3rem; height: 1.3rem; }


/* Anchor targets clear the sticky header instead of sliding under it */
[id] {
  scroll-margin-top: 82px;
}

/* Neon table tag */
.fab-neon {
  position: fixed;
  right: 1rem;
  bottom: 1.1rem;
  z-index: 65;
  display: none;
  background: rgba(0, 0, 0, 0.85);
  color: #ff2bd1;
  border: 2px solid #ff2bd1;
  border-radius: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  text-shadow: 0 0 8px rgba(255, 43, 209, 0.9);
  box-shadow: 0 0 12px rgba(255, 43, 209, 0.55), inset 0 0 8px rgba(255, 43, 209, 0.3);
}

@media (max-width: 720px) {
  .fab-neon { display: inline-block; }
}
