/* Music Park — neon festival (public) + admin */

:root {
  --bg: #080816;
  --bg-elevated: #0e0e1c;
  --blue: #2ec5ff;
  --purple: #8a2eff;
  --magenta: #ff3ef2;
  --text: #f5f7ff;
  --text-muted: #9aa3c7;
  --shadow: #1b1038;
  --glass: rgba(14, 14, 28, 0.55);
  --glass-border: rgba(46, 197, 255, 0.18);
  --gradient: linear-gradient(120deg, var(--blue), var(--purple) 55%, var(--magenta));
  --radius: 18px;
  --header-h: 128px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --admin-bg: #e8e6ef;
  --admin-surface: #fff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.theme-festival {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Page transitions */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(138, 46, 255, 0.35), transparent 60%),
    linear-gradient(160deg, #050510 0%, #0c0820 45%, #080816 100%);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease), visibility 0.42s;
}
.page-transition-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(46, 197, 255, 0.18) 48%,
    rgba(255, 62, 242, 0.16) 52%,
    transparent 70%
  );
  transform: translateX(-30%);
  opacity: 0.85;
}
html.has-js body.theme-festival.is-page-booting .page-transition {
  opacity: 1;
  visibility: visible;
  transform: none;
}
html.has-js body.theme-festival.is-page-booting .page-transition-shine {
  animation: pageShineIn 0.55s var(--ease) both;
}
html.has-js body.theme-festival.is-page-ready .site-header,
html.has-js body.theme-festival.is-page-ready .site-main,
html.has-js body.theme-festival.is-page-ready .site-footer {
  animation: pageContentIn 0.55s var(--ease) both;
}
html.has-js body.theme-festival.is-page-leaving .page-transition {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
html.has-js body.theme-festival.is-page-leaving .page-transition-shine {
  animation: pageShineOut 0.45s var(--ease) both;
}
html.has-js body.theme-festival.is-page-leaving .site-header,
html.has-js body.theme-festival.is-page-leaving .site-main,
html.has-js body.theme-festival.is-page-leaving .site-footer {
  opacity: 0.35;
  filter: blur(2px);
  transition: opacity 0.35s var(--ease), filter 0.35s var(--ease);
}
@keyframes pageShineIn {
  from { transform: translateX(-40%); opacity: 0.4; }
  to { transform: translateX(10%); opacity: 0.9; }
}
@keyframes pageShineOut {
  from { transform: translateX(10%); }
  to { transform: translateX(45%); }
}
@keyframes pageContentIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-transition { display: none !important; }
  html.has-js body.theme-festival.is-page-ready .site-header,
  html.has-js body.theme-festival.is-page-ready .site-main,
  html.has-js body.theme-festival.is-page-ready .site-footer,
  html.has-js body.theme-festival.is-page-leaving .site-header,
  html.has-js body.theme-festival.is-page-leaving .site-main,
  html.has-js body.theme-festival.is-page-leaving .site-footer {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.theme-festival h1,
.theme-festival h2,
.theme-festival h3,
.theme-festival p,
.theme-festival li,
.theme-festival time,
.theme-festival strong,
.theme-festival label {
  color: inherit;
}

.theme-festival .hero-title {
  color: var(--text);
}

.theme-festival .hero-title-fallback {
  -webkit-text-fill-color: var(--text);
  color: var(--text);
  background: none;
}

.theme-festival .home-world h3,
.theme-festival .feature-title,
.theme-festival .cal-info strong,
.theme-festival .world-card h3 {
  color: var(--text);
}

.theme-festival .site-footer,
.theme-festival .site-footer p,
.theme-festival .footer-col a,
.theme-festival .footer-bottom a,
.theme-festival .footer-social a {
  color: var(--text-muted);
}

.theme-festival .footer-cta-title,
.theme-festival .footer-col h3,
.theme-festival .feature-title,
.theme-festival .cal-info strong,
.theme-festival .world-card h3 {
  color: var(--text);
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.theme-festival a { color: var(--blue); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
.theme-festival a:hover { color: var(--magenta); }

.container { width: min(1120px, 92vw); margin-inline: auto; }
.container-wide { width: min(1280px, 94vw); margin-inline: auto; }
.site-main { position: relative; z-index: 2; min-height: 0; padding-bottom: 2rem; }

/* FX layers */
#fx-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.fx-fog {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(138, 46, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.fx-cursor {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(46, 197, 255, 0.07) 0%, rgba(138, 46, 255, 0.05) 35%, transparent 68%);
  opacity: 0;
  transition: opacity 0.35s;
}
@media (hover: hover) { .fx-cursor { opacity: 1; } }

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(46, 197, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 100%, rgba(255, 62, 242, 0.08), transparent 50%),
    var(--bg);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 22, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px var(--shadow);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header.is-scrolled { background: rgba(8, 8, 22, 0.92); }

.header-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 14px;
  padding: 0 1rem 2px;
  opacity: 0.65;
}
.header-wave span {
  display: block;
  width: 3px;
  height: 4px;
  border-radius: 2px;
  background: var(--blue);
  animation: waveBar 1.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.07s);
}
@keyframes waveBar {
  0%, 100% { height: 4px; opacity: 0.35; }
  50% { height: 12px; opacity: 1; background: var(--magenta); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-h) - 14px);
  width: min(1120px, 92vw);
  margin-inline: auto;
  gap: 1rem;
  padding: 0.65rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--text); flex-shrink: 0; }
.brand-logo {
  display: block;
  width: auto;
  height: 100px;
  max-width: min(420px, 72vw);
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(46, 197, 255, 0.4));
}
.nav-desktop { display: flex; gap: 1.5rem; align-items: center; }
.nav-desktop a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-desktop a.is-active,
.nav-desktop a:hover {
  color: var(--text);
  text-shadow: 0 0 20px rgba(46, 197, 255, 0.4);
}
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.28s var(--ease), opacity 0.2s, top 0.28s var(--ease), background 0.2s;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] {
  border-color: rgba(46, 197, 255, 0.45);
  background: rgba(46, 197, 255, 0.1);
}
.nav-toggle[aria-expanded="true"] span { background: var(--blue); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 12, 0.72);
  backdrop-filter: blur(8px);
}
.mobile-nav-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding:
    calc(var(--header-h) + 1.5rem + env(safe-area-inset-top, 0px))
    1.25rem
    calc(1.5rem + env(safe-area-inset-bottom, 0px));
  background: #0a0a16;
  border-left: 1px solid rgba(46, 197, 255, 0.18);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
  animation: mobileNavIn 0.3s var(--ease);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  overflow-y: auto;
}
.mobile-nav-links a {
  display: block;
  padding: 0.95rem 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-shadow: none;
}
.mobile-nav-links a.is-active {
  color: var(--blue) !important;
}
.mobile-nav-cta {
  display: inline-flex;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.95rem 1.2rem;
}
@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body.is-nav-open {
  overflow: hidden;
}
body.is-nav-open .site-header {
  z-index: 320;
  background: rgba(8, 8, 22, 0.98);
}

/* Glass + buttons */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px var(--shadow);
}
.glass-card-glow {
  background: linear-gradient(145deg, rgba(46, 197, 255, 0.08), rgba(14, 14, 28, 0.65) 40%, rgba(138, 46, 255, 0.06));
  box-shadow:
    0 16px 48px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.72rem; }
.btn-block { width: 100%; }
.btn:hover { transform: translateY(-2px); }

.btn-neon {
  background: var(--gradient);
  color: var(--text);
  text-shadow: 0 1px 12px rgba(8, 8, 22, 0.45);
  box-shadow: 0 0 24px rgba(46, 197, 255, 0.35), 0 0 40px rgba(138, 46, 255, 0.25);
}
.btn-neon:hover { color: #fff; box-shadow: 0 0 32px rgba(255, 62, 242, 0.45); }
.btn-pulse { animation: neonPulse 2.8s ease-in-out infinite; }
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(46, 197, 255, 0.3); }
  50% { box-shadow: 0 0 36px rgba(255, 62, 242, 0.45); }
}

.btn-glass {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.btn-glass:hover { border-color: rgba(255, 62, 242, 0.45); color: #fff; }

/* Type */
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.65rem;
}
.theme-festival .page-title {
  color: var(--text);
}
.hero-title, .page-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 700;
  line-height: 0.98;
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

/* Animated hero title (homepage) — span avoids h1/inherit conflicts */
.page-home .festival-hero .hero-title-shine {
  display: inline-block;
  background-image: linear-gradient(
    90deg,
    #2ec5ff 0%,
    #7ee8ff 12%,
    #8a2eff 32%,
    #ff3ef2 50%,
    #c77dff 68%,
    #2ec5ff 84%,
    #8a2eff 100%
  );
  background-size: 400% 100%;
  background-repeat: repeat;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroTitleFlow 6s linear infinite;
  text-shadow: none;
}

@keyframes heroTitleFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.h3 { font-size: 1rem; font-weight: 600; margin: 0 0 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
.text-muted { color: var(--text-muted); }
.lead { color: var(--text-muted); max-width: 32rem; font-weight: 400; margin: 0 0 1.25rem; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.text-link { font-weight: 600; color: var(--magenta); }
.mt-lg { margin-top: 2rem; }

/* Hero */
.festival-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(88vh, 820px);
  padding: 3rem 0 4rem;
  overflow: hidden;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 40%, transparent 20%, rgba(8, 8, 22, 0.55) 70%, rgba(8, 8, 22, 0.95) 100%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}
.hero-beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.55;
}
.beam {
  position: absolute;
  top: -20%;
  width: 40%;
  height: 140%;
  filter: blur(40px);
  mix-blend-mode: screen;
  animation: beamSway 8s ease-in-out infinite;
}
.beam-a {
  left: 10%;
  background: linear-gradient(180deg, transparent, rgba(46, 197, 255, 0.25), transparent);
  transform: rotate(-18deg);
}
.beam-b {
  left: 40%;
  background: linear-gradient(180deg, transparent, rgba(138, 46, 255, 0.22), transparent);
  animation-delay: -2s;
  transform: rotate(8deg);
}
.beam-c {
  right: 5%;
  background: linear-gradient(180deg, transparent, rgba(255, 62, 242, 0.18), transparent);
  animation-delay: -4s;
  transform: rotate(22deg);
}
@keyframes beamSway {
  0%, 100% { opacity: 0.6; transform: rotate(-18deg) translateX(0); }
  50% { opacity: 1; transform: rotate(-12deg) translateX(20px); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 197, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 46, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
}

.festival-hero-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  z-index: 1;
}
@media (min-width: 960px) {
  .festival-hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.festival-hero-copy .lead {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.festival-hero-logo { position: relative; }
.page-home .festival-hero .logo-halo {
  animation: heroLogoHalo 2.4s ease-in-out infinite;
  transform-origin: center center;
}
.page-home .festival-hero .logo-mark {
  animation: heroLogoPulse 2.4s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes heroLogoHalo {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.28);
  }
}
@keyframes heroLogoPulse {
  0%, 100% {
    transform: scale(0.96);
    filter: drop-shadow(0 0 14px rgba(46, 197, 255, 0.22));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 42px rgba(255, 62, 242, 0.75)) drop-shadow(0 0 72px rgba(46, 197, 255, 0.55));
  }
}
.logo-halo {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(46, 197, 255, 0.2), rgba(138, 46, 255, 0.12) 45%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

.logo-mark {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 0 28px rgba(46, 197, 255, 0.35));
}

/* Home sections — Tomorrowland-inspired rhythm */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.25rem;
}
.section-sub {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  max-width: 28rem;
  font-size: 1rem;
}
.section-head-center .section-sub { max-width: 32rem; }

.home-feature {
  position: relative;
  z-index: 2;
  padding: 1rem 0 3rem;
}
.feature-banner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(120deg, rgba(46, 197, 255, 0.12), rgba(138, 46, 255, 0.1) 45%, rgba(255, 62, 242, 0.08)),
    rgba(14, 14, 28, 0.72);
  color: var(--text) !important;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.feature-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 197, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(138, 46, 255, 0.15);
}
@media (min-width: 800px) {
  .feature-banner {
    grid-template-columns: auto 1fr auto;
    padding: 1.75rem 2rem;
    gap: 2rem;
  }
}
.feature-banner-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(8, 8, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text);
}
.feature-month {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-top: 0.35rem;
}
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.feature-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.feature-excerpt {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  max-width: 36rem;
  font-size: 0.95rem;
}
.feature-cta {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--magenta);
  white-space: nowrap;
}

.home-calendar {
  position: relative;
  z-index: 2;
  padding: 1rem 0 3.5rem;
}
.event-calendar {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cal-row {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text) !important;
  transition: background 0.25s, padding-left 0.25s;
}
.cal-row:hover {
  background: rgba(46, 197, 255, 0.04);
  padding-left: 0.65rem;
}
@media (min-width: 700px) {
  .cal-row { grid-template-columns: 5.5rem 1fr auto; gap: 1.5rem; }
}
.cal-date {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.cal-day {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.cal-month {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--blue);
}
.cal-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.cal-info strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cal-info span {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.cal-tickets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cal-tickets-sep { opacity: 0.45; }
.cal-ticket strong { font-weight: 600; color: var(--text); }
.cal-ticket.is-vip { color: var(--blue); }
.cal-vip-perks {
  display: block;
  margin-top: 0.45rem;
  max-width: 28rem;
}
.cal-tickets--off {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.cal-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
}

.home-world {
  position: relative;
  z-index: 2;
  padding: 2rem 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(138, 46, 255, 0.12), transparent 70%);
}
.world-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .world-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.world-card {
  display: block;
  padding: 1.75rem 1.4rem 1.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 28, 0.45);
  color: var(--text) !important;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  min-height: 11rem;
}
.world-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 197, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.world-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.world-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}
.world-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-cta {
  position: relative;
  z-index: 2;
  padding: 0 0 4rem;
}
.home-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(105deg, rgba(46, 197, 255, 0.14), rgba(138, 46, 255, 0.12) 50%, rgba(255, 62, 242, 0.1));
}
.home-cta .section-title { margin-bottom: 0.25rem; }
.home-cta .section-sub { margin-top: 0.35rem; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  background:
    linear-gradient(180deg, transparent, rgba(8, 8, 22, 0.95) 18%),
    #060612;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(46, 197, 255, 0.1), transparent 65%);
}
.footer-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.footer-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.2rem 0 0.45rem;
}
.footer-cta-text {
  margin: 0;
  color: var(--text-muted);
  max-width: 28rem;
}
.footer-main {
  display: grid;
  gap: 2.25rem;
  padding: 3rem 0 2.5rem;
}
@media (min-width: 900px) {
  .footer-main {
    grid-template-columns: 1.3fr 0.65fr 0.55fr 0.75fr 1fr;
    gap: 1.5rem;
  }
}
.footer-brand-link { display: inline-block; margin-bottom: 1rem; }
.footer-logo {
  width: min(200px, 70vw);
  height: auto;
  filter: drop-shadow(0 0 14px rgba(46, 197, 255, 0.2));
}
.footer-tagline {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 22rem;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}
.footer-social a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.footer-social a:hover {
  color: var(--text) !important;
  border-bottom-color: var(--blue);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  width: fit-content;
}
.footer-col a:hover { color: var(--text) !important; }
.footer-contact p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 0 1.35rem;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom p { margin: 0; }
.footer-credit a {
  color: var(--text) !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 197, 255, 0.4);
}
.footer-credit a:hover {
  color: #2ec5ff !important;
  border-bottom-color: #2ec5ff;
}
.footer-legal-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}
.footer-legal-inline a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(154, 163, 199, 0.7) !important;
}
.footer-legal-inline a:hover { color: var(--text) !important; }

/* Legal documents */
.legal-doc {
  max-width: 46rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}
.legal-doc h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
}
.legal-doc p, .legal-doc li { font-size: 0.95rem; }
.legal-doc ul { padding-left: 1.2rem; margin: 0.5rem 0 1rem; }
.legal-doc li { margin: 0.35rem 0; }
.legal-doc a { color: var(--blue); }
.legal-doc code {
  font-size: 0.85em;
  color: var(--blue);
  background: rgba(46, 197, 255, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}
.legal-updated {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 1.5rem;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 720px;
  margin-inline: auto;
}
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 22, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.cookie-banner-inner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cookie-banner-inner a { color: var(--blue); }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.map-consent-fallback {
  display: grid;
  place-items: center;
  gap: 0.85rem;
  min-height: 220px;
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
}
.map-consent-fallback p { margin: 0; max-width: 28rem; }

.msg { padding: 0.65rem 0.85rem; border-radius: 10px; font-size: 0.88rem; margin-top: 0.75rem; }
.msg-success { background: rgba(46, 197, 255, 0.12); color: var(--blue); border: 1px solid rgba(46, 197, 255, 0.25); }

.logo-stage {
  position: relative;
  padding: 0.5rem;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.logo-stage-hero { width: min(340px, 78vw); margin-inline: auto; position: relative; z-index: 1; }
.logo-ring {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.75;
  animation: ringPulse 3.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 8px rgba(46, 197, 255, 0.3)); }
  50% { opacity: 0.95; filter: drop-shadow(0 0 20px rgba(255, 62, 242, 0.4)); }
}

.section { padding: 2rem 0; position: relative; }
.section-intro { margin-bottom: 1rem; }
.section-tight { padding-top: 0.5rem; }

/* Page head */
.page-head {
  padding: 1.75rem 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(46, 197, 255, 0.06), transparent);
}
.page-head-min { padding-bottom: 0.75rem; }
.page-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

/* Program cards */
.program-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.program-card {
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 46, 255, 0.65);
  box-shadow: 0 0 32px rgba(46, 197, 255, 0.15), 0 0 48px rgba(138, 46, 255, 0.12);
}
.program-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.program-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.program-card:hover .program-card-media img { transform: scale(1.06); }
.program-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #12122a, #1b1038);
}
.program-card-date {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(8, 8, 22, 0.8);
  border: 1px solid var(--glass-border);
}
.program-card-body { padding: 1.1rem 1.15rem 1.25rem; }
.program-card-body h2 { font-size: 1rem; margin: 0 0 0.5rem; letter-spacing: 0.04em; }
.program-card-body h2 a { color: inherit; }
.program-card-body p { margin: 0 0 0.65rem; font-size: 0.88rem; color: var(--text-muted); }
.program-card-lineup {
  margin: 0 0 0.75rem !important;
  font-size: 0.84rem !important;
  line-height: 1.45;
  color: var(--text) !important;
}
.program-card-lineup-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.program-card-tickets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}
.program-card-ticket {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.program-card-ticket span {
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.program-card-ticket strong {
  color: var(--text);
  font-weight: 600;
}
.program-card-ticket.is-vip {
  border-color: rgba(46, 197, 255, 0.35);
  background: rgba(46, 197, 255, 0.08);
}
.program-card-ticket.is-vip strong { color: var(--blue); }
.program-card-ticket-note {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.program-card-ticket-note--onsite { color: #f0b429; }
.program-card-ticket-note--off { color: var(--text-muted); }

/* Gallery */
.gallery-parallax {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.gallery-parallax--compact {
  gap: 0.45rem;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
}
@media (min-width: 700px) {
  .gallery-parallax--compact {
    gap: 0.55rem;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}
@media (min-width: 1100px) {
  .gallery-parallax--compact {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
.gallery-parallax--compact .gallery-shot {
  will-change: auto;
  border-radius: 10px;
}
.gallery-parallax--compact .gallery-shot img {
  aspect-ratio: 1;
}
.gallery-parallax--compact .gallery-shot:hover img {
  transform: scale(1.03);
}
.gallery-parallax--compact .gallery-album-plate:hover img {
  /* keep photographer zoom; only slight lift */
  transform: scale(calc(var(--cover-zoom, 1) * 1.02));
}
.gallery-parallax--compact .gallery-album-plate {
  grid-column: span 2;
}
.gallery-parallax--compact .gallery-album-plate img {
  aspect-ratio: 1;
}
.gallery-parallax--compact .gallery-album-plate-copy {
  padding: 0.75rem;
}
.gallery-parallax--compact .gallery-album-plate-copy strong {
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
}
.gallery-parallax--compact .gallery-album-plate-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.gallery-parallax--compact .gallery-shot-cap {
  display: none;
}
.gallery-shot {
  overflow: hidden;
  margin: 0;
  will-change: transform;
  padding: 0;
  border: 0;
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: transparent;
}
button.gallery-shot {
  appearance: none;
  -webkit-appearance: none;
  cursor: zoom-in;
}
.gallery-album-plate {
  cursor: default;
}
.gallery-shot img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}
.gallery-shot:hover img { transform: scale(1.04); }
.gallery-shot figcaption,
.gallery-shot-cap {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.gallery-shot strong { letter-spacing: 0.04em; }
.gallery-shot span { color: var(--text-muted); font-size: 0.78rem; }

/* Photo lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.photo-lightbox[hidden] { display: none !important; }
.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(46, 197, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 80% 90%, rgba(255, 62, 242, 0.1), transparent 50%),
    rgba(2, 2, 10, 0.9);
  backdrop-filter: blur(14px);
  animation: modalFade 0.22s var(--ease);
}
.photo-lightbox-shell {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(94dvh, 94vh);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.95rem 1rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(165deg, rgba(24, 24, 44, 0.96), rgba(10, 10, 24, 0.98));
  box-shadow:
    0 0 0 1px rgba(46, 197, 255, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.58),
    0 0 90px rgba(138, 46, 255, 0.1);
  animation: modalPop 0.28s var(--ease);
}
.photo-lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.15rem;
}
.photo-lightbox-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.photo-lightbox-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.photo-lightbox-counter {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.photo-lightbox-top-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.photo-lightbox-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 197, 255, 0.35);
  background: rgba(46, 197, 255, 0.12);
  color: #9adfff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.photo-lightbox-download:hover {
  background: rgba(46, 197, 255, 0.2);
  border-color: rgba(46, 197, 255, 0.55);
  color: #fff;
  transform: translateY(-1px);
}
.photo-lightbox-download svg { flex-shrink: 0; }
.photo-lightbox-close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.photo-lightbox-close span {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}
.photo-lightbox-close span::before,
.photo-lightbox-close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}
.photo-lightbox-close span::before { transform: translate(-50%, -50%) rotate(45deg); }
.photo-lightbox-close span::after { transform: translate(-50%, -50%) rotate(-45deg); }
.photo-lightbox-close:hover {
  color: var(--text);
  background: rgba(255, 62, 242, 0.14);
  border-color: rgba(255, 62, 242, 0.4);
}
.photo-lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  min-width: 0;
  flex: 1 1 auto;
  min-height: 0;
}
.photo-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0.35rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.photo-lightbox-stage::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(46, 197, 255, 0.12), transparent 65%);
}
.photo-lightbox-stage img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  max-height: min(62dvh, 62vh);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.photo-lightbox-figure figcaption {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
  min-height: 1.25em;
  padding: 0 0.5rem;
}
.photo-lightbox-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding-top: 0.15rem;
}
.photo-lightbox-nav {
  min-height: 3rem;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.photo-lightbox-nav span {
  font-size: 1.45rem;
  line-height: 1;
  color: var(--blue);
}
.photo-lightbox-nav em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.photo-lightbox-nav:hover {
  background: rgba(46, 197, 255, 0.12);
  border-color: rgba(46, 197, 255, 0.4);
  transform: translateY(-1px);
}
.photo-lightbox-nav[hidden] { display: none !important; }
@media (max-width: 700px) {
  .photo-lightbox {
    padding: 0.55rem;
    align-items: end;
    padding-bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
  }
  .photo-lightbox-shell {
    width: 100%;
    padding: 0.85rem 0.8rem 0.9rem;
    border-radius: 18px 18px 14px 14px;
    gap: 0.7rem;
  }
  .photo-lightbox-download span { display: none; }
  .photo-lightbox-download {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }
  .photo-lightbox-stage img {
    max-height: min(52dvh, 52vh);
  }
  .photo-lightbox-nav {
    min-height: 2.85rem;
    padding: 0.55rem 0.7rem;
  }
  .photo-lightbox-nav em {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .photo-lightbox-backdrop,
  .photo-lightbox-shell { animation: none; }
}

.gallery-album-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.gallery-album-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), border-color 0.25s;
}
.gallery-album-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 197, 255, 0.35);
}
.gallery-album-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(8, 8, 22, 0.85);
}
.gallery-album-card-media img,
.gallery-album-card-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-album-card-fallback {
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(46, 197, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 70%, rgba(255, 62, 242, 0.18), transparent 50%),
    linear-gradient(160deg, #141428, #080816);
}
.gallery-album-card:hover .gallery-album-card-media img {
  transform: scale(1.05);
}
.gallery-album-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(4, 4, 14, 0.88) 100%);
}
.gallery-album-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gallery-album-card-copy strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  line-height: 1.25;
}
.gallery-album-card-copy span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.gallery-album-card-copy em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.gallery-album-plate {
  position: relative;
  margin: 0;
}
.gallery-album-plate img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05);
}
.gallery-album-plate-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 55% at 50% 55%, rgba(4, 4, 14, 0.35), rgba(4, 4, 14, 0.72));
}
.gallery-album-plate-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}
.gallery-album-plate-copy span {
  color: #9adfff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gallery-album-plate--mid img {
  filter: brightness(0.62) saturate(1.1);
}
.gallery-back {
  margin-top: 1.75rem;
}
.gallery-loose-head {
  margin: 2.25rem 0 1.1rem;
}

/* Staff album UI */
.tickets-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 900px) {
  .tickets-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.85fr);
  }
}
.ticket-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.ticket-info {
  padding: 1.35rem 1.25rem;
  position: sticky;
  top: 5.5rem;
}
.ticket-info-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.ticket-info-steps {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}
.ticket-info-steps li { margin: 0.55rem 0; }
.ticket-info-steps strong { color: var(--text); }
.ticket-info-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ticket-card {
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ticket-card:hover { border-color: rgba(255, 62, 242, 0.45); }
.ticket-card-featured {
  border-color: rgba(46, 197, 255, 0.45);
  box-shadow: 0 0 40px rgba(46, 197, 255, 0.12);
}
.ticket-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--text);
  font-weight: 700;
}
.ticket-tier {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.vip-perks {
  margin: 0.85rem 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(46, 197, 255, 0.1), rgba(255, 62, 242, 0.06));
  border: 1px solid rgba(46, 197, 255, 0.28);
}
.vip-perks-title {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3ff;
}
.vip-perks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.vip-perks-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #e8ecff;
}
.vip-perks-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(46, 197, 255, 0.55);
}
.vip-perks--compact {
  margin: 0.35rem 0 0.55rem;
  padding: 0.55rem 0.7rem;
}
.vip-perks--compact .vip-perks-title { margin-bottom: 0.35rem; }
.vip-perks--compact .vip-perks-list li { font-size: 0.8rem; }
.vip-perks--modal {
  margin: 0.85rem 0 0;
  text-align: left;
}
.program-card-vip-perks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ticket-modal-vip-perks[hidden] { display: none !important; }
.admin-vip-perks-box {
  margin-top: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(46, 197, 255, 0.28);
  background: rgba(46, 197, 255, 0.06);
}
.admin-vip-perks-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.admin-vip-perks-label {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.65rem;
}
.ticket-title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.ticket-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0.5rem 0 1rem;
}
.ticket-price small { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font); }
.ticket-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.ticket-card li { padding: 0.25rem 0 0.25rem 1.1rem; position: relative; }
.ticket-card li::before { content: "▸"; position: absolute; left: 0; color: var(--magenta); }

/* Ticket modal */
html.is-modal-open,
body.is-modal-open {
  overflow: hidden !important;
  overscroll-behavior: none;
  scrollbar-gutter: auto;
}
.ticket-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.ticket-modal[hidden] { display: none !important; }
.ticket-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 12, 0.78);
  backdrop-filter: blur(10px);
  animation: modalFade 0.25s var(--ease);
}
.ticket-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: min(90dvh, 90vh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(165deg, rgba(22, 22, 42, 0.97), rgba(10, 10, 24, 0.98));
  box-shadow:
    0 0 0 1px rgba(46, 197, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(138, 46, 255, 0.12);
  animation: modalPop 0.32s var(--ease);
}
.ticket-modal-glow {
  pointer-events: none;
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 80% 40% at 20% 0%, rgba(46, 197, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 35% at 90% 10%, rgba(255, 62, 242, 0.16), transparent 50%);
  opacity: 0.9;
}
.ticket-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ticket-modal-close span {
  position: relative;
  width: 12px;
  height: 12px;
  display: block;
}
.ticket-modal-close span::before,
.ticket-modal-close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}
.ticket-modal-close span::before { transform: translate(-50%, -50%) rotate(45deg); }
.ticket-modal-close span::after { transform: translate(-50%, -50%) rotate(-45deg); }
.ticket-modal-close:hover {
  color: var(--text);
  background: rgba(255, 62, 242, 0.12);
  border-color: rgba(255, 62, 242, 0.35);
}

.ticket-modal-head {
  position: relative;
  padding: 1.5rem 1.4rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ticket-modal-head .eyebrow {
  margin: 0 0 0.4rem;
}
.ticket-modal-title {
  margin: 0;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
}
.ticket-modal-unit {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.ticket-modal-tier-badge {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(46, 197, 255, 0.12);
  color: var(--blue);
  border: 1px solid rgba(46, 197, 255, 0.32);
}
.ticket-modal-dialog.is-vip-tier {
  box-shadow:
    0 0 0 1px rgba(255, 62, 242, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(255, 62, 242, 0.18);
}
.ticket-modal-dialog.is-vip-tier .ticket-modal-tier-badge {
  background: rgba(255, 62, 242, 0.14);
  color: var(--magenta);
  border-color: rgba(255, 62, 242, 0.38);
}
.ticket-modal-dialog.is-vip-tier .ticket-modal-glow {
  background:
    radial-gradient(ellipse 80% 40% at 20% 0%, rgba(255, 62, 242, 0.24), transparent 55%),
    radial-gradient(ellipse 70% 35% at 90% 10%, rgba(46, 197, 255, 0.14), transparent 50%);
}

.ticket-modal-form {
  position: relative;
  padding: 1.15rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-modal-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
}
.ticket-modal-qty-block {
  display: grid;
  gap: 0;
}

.qty-stepper {
  display: grid;
  grid-template-columns: 2.75rem 3.5rem 2.75rem;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
}
.qty-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.qty-btn:hover {
  border-color: rgba(46, 197, 255, 0.45);
  background: rgba(46, 197, 255, 0.1);
  color: var(--blue);
}
.qty-value {
  height: 2.75rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(8, 8, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  user-select: none;
}

.ticket-modal-fields {
  display: grid;
  gap: 0.75rem;
}

.ticket-modal-pay {
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}
.ticket-modal-pay > .ticket-modal-label {
  margin-bottom: 0.55rem;
}
.ticket-pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.ticket-pay-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 22, 0.55);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}
.ticket-pay-option:has(input:checked) {
  border-color: rgba(120, 220, 255, 0.45);
  background: rgba(40, 90, 140, 0.35);
}
.ticket-pay-option input {
  margin: 0;
  accent-color: #7cd6ff;
}
@media (max-width: 480px) {
  .ticket-pay-options {
    grid-template-columns: 1fr;
  }
}
.ticket-field {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  font-size: inherit;
}
.ticket-field > span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.ticket-field > span em {
  font-style: normal;
  font-weight: 500;
  opacity: 0.7;
}
.ticket-field input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 22, 0.65);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ticket-field input::placeholder {
  color: rgba(154, 163, 199, 0.45);
}
.ticket-field input:focus {
  border-color: rgba(46, 197, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(46, 197, 255, 0.12);
}

.ticket-modal-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(46, 197, 255, 0.22);
  background:
    linear-gradient(120deg, rgba(46, 197, 255, 0.1), rgba(138, 46, 255, 0.08) 55%, rgba(255, 62, 242, 0.08));
}
.ticket-modal-summary span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ticket-modal-summary strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.ticket-modal-hint {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.ticket-modal-privacy {
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #b7c0d0;
  background: rgba(62, 220, 160, 0.08);
  border: 1px solid rgba(62, 220, 160, 0.22);
}

.ticket-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.65rem;
  margin-top: 0.15rem;
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding: 0.65rem 0 0.15rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 24, 0.98) 28%);
}
@media (max-width: 420px) {
  .ticket-modal-actions { grid-template-columns: 1fr; }
  .ticket-modal-actions .btn-glass { order: 2; }
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticket-modal-backdrop,
  .ticket-modal-dialog { animation: none; }
}

/* Transfer page */
.transfer-wrap {
  display: grid;
  gap: 1.15rem;
  max-width: 860px;
}
.transfer-card { padding: 1.35rem 1.25rem; }
.transfer-pay-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 720px) {
  .transfer-pay-grid {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 1.75rem;
  }
}
.transfer-qr {
  text-align: center;
  padding: 0.85rem;
  border-radius: 16px;
  background: #fff;
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.transfer-qr-img {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display: block;
  image-rendering: pixelated;
}
.transfer-qr-title {
  margin: 0.65rem 0 0.25rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #111;
}
.transfer-qr-hint {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #555;
}
.transfer-dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.transfer-name-list {
  margin: 0;
  padding-left: 1.1rem;
}
.transfer-name-list li + li {
  margin-top: 0.25rem;
}
.transfer-privacy {
  margin: 1rem 0 0;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #b7c0d0;
  background: rgba(62, 220, 160, 0.08);
  border: 1px solid rgba(62, 220, 160, 0.22);
}
.thanks-card {
  padding: 1.75rem 1.35rem;
  text-align: left;
}
.thanks-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3edca0;
  border: 1px solid rgba(62, 220, 160, 0.35);
  background: rgba(62, 220, 160, 0.12);
}
.entry-id-display {
  margin: 0;
  font-family: ui-monospace, Consolas, Monaco, monospace;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #3edca0;
}
.entry-id-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.entry-id-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.entry-id-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.entry-id-list code {
  font-size: 0.95rem;
  color: #3edca0;
}

/* Potvrdenie vstupenky (moj-qr) */
.page-confirm-ticket .confirm-hero {
  position: relative;
  padding: 2.5rem 0 1.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 15% 0%, rgba(46, 197, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(255, 62, 242, 0.1), transparent 50%);
}
.confirm-hero-inner { max-width: 640px; }
.confirm-hero-lead {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 36rem;
}
.confirm-section { padding-top: 0.5rem; }
.confirm-wrap { max-width: 720px; }

.confirm-gate {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 18, 0.72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.confirm-gate-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(62, 220, 160, 0.18), transparent 60%);
  pointer-events: none;
}
.confirm-gate-inner {
  position: relative;
  padding: 1.75rem 1.4rem 1.6rem;
}
@media (min-width: 560px) {
  .confirm-gate-inner { padding: 2.1rem 2rem 1.85rem; }
}
.confirm-gate-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dffd0;
}
.confirm-gate h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  color: #fff;
}
.confirm-gate-hint {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.confirm-gate-hint code {
  color: #7dffd0;
  font-size: 0.9em;
}
.confirm-gate-form {
  display: grid;
  gap: 0.55rem;
}
.confirm-gate-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b94b8;
}
.confirm-gate-input {
  width: 100%;
  padding: 0.95rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.confirm-gate-input:focus {
  outline: none;
  border-color: rgba(62, 220, 160, 0.55);
  box-shadow: 0 0 0 3px rgba(62, 220, 160, 0.12);
}
.confirm-gate-btn {
  margin-top: 0.45rem;
  justify-self: start;
}

.confirm-panel {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.confirm-meta {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}
.confirm-meta > div {
  display: grid;
  gap: 0.15rem;
}
@media (min-width: 520px) {
  .confirm-meta > div {
    grid-template-columns: 8rem 1fr;
    gap: 0.75rem;
  }
}
.confirm-meta dt {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b94b8;
}
.confirm-meta dd { margin: 0; color: #fff; font-weight: 600; }
.confirm-note {
  margin: 1.1rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.confirm-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.confirm-status-pill--wait {
  color: #ffd58a;
  background: rgba(255, 179, 71, 0.12);
  border: 1px solid rgba(255, 179, 71, 0.35);
}
.confirm-status-pill--paid {
  color: #7dffd0;
  background: rgba(62, 220, 160, 0.12);
  border: 1px solid rgba(62, 220, 160, 0.35);
}
.confirm-status-pill--onsite {
  color: #ffd58a;
  background: rgba(255, 179, 71, 0.14);
  border: 1px solid rgba(255, 179, 71, 0.4);
}
.confirm-success-bar {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}
.confirm-success-bar p {
  margin: 0;
  color: var(--text-muted);
}
.confirm-success-bar strong { color: #fff; }

.pass-ticket-grid {
  display: grid;
  gap: 1rem;
}
.pass-ticket {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 1.25rem 1.2rem 1.15rem;
  background:
    linear-gradient(145deg, rgba(18, 24, 40, 0.95), rgba(8, 10, 18, 0.98));
  border: 1px solid rgba(62, 220, 160, 0.22);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: passTicketIn 0.55s var(--ease) both;
}
.pass-ticket:nth-child(2) { animation-delay: 0.08s; }
.pass-ticket:nth-child(3) { animation-delay: 0.14s; }
@keyframes passTicketIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.pass-ticket-shine {
  position: absolute;
  inset: 0 auto auto 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, rgba(46, 197, 255, 0.12), transparent 55%);
  pointer-events: none;
}
.pass-ticket-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.pass-ticket-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.pass-ticket-brand img {
  height: 26px;
  width: auto;
  object-fit: contain;
}
.pass-ticket-chip {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #d5dbf5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.pass-ticket-body {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.pass-ticket-avatar {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
  color: #7dffd0;
  background: rgba(62, 220, 160, 0.12);
  border: 1px solid rgba(62, 220, 160, 0.3);
}
.pass-ticket-label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b94b8;
}
.pass-ticket-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.pass-ticket-code-block {
  position: relative;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(62, 220, 160, 0.35);
  text-align: center;
}
.pass-ticket-code {
  margin: 0;
  font-family: ui-monospace, Consolas, Monaco, monospace;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7dffd0;
}
.pass-ticket-foot {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.45rem 1rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #9aa3c7;
}
.pass-ticket-perforation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.65rem;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 6px,
    rgba(255, 255, 255, 0.12) 6px 12px
  );
  pointer-events: none;
  opacity: 0.7;
}
.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .pass-ticket { animation: none; }
}

.transfer-dl > div {
  display: grid;
  gap: 0.2rem;
}
@media (min-width: 560px) {
  .transfer-dl > div {
    grid-template-columns: 10rem 1fr;
    align-items: start;
    gap: 0.75rem;
  }
}
.transfer-dl dt {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.transfer-dl dd {
  margin: 0;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.transfer-total {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}
.transfer-note, .transfer-dl .iban {
  display: inline-block;
  font-size: 0.92rem;
  color: var(--text);
  word-break: break-word;
  background: rgba(46, 197, 255, 0.08);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}
.transfer-extra { margin: 1rem 0 0; }

.admin-hint {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: #666;
}

/* Contact */
.social-row { padding: 1.25rem; margin-bottom: 1.25rem; }
.social-row p { margin: 0 0 1rem; color: var(--text-muted); }
.social-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.social-chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.social-chip:hover { border-color: var(--magenta); color: #fff; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ig-tile {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-layout { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-block, .form-card { padding: 1.35rem; }
.contact-block p { margin: 0 0 1rem; color: var(--text-muted); }
.contact-block strong { color: var(--text); }

.form-card label, .form-stack label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}
.theme-festival input,
.theme-festival textarea {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
}
.theme-festival input:focus,
.theme-festival textarea:focus {
  outline: none;
  border-color: rgba(255, 62, 242, 0.5);
  box-shadow: 0 0 0 3px rgba(138, 46, 255, 0.15);
}

.newsletter-bar {
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.newsletter-fields { display: flex; flex-wrap: wrap; gap: 0.65rem; flex: 1; min-width: 240px; }
.newsletter-fields input { flex: 1; min-width: 180px; }

.map-block { margin-top: 2rem; }
.map-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.map-block-head .h3 { margin: 0.2rem 0 0.35rem; }
.map-block-head .text-muted { margin: 0; }
.map-stage {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.map-frame {
  display: block;
  width: 100%;
  height: min(420px, 62vh);
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}
.map-glow {
  display: none;
}

.empty-state { color: var(--text-muted); padding: 2rem 0; }
.tickets-empty {
  padding: 2.25rem 1.5rem;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}
.tickets-empty-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.tickets-empty p { margin: 0 auto 1.25rem; max-width: 28rem; line-height: 1.6; }
.tickets-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.vstupenky-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.vstupenky-events {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vstupenky-event {
  padding: 1.15rem 1.2rem 1.25rem;
}
@media (min-width: 640px) {
  .vstupenky-event { padding: 1.35rem 1.5rem 1.5rem; }
}
.vstupenky-event-head {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .vstupenky-event-head {
    grid-template-columns: 120px 1fr;
    gap: 1.25rem;
  }
}
.vstupenky-event-thumb {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.vstupenky-event-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.vstupenky-event-date {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.vstupenky-event-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vstupenky-event-title a { color: inherit; }
.vstupenky-event-tickets {
  margin-top: 0.25rem;
}
.vstupenky-event-action {
  max-width: 320px;
}
.vstupenky-divider {
  padding-top: 0.5rem;
}

.admin-section-title {
  margin: 1.5rem 0 0.35rem;
  font-size: 1.05rem;
}
.admin-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #d5dbf5;
}
.admin-check input { width: auto !important; }

/* Team */
.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.team-card {
  display: grid;
  gap: 1.15rem;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 28, 0.55);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 197, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}
@media (min-width: 560px) {
  .team-card { grid-template-columns: 180px 1fr; }
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, rgba(46, 197, 255, 0.12), rgba(138, 46, 255, 0.18));
  overflow: hidden;
}
@media (min-width: 560px) {
  .team-photo {
    width: 180px;
    height: 180px;
    aspect-ratio: auto;
    align-self: center;
    margin: 1rem 0 1rem 1rem;
    border-radius: 14px;
  }
}
.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-photo-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: rgba(245, 247, 255, 0.55);
  background:
    radial-gradient(circle at 30% 20%, rgba(46, 197, 255, 0.25), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(255, 62, 242, 0.2), transparent 50%);
}
.team-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-index {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 0.55rem;
}
.team-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: var(--text);
}
.team-role {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}
.team-bio {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.admin-thumb-lg { max-width: 220px; border-radius: 12px; }
.admin-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }

/* Event detail */
.page-event .event-page {
  padding: 1rem 0 2.5rem;
}
.page-event .event-page-inner {
  max-width: 820px;
  margin: 0 auto;
}
.page-event .event-crumb {
  margin: 0 0 1rem;
  font-size: 0.82rem;
}
.page-event .event-crumb a {
  color: var(--text-muted);
}
.page-event .event-crumb a:hover { color: var(--blue); }
.page-event .event-banner {
  margin: 0 auto 1.35rem;
  padding: 0.65rem;
  max-width: 100%;
  overflow: hidden;
}
.page-event .event-banner img {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
  margin: 0 auto;
  border-radius: calc(var(--radius) - 4px);
}
.page-event .event-banner-placeholder {
  aspect-ratio: 3 / 4;
  max-height: 420px;
  background: linear-gradient(145deg, #12122a, #1b1038 55%, #0e1628);
}
.page-event .event-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.page-event .event-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient);
}
.page-event .event-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-event .event-info {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.35rem;
}
@media (min-width: 560px) {
  .page-event .event-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    padding: 1.15rem 1.25rem;
  }
}
.page-event .event-info-item {
  display: grid;
  gap: 0.2rem;
}
.page-event .event-info-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.page-event .event-info-item strong {
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}
.page-event .event-info-on { color: var(--blue); }
.page-event .event-info-onsite { color: #f0b429; }
.page-event .event-info-off {
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem !important;
}
.page-event .event-section-head {
  margin-bottom: 0.85rem;
}
.page-event .event-section-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
}
.page-event .event-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-event .event-lineup {
  margin-bottom: 1.5rem;
}
.page-event .event-lineup-head {
  margin-bottom: 1rem;
}
.page-event .event-lineup-stage {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-event .event-lineup-act {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1.05rem 0.35rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(0);
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.page-event .event-lineup-act:hover,
.page-event .event-lineup-act:focus-within {
  transform: translateX(0.45rem);
  background: linear-gradient(90deg, rgba(46, 197, 255, 0.1), transparent 72%);
  border-bottom-color: rgba(46, 197, 255, 0.28);
}
.page-event .event-lineup-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue);
  opacity: 0.85;
  transition: transform 0.28s var(--ease), color 0.28s var(--ease);
}
.page-event .event-lineup-act:hover .event-lineup-index,
.page-event .event-lineup-act:focus-within .event-lineup-index {
  transform: scale(1.08);
  color: #9adfff;
}
.page-event .event-lineup-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.page-event .event-lineup-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.28s var(--ease);
}
.page-event .event-lineup-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text);
  transition: letter-spacing 0.28s var(--ease);
}
.page-event .event-lineup-act:hover .event-lineup-name,
.page-event .event-lineup-act:focus-within .event-lineup-name {
  letter-spacing: 0.04em;
}
.page-event .event-lineup-act.is-headliner .event-lineup-name {
  font-size: clamp(1.7rem, 5.5vw, 2.55rem);
  background: linear-gradient(105deg, #fff 10%, #9adfff 55%, #ff8af0 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-event .event-lineup-act.is-headliner .event-lineup-role {
  color: var(--magenta);
}
.page-event .event-lineup-rule {
  display: none;
}
@media (min-width: 720px) {
  .page-event .event-lineup-act {
    grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  }
  .page-event .event-lineup-rule {
    display: block;
    width: min(28vw, 220px);
    height: 1px;
    background: linear-gradient(90deg, rgba(46, 197, 255, 0.45), transparent);
    opacity: 0.55;
    transform: scaleX(0.72);
    transform-origin: left center;
    transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
  }
  .page-event .event-lineup-act:hover .event-lineup-rule,
  .page-event .event-lineup-act:focus-within .event-lineup-rule {
    transform: scaleX(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-event .event-lineup-act,
  .page-event .event-lineup-index,
  .page-event .event-lineup-name,
  .page-event .event-lineup-rule {
    transition: none;
  }
  .page-event .event-lineup-act:hover,
  .page-event .event-lineup-act:focus-within {
    transform: none;
  }
}
.page-event .event-about {
  padding: 1.15rem 1.2rem 1.25rem;
  margin-bottom: 1.25rem;
}
.page-event .event-prose {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}
.page-event .event-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  padding-top: 0.25rem;
}
.page-event .event-tickets {
  margin-bottom: 1.25rem;
}
.page-event .event-tickets-note,
.page-event .event-ticket-onsite-hint {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.page-event .event-ticket-onsite-hint {
  margin: 0.85rem 0 0;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  text-align: center;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.22);
  color: #f0b429;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-event .ticket-onsite-label {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 180, 41, 0.35);
  background: rgba(240, 180, 41, 0.1);
  color: #f0b429;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-event .event-ticket-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 560px) {
  .page-event .event-ticket-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
.page-admin .admin-fieldset,
.page-install .admin-fieldset {
  margin: 0.5rem 0 1rem;
  padding: 1rem 1rem 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}
.page-admin .admin-fieldset legend,
.page-install .admin-fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Legacy event detail aliases */
.event-detail { display: grid; gap: 2rem; }
@media (min-width: 800px) { .event-detail { grid-template-columns: 320px 1fr; } }
.event-detail-poster img { border-radius: var(--radius); border: 1px solid var(--glass-border); }
.ticket-unavailable { margin: 1.25rem 0 0; }
.ticket-unavailable-label {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.event-list { display: flex; flex-direction: column; gap: 1rem; }
.event-row {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}
@media (min-width: 700px) { .event-row { grid-template-columns: 100px 1fr auto; } }
.split-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.info-card { padding: 1.25rem; }

/* Install / admin — dark festival console */
body.page-install,
body.page-admin-auth,
body.page-admin {
  margin: 0;
  font-family: var(--font);
  color: #e8ecff;
  background:
    radial-gradient(ellipse 70% 50% at 10% -10%, rgba(46, 197, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 0%, rgba(138, 46, 255, 0.16), transparent 50%),
    #070712;
}
.page-install,
.page-admin-auth {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}
.admin-auth-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 7, 18, 0.85)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.9;
}
.install-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: rgba(14, 14, 28, 0.88);
  border: 1px solid rgba(46, 197, 255, 0.18);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(138, 46, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(16px);
}
.admin-auth-card h1 {
  margin: 0.2rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}
.admin-auth-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.admin-auth-back {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
}
.admin-auth-back a { color: var(--text-muted); }
.admin-auth-back a:hover { color: var(--blue); }
.install-logo-wrap {
  display: inline-flex;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}
.install-logo { width: 64px; height: auto; }
.install-card .form-stack,
.page-admin .form-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}
.install-card label,
.page-admin .form-stack label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #b7c0e0;
}
.install-card input,
.install-card textarea,
.page-admin .form-stack input,
.page-admin .form-stack textarea,
.page-admin .form-stack select {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: #f5f7ff;
  font: inherit;
}
.install-card input:focus,
.install-card textarea:focus,
.page-admin .form-stack input:focus,
.page-admin .form-stack textarea:focus,
.page-admin .form-stack select:focus {
  outline: none;
  border-color: rgba(46, 197, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(46, 197, 255, 0.12);
}

.page-admin { min-height: 100vh; }
.admin-shell {
  display: grid;
  min-height: 100vh;
}
@media (min-width: 960px) {
  .admin-shell { grid-template-columns: 250px 1fr; }
}
.admin-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(18, 18, 36, 0.95), rgba(8, 8, 18, 0.98));
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.admin-brand-logo {
  width: auto;
  height: 36px;
  max-width: 110px;
  object-fit: contain;
}
.admin-brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.admin-brand-meta strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.admin-brand-meta em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.admin-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: #9aa3c7;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.admin-nav-badge {
  flex: 0 0 auto;
  min-width: 1.35rem;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #1a0f08;
  background: #ffb347;
  box-shadow: 0 0 0 1px rgba(255, 179, 71, 0.35);
}
.admin-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.admin-nav a.is-active {
  color: #fff;
  background: linear-gradient(120deg, rgba(46, 197, 255, 0.16), rgba(138, 46, 255, 0.14));
  border-color: rgba(46, 197, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(46, 197, 255, 0.08);
}
.admin-sidebar-foot {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.admin-side-link {
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  font-size: 0.82rem;
  color: #b7c0e0;
}
.admin-side-link:hover { color: var(--blue); background: rgba(46, 197, 255, 0.06); }
.admin-side-link--muted { color: #7d86a8; }

.admin-main {
  padding: 1.5rem 1.5rem 2.5rem;
  min-width: 0;
}
.admin-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.admin-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.admin-top h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  letter-spacing: 0.03em;
  font-weight: 650;
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-user-avatar {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: var(--gradient);
}
.admin-user-meta {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
  padding-right: 0.25rem;
}
.admin-user-meta strong {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.admin-user-meta span {
  font-size: 0.82rem;
  color: #e8ecff;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-content {
  background: rgba(14, 14, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}
.admin-toolbar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.page-admin .btn-primary,
.page-install .btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(46, 197, 255, 0.28);
}
.page-admin .btn-primary:hover,
.page-install .btn-primary:hover {
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 62, 242, 0.35);
}
.page-admin .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #d5dbf5;
  border-radius: 999px;
}
.admin-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.admin-table th,
.admin-table td {
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: middle;
}
.admin-table th {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b94b8;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.22);
}
.admin-table tbody tr:hover {
  background: rgba(46, 197, 255, 0.04);
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.admin-badge--on {
  color: #7dffd0;
  background: rgba(45, 212, 160, 0.12);
  border: 1px solid rgba(45, 212, 160, 0.28);
}
.admin-badge--off {
  color: #9aa3c7;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-badge--hot {
  color: #ff9cf5;
  background: rgba(255, 62, 242, 0.12);
  border: 1px solid rgba(255, 62, 242, 0.28);
}
.admin-badge--onsite {
  color: #ffd58a;
  background: rgba(255, 179, 71, 0.14);
  border: 1px solid rgba(255, 179, 71, 0.4);
  letter-spacing: 0.04em;
}
.page-admin .msg {
  margin: 0 0 1rem;
  border: 1px solid transparent;
}
.page-admin .msg-success {
  background: rgba(46, 197, 255, 0.1);
  color: #8adfff;
  border-color: rgba(46, 197, 255, 0.25);
}
.page-admin .msg-error,
.page-admin-auth .msg-error,
.page-install .msg-error {
  background: rgba(255, 80, 100, 0.12);
  color: #ffb0bb;
  border: 1px solid rgba(255, 80, 100, 0.28);
}
.form-wide { max-width: 640px; }
.gallery-manage-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 860px) {
  .gallery-manage-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.gallery-panel {
  max-width: none !important;
  width: 100%;
  margin-bottom: 1.25rem;
}
.gallery-manage-grid .gallery-panel {
  margin-bottom: 0;
}
.gallery-cover-panel .gallery-cover-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px dashed rgba(46, 197, 255, 0.35);
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(46, 197, 255, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  margin: 0.35rem 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 0;
  user-select: none;
  touch-action: none;
}
.gallery-cover-panel .gallery-cover-stage.is-empty {
  border-style: dashed;
  padding: 1rem;
}
.gallery-cover-panel .gallery-cover-stage.is-draggable {
  cursor: grab;
  border-style: solid;
  border-color: rgba(46, 197, 255, 0.45);
}
.gallery-cover-panel .gallery-cover-stage.is-dragging {
  cursor: grabbing;
}
.gallery-cover-panel .gallery-cover-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: auto;
  will-change: transform;
}
.gallery-album-plate img,
.gallery-album-card-media img,
.staff-album-cover img {
  will-change: transform;
}
.gallery-cover-drag-hint {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.gallery-cover-sliders {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
}
.gallery-cover-sliders label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.gallery-cover-sliders input[type="range"] {
  width: 100%;
  accent-color: #2ec5ff;
}
.staff-album-list--wide {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .staff-album-list--wide {
    grid-template-columns: 1fr 1fr;
  }
}
.staff-album-cover-empty small {
  display: block;
  margin-top: 0.35rem;
  opacity: 0.75;
  font-size: 0.68rem;
}
.check-row { flex-direction: row !important; align-items: center; }
.form-hint {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.admin-thumb {
  max-width: 72px;
  max-height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-thumb-lg {
  max-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}
.admin-actions a {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
}
.admin-actions a:hover { color: #fff; }
.link-danger {
  color: #ff8a98;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.link-danger:hover { color: #ffd0d6; }
.inline-form { display: inline; }
.admin-section-title {
  margin: 1.75rem 0 0.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.admin-section-title:first-of-type {
  margin-top: 0.25rem;
  padding-top: 0;
  border-top: none;
}
.admin-hint {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.admin-upload-box {
  margin-bottom: 1.5rem;
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px dashed rgba(46, 197, 255, 0.35);
  background: rgba(46, 197, 255, 0.04);
}
.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.admin-gallery-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.admin-gallery-grid figcaption {
  padding: 0.65rem 0.75rem 0.85rem;
  font-size: 0.8rem;
  color: #c5cce6;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.gallery-sortable {
  min-height: 8rem;
  padding-bottom: 0.5rem;
}
.gallery-sortable .gallery-sort-item {
  position: relative;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.gallery-sortable .gallery-sort-item.is-dragging {
  opacity: 0.55;
  cursor: grabbing;
}
.gallery-sortable .gallery-sort-item.is-drag-over {
  outline: 2px solid rgba(46, 197, 255, 0.55);
  outline-offset: 2px;
}
.gallery-sort-handle {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  z-index: 2;
  padding: 0.2rem 0.35rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}
.gallery-sort-move {
  display: flex;
  gap: 0.35rem;
}
.gallery-sort-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}
.gallery-sort-btn:hover {
  border-color: rgba(46, 197, 255, 0.45);
  background: rgba(46, 197, 255, 0.12);
  color: var(--blue);
}
.gallery-sort-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0;
}
.gallery-sort-status {
  font-size: 0.85rem;
  color: #ffd56a;
}
.page-admin .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.5rem;
}
.page-install .btn-row,
.page-admin-auth .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.page-install .btn-ghost,
.page-admin-auth .btn-ghost,
.page-admin .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #d5dbf5;
  border-radius: 999px;
}
.page-admin .check-row {
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem;
  color: #d5dbf5;
}
.page-admin .check-row input {
  width: auto !important;
}

.page-admin .text-muted { color: var(--text-muted); }
.admin-order-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .admin-order-grid { grid-template-columns: 1fr 1fr; }
}
.admin-order-card {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.admin-dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.admin-dl > div {
  display: grid;
  gap: 0.15rem;
}
.admin-dl dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b94b8;
}
.admin-dl dd {
  margin: 0;
  color: #e8ecff;
  word-break: break-word;
}
.admin-dl a { color: var(--blue); }
.admin-pass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}
.admin-pass-card {
  margin: 0;
  padding: 0.85rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.admin-pass-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 0.4rem;
}
.admin-pass-card figcaption {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
}
.admin-pass-card code {
  font-size: 0.75rem;
  color: var(--blue);
}

/* Vstupenky — uhradené */
.admin-seg {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-seg a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: #9aa3c7;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.admin-seg a em {
  font-style: normal;
  min-width: 1.25rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(255, 179, 71, 0.2);
  color: #ffb347;
}
.admin-seg a.is-active {
  color: #fff;
  background: linear-gradient(120deg, rgba(46, 197, 255, 0.22), rgba(138, 46, 255, 0.18));
  box-shadow: 0 0 0 1px rgba(46, 197, 255, 0.25);
}
.admin-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.admin-stat {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-stat span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b94b8;
  margin-bottom: 0.35rem;
}
.admin-stat strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}
.admin-event-select-bar {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-event-select-bar label {
  display: grid;
  gap: 0.4rem;
  flex: 1 1 280px;
  min-width: min(100%, 280px);
  margin: 0;
}
.admin-event-select-bar label span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b94b8;
}
.admin-event-select-bar select {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}
.admin-event-select-bar select:focus {
  outline: none;
  border-color: rgba(46, 197, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(46, 197, 255, 0.12);
}
.admin-event-picks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}
.admin-event-pick {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s, background 0.2s;
}
.admin-event-pick:hover {
  border-color: rgba(46, 197, 255, 0.35);
  background: rgba(46, 197, 255, 0.06);
}
.admin-event-pick.is-active {
  border-color: rgba(46, 197, 255, 0.45);
  background: linear-gradient(145deg, rgba(46, 197, 255, 0.12), rgba(138, 46, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(46, 197, 255, 0.12);
}
.admin-event-pick.is-empty {
  opacity: 0.55;
}
.admin-event-pick-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.3;
}
.admin-event-pick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  font-size: 0.78rem;
  color: #8b94b8;
}
.admin-event-pick-count {
  color: #7dffd0;
  font-weight: 650;
}
.admin-sales-panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}
.admin-sales-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(46, 197, 255, 0.06), transparent);
}
.admin-sales-panel-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.admin-sales-panel-sub {
  margin: 0.4rem 0 0;
  color: #8b94b8;
  font-size: 0.88rem;
}
.admin-sales-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.admin-sales-table-wrap {
  border: 0;
  border-radius: 0;
}
.admin-sales-row--onsite td {
  background: rgba(255, 179, 71, 0.04);
}
.admin-sales-name {
  font-weight: 650;
  color: #fff;
  white-space: nowrap;
}
.admin-sales-tier {
  color: #d5dbf5;
  font-weight: 600;
}
.admin-id-code {
  font-size: 0.82rem;
  color: #7dffd0;
  background: rgba(45, 212, 160, 0.08);
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  white-space: nowrap;
}
.admin-order-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.admin-order-link:hover {
  text-decoration: underline;
}
.admin-sales-num,
.admin-sales-date,
.admin-sales-email {
  color: #9aa3c7;
  font-size: 0.86rem;
}
.admin-sales-email {
  word-break: break-all;
}
.admin-empty-card,
.admin-empty-inline {
  padding: 1.5rem 1.25rem;
  border-radius: 14px;
  text-align: center;
  color: #8b94b8;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
.admin-empty-card p { margin: 0 0 0.85rem; }
.admin-empty-inline {
  margin: 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.print-only { display: none; }
@media (max-width: 720px) {
  .admin-stat-row { grid-template-columns: 1fr; }
  .admin-sales-panel-head { flex-direction: column; }
}
@media print {
  .print-only { display: inline; }
  .no-print,
  .admin-sidebar,
  .admin-top,
  .admin-toolbar,
  .admin-nav,
  .admin-sidebar-foot,
  .admin-seg,
  .admin-stat-row,
  .admin-event-picks,
  .admin-event-select-bar {
    display: none !important;
  }
  .admin-shell,
  .admin-main,
  .admin-content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  body.page-admin {
    background: #fff !important;
    color: #000 !important;
  }
  .admin-sales-panel {
    border: 0 !important;
    background: #fff !important;
  }
  .admin-sales-panel-head {
    background: none !important;
    border: 0 !important;
    padding: 0 0 0.75rem !important;
  }
  .admin-sales-panel-head h2,
  .admin-sales-name {
    color: #000 !important;
  }
  .admin-sales-panel-sub,
  .admin-sales-num,
  .admin-sales-date,
  .admin-sales-email,
  .admin-sales-tier {
    color: #333 !important;
  }
  .admin-table-wrap {
    border: 0 !important;
    overflow: visible !important;
  }
  .admin-sales-print-table,
  .admin-sales-print-table th,
  .admin-sales-print-table td {
    color: #000 !important;
    border-color: #ccc !important;
    background: #fff !important;
  }
  .admin-sales-print-table th,
  .admin-sales-print-table td {
    padding: 0.4rem 0.5rem !important;
    font-size: 12pt !important;
  }
  .admin-sales-print-table th:nth-child(2),
  .admin-sales-print-table td:nth-child(2) {
    width: 40%;
  }
  .admin-sales-print-table th:nth-child(4),
  .admin-sales-print-table td:nth-child(4) {
    font-family: ui-monospace, monospace;
  }
  .admin-kicker {
    display: none !important;
  }
  .admin-badge--onsite {
    background: none !important;
    border: 1px solid #000 !important;
    color: #000 !important;
    font-weight: 800 !important;
    font-size: 10pt !important;
    letter-spacing: 0.02em !important;
    padding: 0.1rem 0.35rem !important;
  }
  .admin-id-code {
    background: none !important;
    border: 0 !important;
    color: #000 !important;
    padding: 0 !important;
  }
  a { color: #000 !important; text-decoration: none !important; }
}

/* Staff console (fotós / beléptető) */
body.page-staff {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: #e8ecff;
  background:
    radial-gradient(ellipse 70% 45% at 8% -5%, rgba(46, 197, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(138, 46, 255, 0.14), transparent 50%),
    #070712;
}
.staff-top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.staff-top-inner {
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.staff-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.staff-brand img {
  height: 30px;
  width: auto;
}
.staff-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.staff-brand span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 46vw;
}
.staff-logout {
  font-size: 0.82rem;
  color: #9aa3c7;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.staff-logout:hover { color: #fff; border-color: rgba(46, 197, 255, 0.4); }
.staff-top-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.staff-heslo {
  font-size: 0.82rem;
  color: #9aa3c7;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.staff-heslo:hover { color: #fff; border-color: rgba(46, 197, 255, 0.4); }
.staff-main {
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding: 1.25rem 0 2.5rem;
}
.staff-page-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}
.staff-hint {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.gallery-upload-progress {
  margin: 0.35rem 0 0.85rem;
}
.gallery-upload-progress-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.page-admin .gallery-upload-progress-track {
  background: rgba(26, 26, 34, 0.08);
}
.gallery-upload-progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #2ec5ff, #7c5cff);
  transition: width 0.25s ease;
}
.gallery-upload-progress-label {
  margin: 0.45rem 0 0 !important;
}
.gallery-upload-retry {
  margin: 0 0 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 90, 90, 0.35);
  background: rgba(255, 70, 70, 0.08);
  display: grid;
  gap: 0.65rem;
}
.page-admin .gallery-upload-retry {
  border-color: rgba(200, 60, 60, 0.35);
  background: rgba(200, 40, 40, 0.06);
}
.gallery-upload-retry-info {
  margin: 0 !important;
}
.gallery-upload-flash {
  margin-bottom: 0.85rem;
}
.staff-card {
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 28, 0.72);
  margin-bottom: 1.25rem;
}
.page-staff .form-stack label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #b7c0e0;
  margin-bottom: 0.75rem;
}
.page-staff .form-stack label.check-row {
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem;
}
.page-staff .form-stack label.check-row input {
  width: auto;
}
.page-staff .form-stack input,
.page-staff .form-stack select,
.page-staff .form-stack textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: #f5f7ff;
  font: inherit;
}
.page-staff .msg { margin: 0 0 1rem; }
.page-staff .msg-success {
  background: rgba(46, 197, 255, 0.1);
  color: #8adfff;
  border: 1px solid rgba(46, 197, 255, 0.25);
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
}
.page-staff .msg-error {
  background: rgba(255, 80, 100, 0.12);
  color: #ffb0bb;
  border: 1px solid rgba(255, 80, 100, 0.28);
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
}
.staff-sub {
  margin: 1.5rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.staff-album-list {
  display: grid;
  gap: 1rem;
}
.staff-album-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.9rem;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.staff-album-cover {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
}
.staff-album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.staff-album-cover-empty {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem;
}
.staff-album-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.gallery-status-pill {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
  color: #ffd56a;
  background: rgba(255, 180, 60, 0.12);
  border: 1px solid rgba(255, 180, 60, 0.35);
}
.staff-album-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.65rem;
}
.staff-cover-preview {
  display: grid;
  gap: 0.5rem;
}
.staff-cover-preview img {
  width: min(220px, 100%);
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 560px) {
  .staff-album-card {
    grid-template-columns: 1fr;
  }
  .staff-album-cover {
    max-width: 160px;
  }
}
.staff-scan-actions {
  display: grid;
  gap: 0.55rem;
  margin: 0.85rem 0 1.15rem;
}
.staff-qr-reader {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(46, 197, 255, 0.25);
  background: #000;
  min-height: 0;
}
.staff-qr-reader:empty { display: none; }
.staff-qr-reader video { border-radius: 16px !important; }
.staff-result {
  margin-top: 1rem;
  padding: 1.25rem 1.15rem;
  border-radius: 18px;
  border: 2px solid transparent;
  text-align: center;
}
.staff-result.is-ok {
  background: rgba(45, 212, 160, 0.12);
  border-color: rgba(45, 212, 160, 0.55);
}
.staff-result.is-warn {
  background: rgba(255, 196, 60, 0.12);
  border-color: rgba(255, 196, 60, 0.55);
}
.staff-result.is-fail {
  background: rgba(255, 70, 90, 0.14);
  border-color: rgba(255, 80, 100, 0.65);
}
.staff-result-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.staff-result.is-ok .staff-result-title { color: #7dffd0; }
.staff-result.is-warn .staff-result-title { color: #ffd56a; }
.staff-result.is-fail .staff-result-title { color: #ff8a98; }
.staff-result-msg {
  margin: 0 0 1rem;
  color: #d5dbf5;
}
.staff-result-dl {
  margin: 0;
  text-align: left;
  display: grid;
  gap: 0.55rem;
}
.staff-result-dl > div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.staff-result-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b94b8;
  align-self: center;
}
.staff-result-dl dd {
  margin: 0;
  color: #fff;
  word-break: break-word;
}
.page-staff .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #d5dbf5;
  border-radius: 999px;
}

@media (max-width: 900px) {
  :root { --header-h: 92px; }

  .container,
  .container-wide,
  .header-inner {
    width: min(1120px, 94vw);
  }

  .brand-logo {
    height: 64px;
    max-width: min(220px, 52vw);
  }
  .header-inner {
    min-height: calc(var(--header-h) - 14px);
    padding: 0.4rem 0;
    gap: 0.5rem;
  }
  .header-wave { height: 10px; }
  .nav-toggle { display: block; }
  .header-buy { display: none; }
  .nav-desktop { display: none; }

  body.is-nav-open .site-header {
    z-index: 320;
    background: rgba(8, 8, 22, 0.98);
  }

  .festival-hero {
    min-height: auto;
    padding: 1.75rem 0 2.5rem;
  }
  .festival-hero-logo {
    display: flex;
    justify-content: center;
  }
  .festival-hero-copy .lead {
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
  }
  .hero-title, .page-title {
    font-size: clamp(2rem, 11vw, 2.75rem);
    line-height: 1.05;
  }
  .lead {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .btn-row {
    gap: 0.65rem;
  }
  .btn-row .btn {
    flex: 1 1 auto;
    min-width: min(100%, 9.5rem);
  }
  .logo-stage-hero {
    width: min(240px, 70vw);
    margin-top: 1rem;
  }
  .hero-scroll { display: none; }

  .page-head {
    padding: 1.75rem 0 0.5rem;
  }
  .section { padding: 2rem 0; }
  .section-tight { padding: 1.25rem 0 2.5rem; }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.5rem 0;
  }
  .footer-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .footer-cta-actions .btn { width: 100%; }
  .footer-main { padding: 2rem 0 1.75rem; gap: 1.75rem; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem 1.15rem;
  }
  .home-cta-inner .btn { width: 100%; }

  .ticket-info { position: static; }
  .tickets-layout { gap: 1rem; }
  .ticket-grid { grid-template-columns: 1fr; }

  .ticket-modal {
    padding: 0.65rem;
    align-items: end;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  }
  .ticket-modal-dialog {
    width: 100%;
    max-height: min(92dvh, 92vh);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 20px 20px 16px 16px;
  }
  .ticket-modal-dialog::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .ticket-modal-head { padding: 1.25rem 1.1rem 1rem; }
  .ticket-modal-form { padding: 1rem 1.1rem 1.2rem; gap: 0.85rem; }
  .ticket-modal-actions {
    grid-template-columns: 1fr;
    position: sticky;
    bottom: 0;
    padding-top: 0.35rem;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 24, 0.96) 30%);
  }
  .ticket-modal-actions .btn { width: 100%; }
  .ticket-modal-actions .btn-glass { order: 2; }

  .transfer-wrap { max-width: 100%; }
  .transfer-pay-grid { grid-template-columns: 1fr; }
  .transfer-qr {
    max-width: 280px;
    margin-inline: auto;
  }
  .transfer-qr-img {
    width: min(220px, 70vw);
    height: auto;
    aspect-ratio: 1;
  }
  .transfer-dl dd {
    flex-direction: column;
    align-items: flex-start;
  }
  .transfer-dl .iban,
  .transfer-note {
    width: 100%;
    word-break: break-word;
  }

  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner-actions .btn { width: 100%; }

  .map-stage { min-height: 220px; }
  .map-frame { min-height: 220px; height: 50vw; max-height: 320px; }
  .map-block-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .social-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .social-chip { text-align: center; justify-content: center; }

  .newsletter-fields {
    min-width: 0;
    width: 100%;
    flex-direction: column;
  }
  .newsletter-fields input,
  .newsletter-fields .btn { width: 100%; min-width: 0; }

  .cal-row,
  .event-row {
    grid-template-columns: 1fr;
  }


  .admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .admin-main { padding: 1rem 0.9rem 1.75rem; }
  .admin-content { padding: 1rem; border-radius: 16px; }
  .admin-sidebar {
    padding: 1rem 0.9rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .admin-brand { margin-bottom: 0.85rem; }
  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .admin-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
  }
  .admin-sidebar-foot {
    flex-direction: row;
    flex-wrap: wrap;
    border-top: none;
    padding-top: 0;
  }
  .admin-user-meta span { max-width: 140px; }
  .admin-top h1 { font-size: 1.35rem; }
}

@media (max-width: 480px) {
  :root { --header-h: 80px; }

  .container,
  .container-wide,
  .header-inner {
    width: min(1120px, 92vw);
  }

  .brand-logo {
    height: 52px;
    max-width: min(180px, 48vw);
  }

  .btn {
    padding: 0.7rem 1.15rem;
    letter-spacing: 0.1em;
  }

  .festival-hero-copy .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    line-height: 1.4;
  }

  .section-title {
    font-size: 1.15rem;
  }

  .glass-card,
  .world-card,
  .ticket-card,
  .ticket-info {
    border-radius: 16px;
  }

  .home-features,
  .split-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .beam, .header-wave span, .btn-pulse, .logo-ring, .hero-scroll span,
  .page-home .festival-hero .logo-halo,
  .page-home .festival-hero .logo-mark { animation: none !important; }
  .page-home .festival-hero .hero-title-shine {
    animation: none;
    -webkit-text-fill-color: var(--text);
    color: var(--text);
    background-image: none;
    filter: none;
  }
  .fx-cursor { display: none; }
}
