﻿/* ============================================================
   WONDERLAND HALLOWEEN 2026 — mobile-first, dark premium
   ============================================================ */

@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/Cinzel-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07060a;
  --bg-2: #0e0a13;
  --bg-3: #16101d;
  --blood: #8a0f1d;
  --red: #c81828;
  --fire: #ff7a18;
  --gold: #d8a94e;
  --gold-light: #f7e9c3;
  --smoke: #a89db5;
  --text: #efeaf2;
  --line: rgba(216, 169, 78, 0.22);
  --shadow-fire: 0 6px 30px rgba(200, 24, 40, 0.35);
  --font-head: 'Cinzel', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --sticky-h: 64px;
}

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

/* smooth scroll řeší Lenis (js/lenis.min.js); nativní smooth by se s ním pral */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h); /* room for mobile sticky bar */
}

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

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

.container { width: min(1160px, 92%); margin: 0 auto; }
.container-narrow { width: min(760px, 92%); }
.center { text-align: center; }

/* ---------- typography ---------- */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.9em;
  text-shadow: 0 2px 24px rgba(216, 169, 78, 0.25);
}
.section-title-sm {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.8em;
}
.section-lead {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--smoke);
  font-size: clamp(1rem, 2.5vw, 1.13rem);
}

section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 6px;
  padding: 0.85em 1.7em;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fire) 0%, var(--red) 55%, var(--blood) 100%);
  color: #fff;
  box-shadow: var(--shadow-fire);
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -80%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%, 62% { left: -80%; }
  88%, 100% { left: 135%; }
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(255, 122, 24, 0.5); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(216, 169, 78, 0.12); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(216, 169, 78, 0.14); color: var(--gold-light); }
.btn-lg { padding: 1em 2.2em; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.92), rgba(7, 6, 10, 0.75));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-logo img { width: clamp(150px, 22vw, 220px); height: auto; }
.header-nav { display: none; gap: 1.6rem; }
.header-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.header-nav a:hover { color: var(--gold-light); opacity: 1; }
.header-right { display: flex; align-items: center; gap: 0.7rem; }
.btn-header { padding: 0.6em 1.2em; font-size: 0.82rem; display: none; }
.lang-switch {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold);
  border-radius: 4px;
  padding: 0.35em 0.7em;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 8px;
  background: transparent; border: 1px solid var(--line); border-radius: 6px; cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: var(--gold-light); border-radius: 2px; transition: transform .25s, opacity .25s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  z-index: 89;
  background: linear-gradient(160deg, var(--bg-2), var(--bg));
  border-left: 1px solid var(--line);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transform: translateX(105%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,.6); }
.mobile-menu a {
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(216,169,78,0.12);
  padding-bottom: 0.7rem;
}
.lang-switch-mobile { align-self: flex-start; margin-top: 0.5rem; }

@media (min-width: 900px) {
  .header-nav { display: flex; }
  .btn-header { display: inline-block; }
  .menu-toggle { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 6.5rem 0 4rem;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-embers { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(200, 24, 40, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(7,6,10,0.55) 0%, rgba(7,6,10,0.25) 35%, rgba(7,6,10,0.55) 75%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 3; width: min(880px, 92%); }
.hero-kicker {
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: clamp(0.62rem, 2vw, 0.85rem);
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.hero-title { width: min(680px, 88vw); height: auto; margin: 0 auto 1.2rem; filter: drop-shadow(0 6px 28px rgba(0,0,0,0.75)); }
.hero-date {
  font-family: var(--font-head);
  font-size: clamp(1rem, 3.4vw, 1.45rem);
  color: #fff;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.6em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.hero-date-strong { color: var(--gold-light); }
.hero-date-sep { color: var(--red); font-size: 0.8em; }
.hero-hook {
  margin: 0.9rem auto 1.6rem;
  max-width: 560px;
  color: var(--text);
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}

.countdown {
  display: flex; justify-content: center; align-items: stretch; gap: clamp(0.3rem, 1.5vw, 0.8rem);
  margin-bottom: 1.8rem;
}
.cd-box {
  background: rgba(7, 6, 10, 0.65);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem clamp(0.5rem, 2.4vw, 1.1rem);
  min-width: clamp(58px, 16vw, 88px);
  backdrop-filter: blur(6px);
}
.cd-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 6vw, 2.2rem);
  color: var(--gold-light);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.cd-label { font-size: clamp(0.58rem, 1.8vw, 0.72rem); text-transform: uppercase; letter-spacing: 0.12em; color: var(--smoke); }
.cd-sep { font-family: var(--font-head); font-size: clamp(1.2rem, 4vw, 1.8rem); color: var(--red); align-self: center; }

.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-bottom: 1rem; }
.hero-micro { font-size: 0.82rem; color: var(--smoke); letter-spacing: 0.03em; text-shadow: 0 1px 8px rgba(0,0,0,.8); }

.hero-scroll {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 44px;
  border: 2px solid var(--line); border-radius: 14px;
}
.hero-scroll span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px;
  margin-left: -2px; border-radius: 2px; background: var(--gold);
  animation: scrollcue 1.8s infinite ease-in-out;
}
@keyframes scrollcue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   QUICK INFO — ornamental double-framed strip
   ============================================================ */
.quick-info { padding: clamp(2rem, 5vw, 3.5rem) 0; background: var(--bg); }
.qi-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(216, 169, 78, 0.06), transparent 65%),
    var(--bg);
}
.qi-frame::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px solid rgba(216, 169, 78, 0.12);
  border-radius: 2px;
  pointer-events: none;
}
.qi-orn {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -55%);
  background: var(--bg);
  color: var(--gold);
  font-size: 0.85rem;
  padding: 0 0.7em;
  line-height: 1;
}
.qi-grid { display: grid; grid-template-columns: 1fr 1fr; }
.qi-cell {
  position: relative;
  text-align: center;
  padding: 1.4rem 1rem 1.2rem;
}
/* hairline separators: vertical between columns, horizontal between rows */
.qi-cell:nth-child(odd)::after {
  content: '';
  position: absolute; top: 22%; bottom: 22%; right: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
}
.qi-cell:nth-child(-n+2)::before {
  content: '';
  position: absolute; left: 14%; right: 14%; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.qi-ico {
  width: 26px; height: 26px;
  color: var(--gold);
  margin-bottom: 0.55rem;
  filter: drop-shadow(0 0 6px rgba(216, 169, 78, 0.35));
}
.qi-label {
  font-family: var(--font-head);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.qi-value { font-size: 0.93rem; color: var(--gold-light); line-height: 1.45; }
@media (min-width: 768px) {
  .qi-grid { grid-template-columns: repeat(4, 1fr); }
  .qi-cell { padding: 1.7rem 1.2rem 1.5rem; }
  .qi-cell::after {
    content: '';
    position: absolute; top: 22%; bottom: 22%; right: 0; width: 1px;
    background: linear-gradient(180deg, transparent, var(--line), transparent);
  }
  .qi-cell:last-child::after { display: none; }
  .qi-cell:nth-child(-n+2)::before { display: none; }
}

/* ============================================================
   WHY
   ============================================================ */
.why { overflow: hidden; }
.why-bg { position: absolute; inset: 0; z-index: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.why::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(7,6,10,0.72) 30%, rgba(7,6,10,0.72) 70%, var(--bg) 100%);
}
.why-inner { position: relative; z-index: 2; }
.why-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 0 0 2.4rem;
}
.why-grid li {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.75rem;
  padding: 1.4rem 0.9rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background:
    linear-gradient(170deg, rgba(16, 11, 20, 0.92), rgba(10, 7, 13, 0.92)) padding-box,
    linear-gradient(165deg, rgba(216, 169, 78, 0.55), rgba(216, 169, 78, 0.08) 45%, rgba(200, 24, 40, 0.35)) border-box;
  backdrop-filter: blur(4px);
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-grid li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(216, 169, 78, 0.1);
}
.why-emblem {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(216, 169, 78, 0.55);
  background: radial-gradient(circle at 50% 40%, rgba(216, 169, 78, 0.12), transparent 70%);
  transform: rotate(45deg);
  border-radius: 3px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.why-svg {
  width: 22px; height: 22px;
  color: var(--gold);
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 6px rgba(216, 169, 78, 0.4));
}
.why-grid li:hover .why-svg { color: var(--gold-light); }
.why-text { color: var(--text); line-height: 1.45; }
@media (min-width: 700px) { .why-grid { gap: 1rem; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } .why-grid li { padding: 1.7rem 1rem 1.5rem; } }

/* ============================================================
   TICKETS
   ============================================================ */
.tickets { background: radial-gradient(ellipse at 50% 0%, rgba(138, 15, 29, 0.16), transparent 60%), var(--bg); }
.wave-banner {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  width: fit-content; margin: 0 auto 1rem;
  background: rgba(200, 24, 40, 0.12);
  border: 1px solid rgba(200, 24, 40, 0.45);
  color: #ffd9dd;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
  text-align: center;
}
.wave-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--fire); flex-shrink: 0; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,122,24,0.5); } 50% { box-shadow: 0 0 0 8px rgba(255,122,24,0); } }

.wave-progress { max-width: 460px; margin: 0 auto 1rem; }
.wave-progress-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; border: 1px solid var(--line); }
.wave-progress-fill { height: 100%; width: 0; border-radius: 4px; background: linear-gradient(90deg, var(--fire), var(--red)); transition: width 1.2s ease; }
.wave-progress-label { text-align: center; font-size: 0.8rem; color: var(--smoke); margin-top: 0.4rem; }

.tix-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin: 2.2rem 0 1.6rem; }
.tix-card {
  position: relative;
  background: linear-gradient(165deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.8rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
}
.tix-card-vip {
  border-color: var(--gold);
  background: linear-gradient(165deg, #171021, #1d1116);
  box-shadow: 0 0 50px rgba(216, 169, 78, 0.12);
}
.tix-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #b0802a);
  color: #1a1206;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 1.1em;
  border-radius: 999px;
  white-space: nowrap;
}
.tix-name { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-light); text-align: center; }
.tix-tag { text-align: center; color: var(--smoke); font-size: 0.88rem; min-height: 2.6em; margin: 0.3rem 0 0.8rem; }
.tix-price { text-align: center; margin-bottom: 0.2rem; }
.tix-price-num { font-family: var(--font-head); font-size: 2.5rem; color: #fff; }
.tix-price-cur { font-family: var(--font-head); font-size: 1.1rem; color: var(--smoke); margin-left: 0.3em; }
.tix-price-from { color: var(--smoke); font-size: 1rem; margin-right: 0.2em; }
.tix-wave-note { text-align: center; font-size: 0.76rem; color: var(--fire); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; }
.tix-list { list-style: none; margin: 0 0 1.6rem; flex: 1; }
.tix-list li {
  padding: 0.5rem 0 0.5rem 1.7rem;
  position: relative;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tix-list li::before { content: '✦'; position: absolute; left: 0.2rem; color: var(--gold); font-size: 0.8rem; }
.tix-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem;
  color: var(--smoke); font-size: 0.84rem;
}
@media (min-width: 900px) {
  .tix-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .tix-card-vip { transform: scale(1.04); z-index: 1; }
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience { background: var(--bg-2); }
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.4rem; }
.exp-tile {
  position: relative; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.exp-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.exp-tile:hover img { transform: scale(1.05); }
.exp-tile figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.2rem 1.2rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(7,6,10,0.92));
  display: flex; flex-direction: column; gap: 0.15rem;
}
.exp-tile strong { font-family: var(--font-head); color: var(--gold-light); font-size: 1.15rem; letter-spacing: 0.04em; }
.exp-tile span { font-size: 0.85rem; color: var(--smoke); }
@media (min-width: 768px) {
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .exp-tile-wide { grid-column: span 2; aspect-ratio: auto; }
}

/* ============================================================
   PROGRAM
   ============================================================ */
.program { background: var(--bg); }
.program-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.program .section-title { text-align: left; }
.timeline { list-style: none; margin: 0 0 1.5rem; position: relative; padding-left: 0.2rem; }
.timeline li {
  display: flex; align-items: baseline; gap: 1.1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(216,169,78,0.1);
}
.tl-time {
  font-family: var(--font-head);
  color: var(--fire);
  font-size: 1.05rem;
  min-width: 4.2em;
  font-variant-numeric: tabular-nums;
}
.tl-label { color: var(--text); font-size: 0.97rem; }
.program-note { color: var(--smoke); font-size: 0.82rem; margin-bottom: 1.4rem; }
.program-img img { border-radius: 14px; border: 1px solid var(--line); }
@media (min-width: 900px) { .program-inner { grid-template-columns: 3fr 2fr; gap: 4rem; } }

/* ============================================================
   CONTEST
   ============================================================ */
.contest { overflow: hidden; }
.contest-bg { position: absolute; inset: 0; }
.contest-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.contest::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(7,6,10,0.6) 35%, rgba(7,6,10,0.75) 100%);
}
.contest-inner { position: relative; z-index: 1; }
.contest-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-bottom: 2.2rem; }
.contest-chips span {
  font-family: var(--font-head);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: rgba(7,6,10,0.55);
  border-radius: 999px;
  padding: 0.5em 1.3em;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

/* ============================================================
   COSTUMES
   ============================================================ */
.costumes { background: var(--bg-2); }
.cos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 2rem; }
.cos-grid img {
  border-radius: 10px; border: 1px solid var(--line);
  aspect-ratio: 3 / 4; object-fit: cover; width: 100%;
}
.cos-mandatory {
  max-width: 620px; margin: 0 auto;
  border: 1px solid var(--red);
  background: rgba(138, 15, 29, 0.14);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  text-align: center;
}
.cos-mandatory strong { display: block; font-family: var(--font-head); color: #ffb9c0; font-size: 1.15rem; margin-bottom: 0.3rem; letter-spacing: 0.04em; }
.cos-mandatory span { color: var(--text); font-size: 0.92rem; }
@media (min-width: 768px) { .cos-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   HISTORY / GALLERY
   ============================================================ */
.history { background: var(--bg); }
.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  max-width: 860px; margin: 0 auto 3rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  color: var(--gold-light);
  line-height: 1.1;
}
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--smoke); }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}
.g-item {
  position: relative; overflow: hidden; border-radius: 10px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute; top: 0.5rem; left: 0.5rem;
  background: rgba(7,6,10,0.75);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  padding: 0.2em 0.6em;
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   VENUE
   ============================================================ */
.venue { background: var(--bg-2); }
.venue-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.venue .section-title { text-align: left; }
.venue-address { font-style: normal; color: var(--smoke); margin: 1.2rem 0 1.5rem; line-height: 1.7; }
.venue-address strong { color: var(--gold-light); font-family: var(--font-head); }
.venue-map { margin-top: 1.2rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.venue-map iframe { display: block; width: 100%; height: 320px; border: 0; filter: grayscale(0.5) contrast(1.05); }
.venue-img img { border-radius: 14px; border: 1px solid var(--line); }
@media (min-width: 900px) { .venue-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ============================================================
   VIP FORM + LEAD
   ============================================================ */
.vip-form-sec { background: var(--bg); }
.vip-form { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.vip-form input, .vip-form textarea, .lead-form input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  padding: 0.85em 1em;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.vip-form input:focus, .vip-form textarea:focus, .lead-form input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,169,78,0.15);
}
.form-status { text-align: center; font-size: 0.9rem; color: var(--gold-light); min-height: 1.4em; margin-top: 0.6rem; }

.lead { background: radial-gradient(ellipse at 50% 100%, rgba(138,15,29,0.18), transparent 65%), var(--bg-2); }
.lead-form { display: flex; gap: 0.7rem; max-width: 480px; margin: 1.4rem auto 0; flex-wrap: wrap; }
.lead-form input { flex: 1 1 220px; }
.lead-gdpr { font-size: 0.74rem; color: var(--smoke); margin-top: 1rem; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { background: var(--bg); padding-bottom: 3rem; }
.partners-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(1.5rem, 6vw, 4rem);
  padding: 1.4rem 0 2rem;
}
.partners-row img { height: clamp(36px, 6vw, 56px); width: auto; opacity: 0.8; }
.partners-cta { text-align: center; max-width: 560px; margin: 0 auto; }
.partners-cta p { color: var(--smoke); font-size: 0.92rem; margin-bottom: 1.1rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 3rem 1rem 1.2rem;
  font-family: var(--font-head);
  font-size: 0.98rem;
  color: var(--gold-light);
  position: relative;
  letter-spacing: 0.02em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute; right: 1.1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 1.4rem; font-family: var(--font-body);
  transition: transform 0.25s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 1.2rem 1.1rem; color: var(--smoke); font-size: 0.92rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #050408; border-top: 1px solid var(--line); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; margin-bottom: 2.5rem; }
.footer-logo { width: 200px; margin-bottom: 0.9rem; }
.footer-claim { color: var(--smoke); font-size: 0.88rem; max-width: 300px; }
.footer-social { display: flex; gap: 1.2rem; margin-top: 1rem; }
.footer-social a { color: var(--gold); text-decoration: none; font-size: 0.88rem; }
.footer-social a:hover { color: var(--gold-light); }
.footer-col h3 { font-family: var(--font-head); color: var(--gold-light); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 0.05em; }
.footer-col p, .footer-col li { color: var(--smoke); font-size: 0.88rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: var(--smoke); }
.footer-col a:hover { color: var(--gold-light); }
.footer-trust { margin-top: 1rem; line-height: 1.8; }
.footer-copy { text-align: center; color: #5d5568; font-size: 0.78rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(7,6,10,0.88), rgba(7,6,10,0.97));
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.sticky-bar .btn { padding: 0.8em 0.5em; font-size: 0.88rem; }
@media (min-width: 900px) {
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   MODAL / COOKIE / LIGHTBOX
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 3, 6, 0.8);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
}
.modal[hidden] { display: none; }
.modal-box {
  position: relative;
  max-width: 440px;
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 2.4rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(216,169,78,0.15);
}
.modal-box h3 { font-family: var(--font-head); color: var(--gold-light); font-size: 1.5rem; margin-bottom: 0.7rem; }
.modal-box p { color: var(--smoke); font-size: 0.95rem; margin-bottom: 1.4rem; }
.modal-close {
  position: absolute; top: 0.6rem; right: 0.9rem;
  background: none; border: none; color: var(--smoke);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: #fff; }

.cookie-banner {
  position: fixed;
  left: 50%; transform: translateX(-50%);
  bottom: calc(var(--sticky-h) + 12px);
  z-index: 110;
  width: min(560px, 94vw);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 60px rgba(0,0,0,0.6);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 0.84rem; color: var(--smoke); margin-bottom: 0.8rem; }
.cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.55em 1.2em; font-size: 0.8rem; }
@media (min-width: 900px) { .cookie-banner { bottom: 16px; } }

.lightbox {
  position: fixed; inset: 0; z-index: 130;
  background: rgba(4, 3, 6, 0.93);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 90vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,0.8); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.4rem;
  background: none; border: none; color: #fff; font-size: 2.4rem; cursor: pointer;
}

/* ============================================================
   CINEMATIC LAYER — grain, vignette, progress, hero drama
   ============================================================ */
.fx-grain {
  position: fixed; inset: -60%;
  width: 220%; height: 220%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E") repeat;
  opacity: 0.055;
  z-index: 96;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: grainShift 1.1s steps(5) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2%, 1.4%); }
  40%  { transform: translate(1.6%, -1.2%); }
  60%  { transform: translate(-1.2%, -1.8%); }
  80%  { transform: translate(2%, 1%); }
  100% { transform: translate(0, 0); }
}
.fx-vignette {
  position: fixed; inset: 0;
  z-index: 78;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 42%, transparent 52%, rgba(4, 3, 7, 0.5) 100%);
}
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 100; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--blood), var(--fire), var(--gold));
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.65);
}

/* --- hero entrance & living background --- */
.hero-video { animation: heroZoom 16s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }

.anim-up {
  opacity: 0;
  animation: heroUp 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.anim-title {
  opacity: 0;
  animation:
    heroTitle 1.4s cubic-bezier(0.16, 0.8, 0.26, 1) forwards,
    titleBreath 7s ease-in-out 2s infinite alternate;
  animation-delay: var(--d, 0s), 2s;
}
@keyframes heroTitle {
  0%   { opacity: 0; transform: scale(1.14); filter: blur(12px) brightness(2); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
}
@keyframes titleBreath {
  from { transform: translateY(0);   filter: drop-shadow(0 6px 26px rgba(255, 122, 24, 0.12)); }
  to   { transform: translateY(-7px); filter: drop-shadow(0 10px 34px rgba(255, 122, 24, 0.3)); }
}
.hero-content { will-change: transform, opacity; }

/* --- ornamental section titles + blur-in reveal --- */
.section-title::before {
  content: '\2726';
  display: block;
  font-size: 0.42em;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 0.65em;
  text-shadow: 0 0 14px rgba(216, 169, 78, 0.65);
  letter-spacing: 0;
}
.section-title::after {
  content: '';
  display: block;
  width: 96px; height: 1px;
  margin: 0.6em auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}
.program .section-title::after,
.venue .section-title::after { margin-left: 0; background: linear-gradient(90deg, var(--gold), transparent); }
.section-title.reveal, .strip-title.reveal {
  filter: blur(10px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}
.section-title.reveal.is-visible, .strip-title.reveal.is-visible { filter: blur(0); }

/* ============================================================
   FILM STRIP — dual auto-marquee
   ============================================================ */
.strip {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(138, 15, 29, 0.14), transparent 55%),
    var(--bg-2);
}
.strip-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: clamp(1.8rem, 5vw, 3rem);
  text-shadow: 0 2px 22px rgba(216, 169, 78, 0.25);
}
.strip-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
  transform: rotate(-1.6deg) scale(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.strip-row {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: driftL var(--dur, 70s) linear infinite;
}
.strip-row[data-dir="right"] { animation-name: driftR; }
.strip-row:hover { animation-play-state: paused; }
@keyframes driftL { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes driftR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.strip-row img {
  height: clamp(150px, 24vw, 250px);
  width: auto;
  margin-right: clamp(0.7rem, 1.6vw, 1.1rem);
  border-radius: 8px;
  border: 1px solid rgba(216, 169, 78, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  filter: saturate(1.06) contrast(1.03);
  transition: transform 0.35s ease, filter 0.35s ease, border-color 0.35s ease;
}
.strip-row img:hover {
  transform: scale(1.045);
  filter: saturate(1.15) brightness(1.08);
  border-color: rgba(216, 169, 78, 0.7);
}

/* ============================================================
   EPIC POLISH — vip shimmer, timeline, gallery mosaic, tiles
   ============================================================ */
.tix-card-vip {
  border: 1px solid transparent;
  background:
    linear-gradient(165deg, #171021, #1d1116) padding-box,
    linear-gradient(120deg, rgba(216, 169, 78, 0.95), rgba(216, 169, 78, 0.2) 30%, rgba(247, 233, 195, 0.95) 50%, rgba(200, 24, 40, 0.55) 72%, rgba(216, 169, 78, 0.95)) border-box;
  background-size: 100% 100%, 320% 320%;
  animation: vipShimmer 7s linear infinite;
}
@keyframes vipShimmer {
  from { background-position: 0 0, 0% 50%; }
  to   { background-position: 0 0, 320% 50%; }
}

.timeline li { position: relative; padding-left: 1.4rem; }
.timeline li::before {
  content: '';
  position: absolute; left: 0; top: 1.15em;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(216, 169, 78, 0.8);
}
.timeline li.reveal { transition-delay: calc(var(--i, 0) * 90ms); }
.timeline li:nth-child(1) { --i: 0; }
.timeline li:nth-child(2) { --i: 1; }
.timeline li:nth-child(3) { --i: 2; }
.timeline li:nth-child(4) { --i: 3; }
.timeline li:nth-child(5) { --i: 4; }
.timeline li:nth-child(6) { --i: 5; }

/* gallery -> cinematic mosaic */
.gallery { grid-auto-rows: clamp(110px, 27vw, 160px); grid-auto-flow: dense; }
.g-item { aspect-ratio: auto; }
.g-item:nth-child(1), .g-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.g-item::after {
  content: '';
  position: absolute; inset: 7px;
  border: 1px solid rgba(216, 169, 78, 0);
  border-radius: 6px;
  pointer-events: none;
  transition: border-color 0.35s ease;
}
.g-item:hover::after { border-color: rgba(216, 169, 78, 0.65); }
.g-item img { filter: brightness(0.92); transition: transform 0.6s ease, filter 0.6s ease; }
.g-item:hover img { transform: scale(1.07); filter: brightness(1.06) saturate(1.1); }
@media (min-width: 768px) { .gallery { grid-auto-rows: clamp(130px, 13vw, 190px); } }

/* experience tiles: caption rises, image awakens */
.exp-tile img { filter: brightness(0.88); }
.exp-tile figcaption { transform: translateY(6px); transition: transform 0.4s ease; }
.exp-tile:hover figcaption { transform: none; }
.exp-tile:hover img { transform: scale(1.06); filter: brightness(1.04); }

/* section backgrounds get room for parallax drift */
.why-bg img, .contest-bg img { will-change: transform; }

/* ============================================================
   REDUCED MOTION — vypnout kinematiku
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fx-grain, .hero-video, .strip-row, .btn-primary::after, .tix-card-vip { animation: none !important; }
  .anim-up, .anim-title { opacity: 1 !important; animation: none !important; }
  .strip-rows { transform: none; }
}

/* ============================================================
   SPOOKY AI LAYER — cine bands, ambient candles, fog, bats
   ============================================================ */

/* full-bleed video interludes */
.cine-band {
  position: relative;
  height: clamp(300px, 58vh, 560px);
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cine-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cine-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 22%, transparent 78%, var(--bg) 100%),
    radial-gradient(ellipse at 50% 55%, transparent 40%, rgba(7, 6, 10, 0.55) 100%);
}
.cine-claim {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 5.5vw, 2.8rem);
  line-height: 1.25;
  color: var(--gold-light);
  text-align: center;
  width: min(860px, 90%);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9), 0 0 60px rgba(216, 169, 78, 0.25);
}

/* candle ambience behind ticket cards */
.tickets { overflow: hidden; }
.tickets-ambient {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
}
.tickets > .container { position: relative; }

/* AI backgrounds: venue (gothic Prague), VIP form (mask still) */
.venue-bg, .vipf-bg { position: absolute; inset: 0; overflow: hidden; }
.venue-bg img, .vipf-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.venue-bg img { opacity: 0.38; }
.vipf-bg img { opacity: 0.22; }
.venue::before, .vip-form-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(7, 6, 10, 0.55) 30%, rgba(7, 6, 10, 0.7) 70%, var(--bg) 100%);
}
.venue-inner, .vip-form-sec .container { position: relative; z-index: 1; }

/* gold engraved ornament dividers (black bg vanishes via screen blend) */
.orn-img {
  display: block;
  width: min(440px, 78%);
  height: auto;
  margin: 0 auto 1.6rem;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.orn-img-sm { width: min(320px, 62%); margin-bottom: 2.2rem; }

/* drifting fog layers (hero) */
.fog-layer {
  position: absolute;
  left: -20%; right: -20%;
  height: 42%;
  bottom: -6%;
  z-index: 2;
  pointer-events: none;
  background: url('../img/fog-tex-1600.webp') center / 100% 100% no-repeat;
  mix-blend-mode: screen;
  opacity: 0.3;
  animation: fogDrift 46s linear infinite alternate;
}
.fog-b {
  bottom: -14%;
  opacity: 0.2;
  transform: scaleX(-1);
  animation-duration: 64s;
  animation-direction: alternate-reverse;
}
@keyframes fogDrift {
  from { translate: -6% 0; }
  to   { translate: 6% 0; }
}

/* flying bats */
.bat {
  position: fixed;
  top: 0; left: 0;
  width: var(--bat-size, 44px);
  height: auto;
  color: #0a0810;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  z-index: 85;
  pointer-events: none;
  will-change: transform;
}
.bat svg { display: block; width: 100%; height: auto; overflow: visible; }
.bat .bat-wl, .bat .bat-wr { transform-box: fill-box; }
.bat .bat-wl { transform-origin: 92% 60%; animation: flapL 0.2s ease-in-out infinite alternate; }
.bat .bat-wr { transform-origin: 8% 60%;  animation: flapR 0.2s ease-in-out infinite alternate; }
@keyframes flapL { from { transform: rotate(6deg); }  to { transform: rotate(-34deg); } }
@keyframes flapR { from { transform: rotate(-6deg); } to { transform: rotate(34deg); } }

/* candle-flicker on section title stars */
.section-title::before { animation: starFlicker 3.4s ease-in-out infinite; }
@keyframes starFlicker {
  0%, 100% { opacity: 0.9;  text-shadow: 0 0 14px rgba(216, 169, 78, 0.65); }
  47%      { opacity: 0.75; text-shadow: 0 0 8px rgba(216, 169, 78, 0.4); }
  52%      { opacity: 1;    text-shadow: 0 0 20px rgba(255, 122, 24, 0.8); }
  60%      { opacity: 0.85; text-shadow: 0 0 12px rgba(216, 169, 78, 0.55); }
}

@media (prefers-reduced-motion: reduce) {
  .fog-layer, .section-title::before { animation: none !important; }
  .bat { display: none !important; }
}
/* ============================================================
   LINEUP — DJ cards
   ============================================================ */
.lineup { background: radial-gradient(ellipse at 50% 100%, rgba(138, 15, 29, 0.13), transparent 60%), var(--bg); }
.lineup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 980px;
  margin: 0 auto 1.6rem;
}
.dj-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(170deg, rgba(18, 12, 22, 0.95), rgba(9, 6, 12, 0.95)) padding-box,
    linear-gradient(165deg, rgba(216, 169, 78, 0.6), rgba(216, 169, 78, 0.1) 45%, rgba(200, 24, 40, 0.4)) border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dj-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 34px rgba(216, 169, 78, 0.12); }
.dj-mono {
  position: relative;
  width: 104px; height: 104px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 2.9rem;
  line-height: 1;
  color: var(--gold-light);
  text-shadow: 0 0 22px rgba(216, 169, 78, 0.55);
}
.dj-mono::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(216, 169, 78, 0.6);
  border-radius: 6px;
  transform: rotate(45deg);
  background: radial-gradient(circle at 50% 38%, rgba(216, 169, 78, 0.13), transparent 70%);
}
.dj-mono::after {
  content: '';
  position: absolute; inset: 16px;
  border: 1px solid rgba(216, 169, 78, 0.22);
  border-radius: 4px;
  transform: rotate(45deg);
}
.dj-name {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-align: center;
}
.dj-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(216, 169, 78, 0.45);
  border-radius: 999px;
  padding: 0.35em 1.2em;
  background: rgba(7, 6, 10, 0.5);
}
.dj-card-photo { padding: 0; }
.dj-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dj-card-photo:hover .dj-photo { transform: scale(1.05); }
.dj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 6, 10, 0.92) 100%);
}
.dj-logo {
  position: absolute;
  left: 50%; bottom: 3.4rem;
  transform: translateX(-50%);
  width: min(220px, 62%);
  height: auto;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.8));
}
.dj-tag-photo { position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%); }
.lineup-note { text-align: center; color: var(--smoke); font-size: 0.88rem; }
@media (min-width: 700px) {
  .lineup-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .dj-card-photo { transform: scale(1.03); z-index: 1; }
  .dj-card-photo:hover { transform: scale(1.03) translateY(-4px); }
}

/* partner text wordmarks (no logo files yet) */
.partner-mark { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.pm-big {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4.5vw, 2.3rem);
  letter-spacing: 0.18em;
  color: var(--gold-light);
  opacity: 0.92;
  text-shadow: 0 0 24px rgba(216, 169, 78, 0.25);
}
.pm-sub {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--smoke);
}
/* ============================================================
   EPIC TICKETS — real halloween ticket look + grasping hands
   ============================================================ */
.tix-card {
  -webkit-mask-image:
    radial-gradient(circle 13px at 0 calc(100% - 132px), transparent 12px, #000 13px),
    radial-gradient(circle 13px at 100% calc(100% - 132px), transparent 12px, #000 13px);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle 13px at 0 calc(100% - 132px), transparent 12px, #000 13px),
    radial-gradient(circle 13px at 100% calc(100% - 132px), transparent 12px, #000 13px);
  mask-composite: intersect;
}
.tix-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(216, 169, 78, 0.25);
  padding-bottom: 0.55rem;
  margin-bottom: 1rem;
}
.tix-serial { color: var(--smoke); letter-spacing: 0.12em; }
.tix-perfo {
  height: 0;
  border-top: 2px dashed rgba(216, 169, 78, 0.35);
  margin: 0.3rem -1.5rem 1.05rem;
}
.tix-barcode { margin-top: 0.7rem; }
.tix-barcode::before {
  content: '';
  display: block;
  height: 22px;
  background: repeating-linear-gradient(90deg,
    rgba(247, 233, 195, 0.8) 0 2px, transparent 2px 5px,
    rgba(247, 233, 195, 0.8) 5px 6px, transparent 6px 11px,
    rgba(247, 233, 195, 0.8) 11px 14px, transparent 14px 16px,
    rgba(247, 233, 195, 0.8) 16px 17px, transparent 17px 21px);
  opacity: 0.4;
}
.tix-barcode span {
  display: block;
  text-align: center;
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  color: var(--smoke);
  margin-top: 5px;
  font-family: var(--font-head);
}

/* hands grasping at the tickets */
.tickets { padding-bottom: clamp(170px, 26vw, 330px); }
.tix-hands-strip {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: clamp(140px, 24vw, 300px);
  background: url('../img/hands-strip-1800.webp') bottom center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
  animation: handsRise 7s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes handsRise {
  from { transform: translateY(16px); }
  to   { transform: translateY(-8px); }
}
.tix-hand {
  display: none;
  position: absolute;
  width: clamp(150px, 16vw, 290px);
  height: auto;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1200px) {
  .tix-hand { display: block; }
  .tix-hand-l {
    left: max(-30px, calc(50% - 46rem));
    bottom: 32%;
    transform-origin: bottom left;
    animation: swayL 6.5s ease-in-out infinite alternate;
  }
  .tix-hand-r {
    right: max(-30px, calc(50% - 46rem));
    bottom: 28%;
    transform-origin: bottom right;
    animation: swayR 5.2s ease-in-out infinite alternate;
  }
}
@keyframes swayL {
  from { transform: rotate(-4deg) translateY(10px); }
  to   { transform: rotate(3deg) translateY(-8px); }
}
@keyframes swayR {
  from { transform: rotate(4deg) translateY(8px) scale(1); filter: brightness(1); }
  to   { transform: rotate(-3deg) translateY(-10px) scale(1.03); filter: brightness(1.18); }
}

/* Reenio checkout embed */
.checkout-block {
  margin-top: 3rem;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(170deg, rgba(16, 11, 20, 0.96), rgba(10, 7, 13, 0.96)) padding-box,
    linear-gradient(165deg, rgba(216, 169, 78, 0.6), rgba(216, 169, 78, 0.12) 45%, rgba(200, 24, 40, 0.45)) border-box;
  padding: clamp(1.2rem, 3.5vw, 2.4rem);
}
.checkout-title {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1.4rem;
}
.checkout-frame {
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  min-height: 480px;
}
.checkout-frame iframe { display: block; width: 100%; border: 0; border-radius: 6px; }
.checkout-fallback { text-align: center; margin-top: 1rem; }
.checkout-fallback a { color: var(--smoke); font-size: 0.85rem; }
.checkout-fallback a:hover { color: var(--gold-light); }

@media (prefers-reduced-motion: reduce) {
  .tix-hands-strip, .tix-hand { animation: none !important; }
}
/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-main { padding: 8rem 0 4rem; }
.legal-main h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  color: var(--gold-light);
  margin-bottom: 0.4em;
}
.legal-updated { color: var(--smoke); font-size: 0.85rem; margin-bottom: 2.2rem; }
.legal-main h2 {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--gold);
  margin: 2.2rem 0 0.7rem;
}
.legal-main p, .legal-main li { color: var(--text); font-size: 0.95rem; margin-bottom: 0.7rem; }
.legal-main ul, .legal-main ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-main a { color: var(--gold); }
.legal-main a:hover { color: var(--gold-light); }
.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; font-size: 0.85rem; }
.legal-table th, .legal-table td { border: 1px solid rgba(216, 169, 78, 0.25); padding: 0.55rem 0.7rem; text-align: left; vertical-align: top; }
.legal-table th { color: var(--gold); font-family: var(--font-head); font-weight: 700; background: rgba(216, 169, 78, 0.06); }
.legal-table td { color: var(--smoke); }
.legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-back:hover { color: var(--gold-light); }
.legal-footer { border-top: 1px solid var(--line); padding: 1.6rem 0 2.4rem; text-align: center; color: #5d5568; font-size: 0.78rem; }
/* ============================================================
   VINTAGE TICKET ART — engraved orloj tickets (ref redesign)
   ============================================================ */
.tix-card {
  border: none;
  background:
    linear-gradient(180deg, rgba(7, 6, 10, 0.18), rgba(7, 6, 10, 0.42) 55%, rgba(7, 6, 10, 0.6)) ,
    url('../img/ticket-dark-760.webp') center / 100% 100% no-repeat,
    #0c0a10;
  clip-path: polygon(0% 8px, 1.25% 0%, 2.5% 8px, 3.75% 0%, 5% 8px, 6.25% 0%, 7.5% 8px, 8.75% 0%, 10% 8px, 11.25% 0%, 12.5% 8px, 13.75% 0%, 15% 8px, 16.25% 0%, 17.5% 8px, 18.75% 0%, 20% 8px, 21.25% 0%, 22.5% 8px, 23.75% 0%, 25% 8px, 26.25% 0%, 27.5% 8px, 28.75% 0%, 30% 8px, 31.25% 0%, 32.5% 8px, 33.75% 0%, 35% 8px, 36.25% 0%, 37.5% 8px, 38.75% 0%, 40% 8px, 41.25% 0%, 42.5% 8px, 43.75% 0%, 45% 8px, 46.25% 0%, 47.5% 8px, 48.75% 0%, 50% 8px, 51.25% 0%, 52.5% 8px, 53.75% 0%, 55% 8px, 56.25% 0%, 57.5% 8px, 58.75% 0%, 60% 8px, 61.25% 0%, 62.5% 8px, 63.75% 0%, 65% 8px, 66.25% 0%, 67.5% 8px, 68.75% 0%, 70% 8px, 71.25% 0%, 72.5% 8px, 73.75% 0%, 75% 8px, 76.25% 0%, 77.5% 8px, 78.75% 0%, 80% 8px, 81.25% 0%, 82.5% 8px, 83.75% 0%, 85% 8px, 86.25% 0%, 87.5% 8px, 88.75% 0%, 90% 8px, 91.25% 0%, 92.5% 8px, 93.75% 0%, 95% 8px, 96.25% 0%, 97.5% 8px, 98.75% 0%, 100% 8px, 100% calc(100% - 8px), 98.75% 100%, 97.5% calc(100% - 8px), 96.25% 100%, 95% calc(100% - 8px), 93.75% 100%, 92.5% calc(100% - 8px), 91.25% 100%, 90% calc(100% - 8px), 88.75% 100%, 87.5% calc(100% - 8px), 86.25% 100%, 85% calc(100% - 8px), 83.75% 100%, 82.5% calc(100% - 8px), 81.25% 100%, 80% calc(100% - 8px), 78.75% 100%, 77.5% calc(100% - 8px), 76.25% 100%, 75% calc(100% - 8px), 73.75% 100%, 72.5% calc(100% - 8px), 71.25% 100%, 70% calc(100% - 8px), 68.75% 100%, 67.5% calc(100% - 8px), 66.25% 100%, 65% calc(100% - 8px), 63.75% 100%, 62.5% calc(100% - 8px), 61.25% 100%, 60% calc(100% - 8px), 58.75% 100%, 57.5% calc(100% - 8px), 56.25% 100%, 55% calc(100% - 8px), 53.75% 100%, 52.5% calc(100% - 8px), 51.25% 100%, 50% calc(100% - 8px), 48.75% 100%, 47.5% calc(100% - 8px), 46.25% 100%, 45% calc(100% - 8px), 43.75% 100%, 42.5% calc(100% - 8px), 41.25% 100%, 40% calc(100% - 8px), 38.75% 100%, 37.5% calc(100% - 8px), 36.25% 100%, 35% calc(100% - 8px), 33.75% 100%, 32.5% calc(100% - 8px), 31.25% 100%, 30% calc(100% - 8px), 28.75% 100%, 27.5% calc(100% - 8px), 26.25% 100%, 25% calc(100% - 8px), 23.75% 100%, 22.5% calc(100% - 8px), 21.25% 100%, 20% calc(100% - 8px), 18.75% 100%, 17.5% calc(100% - 8px), 16.25% 100%, 15% calc(100% - 8px), 13.75% 100%, 12.5% calc(100% - 8px), 11.25% 100%, 10% calc(100% - 8px), 8.75% 100%, 7.5% calc(100% - 8px), 6.25% 100%, 5% calc(100% - 8px), 3.75% 100%, 2.5% calc(100% - 8px), 1.25% 100%, 0% calc(100% - 8px));
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.6));
  border-radius: 0;
  padding: 2.2rem 1.7rem 1.7rem;
}
.tix-card-vip {
  background:
    linear-gradient(180deg, rgba(5, 8, 16, 0.12), rgba(5, 8, 16, 0.4) 55%, rgba(5, 8, 16, 0.58)),
    url('../img/ticket-blue-760.webp') center / 100% 100% no-repeat,
    #0a1020;
  animation: none;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 26px rgba(216, 169, 78, 0.22));
  padding-top: 3rem;
}
.tix-card:hover { filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(255, 122, 24, 0.18)); }
.tix-card-vip::before {
  content: '';
  position: absolute;
  top: -4px; left: 8%; right: 8%;
  height: 78px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 122, 24, 0.55), rgba(200, 24, 40, 0.28) 45%, transparent 72%);
  filter: blur(13px);
  mix-blend-mode: screen;
  animation: fireFlicker 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes fireFlicker {
  0%, 100% { opacity: 0.75; transform: scaleY(1); }
  18% { opacity: 1; transform: scaleY(1.18); }
  36% { opacity: 0.65; transform: scaleY(0.94); }
  57% { opacity: 0.95; transform: scaleY(1.1); }
  78% { opacity: 0.7; transform: scaleY(0.98); }
}
.tix-badge { top: 13px; }
.tix-head { border-bottom-color: rgba(216, 169, 78, 0.4); text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9); }
.tix-name, .tix-price, .tix-tag, .tix-wave-note { text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85); }
.tix-list li { text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85); border-bottom-color: rgba(216, 169, 78, 0.14); }
.tix-perfo { border-top-color: rgba(216, 169, 78, 0.5); }
@media (min-width: 900px) {
  .tix-card-vip { transform: scale(1.05); }
  .tix-card-vip:hover { transform: scale(1.05) translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .tix-card-vip::before { animation: none; }
}
/* ============================================================
   TICKET CONTENT FIT — text sedí uvnitř rytého rámu, výraznější
   ============================================================ */
.tix-card {
  padding: 2.5rem 2.4rem 1.9rem;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(7, 6, 10, 0.62), rgba(7, 6, 10, 0.18) 75%),
    linear-gradient(180deg, rgba(7, 6, 10, 0.15), rgba(7, 6, 10, 0.35) 55%, rgba(7, 6, 10, 0.55)),
    url('../img/ticket-dark-760.webp') center / 100% 100% no-repeat,
    #0c0a10;
}
.tix-card-vip {
  padding-top: 3.1rem;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(5, 8, 16, 0.6), rgba(5, 8, 16, 0.15) 75%),
    linear-gradient(180deg, rgba(5, 8, 16, 0.12), rgba(5, 8, 16, 0.32) 55%, rgba(5, 8, 16, 0.52)),
    url('../img/ticket-blue-760.webp') center / 100% 100% no-repeat,
    #0a1020;
}
.tix-head { margin-inline: -0.4rem; }
.tix-name {
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 26px rgba(216, 169, 78, 0.35);
}
.tix-tag { min-height: 0; color: #d9cfe6; font-size: 0.9rem; margin: 0.35rem 0 0.9rem; }
.tix-price-num { font-size: 2.9rem; color: #fff; text-shadow: 0 3px 14px rgba(0, 0, 0, 0.95), 0 0 30px rgba(216, 169, 78, 0.25); }
.tix-wave-note { font-weight: 700; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9); }
.tix-list { max-width: 100%; margin-bottom: 1.3rem; }
.tix-list li {
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.45rem 0 0.45rem 1.6rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
}
.tix-perfo { margin: 0.3rem -2.4rem 1rem; }
@media (min-width: 900px) {
  .tix-card { padding-inline: 2rem; }
  .tix-perfo { margin-inline: -2rem; }
}

/* ============================================================
   BLOOD SOCIAL BUTTONS — IG / FB / TikTok
   ============================================================ */
.footer-social { gap: 0.9rem; flex-wrap: wrap; }
.blood-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62em 1.25em;
  background: linear-gradient(180deg, #b81524 0%, #8a0f1d 60%, #6e0a15 100%);
  color: #fff !important;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.18), inset 0 -3px 6px rgba(0, 0, 0, 0.35), 0 6px 20px rgba(138, 15, 29, 0.45);
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.blood-btn::after {
  content: '';
  position: absolute;
  top: 99%; left: 6%; right: 6%;
  height: 16px;
  background:
    linear-gradient(#6e0a15, #6e0a15) 12% 0 / 3px 9px no-repeat,
    radial-gradient(circle 3.5px, #6e0a15 3.3px, transparent 3.6px) calc(12% - 2px) 7px / 8px 8px no-repeat,
    linear-gradient(#7c0c18, #7c0c18) 42% 0 / 4px 13px no-repeat,
    radial-gradient(circle 4px, #7c0c18 3.8px, transparent 4.1px) calc(42% - 2px) 11px / 9px 9px no-repeat,
    linear-gradient(#6e0a15, #6e0a15) 71% 0 / 3px 6px no-repeat,
    radial-gradient(circle 3px, #6e0a15 2.8px, transparent 3.1px) calc(71% - 2px) 5px / 7px 7px no-repeat,
    linear-gradient(#8a0f1d, #8a0f1d) 92% 0 / 3px 10px no-repeat,
    radial-gradient(circle 3.2px, #8a0f1d 3px, transparent 3.3px) calc(92% - 2px) 8px / 7px 7px no-repeat;
  pointer-events: none;
}
.blood-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2), inset 0 -3px 6px rgba(0, 0, 0, 0.35), 0 10px 30px rgba(200, 24, 40, 0.6);
}
.blood-btn svg { width: 17px; height: 17px; flex-shrink: 0; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5)); }
/* ============================================================
   BURNING TICKETS — plameny šlehající zpoza vstupenek
   ============================================================ */
.tix-grid { align-items: stretch; }
.tix-wrap { position: relative; display: flex; flex-direction: column; }
.tix-wrap .tix-card { position: relative; z-index: 1; flex: 1; }
.tix-fire {
  position: absolute;
  top: -19%; left: -9%; right: -9%;
  height: 46%;
  background: url('../img/flames.webp') center bottom / cover no-repeat;
  mix-blend-mode: screen;
  filter: saturate(1.3) brightness(1.05);
  pointer-events: none;
  z-index: 0;
}
.tix-fire-b { transform: scaleX(-1); top: -22%; height: 50%; }
.tix-fire-c { background-position: 30% bottom; top: -17%; }
/* teplá záře pod plameny na horní hraně lístku */
.tix-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: 6%; right: 6%;
  height: 90px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 122, 24, 0.4), rgba(200, 24, 40, 0.18) 50%, transparent 75%);
  filter: blur(14px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  animation: fireFlicker 3.1s ease-in-out infinite;
}
@media (min-width: 900px) {
  .tix-wrap-vip { transform: scale(1.05); z-index: 2; }
  .tix-card-vip, .tix-card-vip:hover { transform: none; }
}
/* jiskry stoupající sekcí */
.tix-ember {
  position: absolute;
  bottom: 8%;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: #ffb347;
  box-shadow: 0 0 10px 2px rgba(255, 122, 24, 0.75);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  animation: tixEmberUp var(--dur) linear var(--delay) infinite;
  z-index: 1;
}
@keyframes tixEmberUp {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  10%  { opacity: 0.95; }
  70%  { opacity: 0.6; }
  100% { transform: translate(var(--drift), -72vh) scale(0.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tix-fire, .tix-ember { display: none !important; }
  .tix-wrap::before { animation: none; }
}
/* fire reach tuning */
.tickets .tix-grid { margin-top: 3.6rem; }
.tix-fire { top: -14%; height: 40%; }
.tix-fire-b { top: -16%; height: 43%; }
.tix-fire-c { top: -13%; }
/* plameny jen na mobilu — na desktopu prosvital ram animace */
@media (min-width: 900px) {
  .tix-fire { display: none !important; }
}
/* ============================================================
   GUIDE — návod na dokonalý Halloween
   ============================================================ */
.guide { overflow: hidden; background: var(--bg-2); }
.guide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.16;
  pointer-events: none;
}
.guide-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(7, 6, 10, 0.6) 25%, rgba(7, 6, 10, 0.6) 75%, var(--bg) 100%);
  pointer-events: none;
}
.guide .container { position: relative; z-index: 1; }
.guide-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(2.2rem, 6vw, 3.6rem);
  max-width: 980px;
  margin: 2.6rem auto 0;
}
.guide-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
}
.guide-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(216, 169, 78, 0.35);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
  transform: rotate(-1.2deg);
}
.guide-step:nth-child(even) .guide-img { transform: rotate(1.2deg); }
.guide-img img { width: 100%; height: auto; display: block; }
.guide-img::after {
  content: '';
  position: absolute; inset: 7px;
  border: 1px solid rgba(216, 169, 78, 0.25);
  border-radius: 8px;
  pointer-events: none;
}
.guide-body { position: relative; padding: 0.4rem 0.2rem; }
.guide-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.9;
  text-shadow: 0 0 26px rgba(216, 169, 78, 0.5);
  margin-bottom: 0.35rem;
}
.guide-body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3.6vw, 1.55rem);
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.guide-body p { color: var(--text); font-size: 0.96rem; margin-bottom: 1.1rem; max-width: 46ch; }
.guide-socials { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.promo-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  border: 2px dashed rgba(216, 169, 78, 0.65);
  border-radius: 10px;
  padding: 0.7rem 1.6rem;
  margin: 0 0 1rem;
  cursor: pointer;
  background: rgba(216, 169, 78, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  user-select: none;
}
.promo-chip:hover { background: rgba(216, 169, 78, 0.13); box-shadow: 0 0 26px rgba(216, 169, 78, 0.25); }
.promo-chip:active { transform: scale(0.97); }
.promo-code {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(216, 169, 78, 0.55);
}
.promo-note { font-size: 0.74rem; color: var(--smoke); letter-spacing: 0.04em; }
@media (min-width: 860px) {
  .guide-step { grid-template-columns: 5fr 6fr; gap: clamp(1.8rem, 4vw, 3.2rem); }
  .guide-step:nth-child(even) .guide-img { order: 2; }
  .guide-step:nth-child(even) .guide-body { order: 1; text-align: right; }
  .guide-step:nth-child(even) .guide-body p { margin-left: auto; }
  .guide-step:nth-child(even) .guide-socials { justify-content: flex-end; }
}
/* ============================================================
   AFTERMOVIE — jedna karta s ozdobným rámem místo boxů
   ============================================================ */
.aftermovie { max-width: 920px; margin: 0 auto 2.4rem; }
.am-frame {
  position: relative;
  border: 1px solid rgba(216, 169, 78, 0.55);
  border-radius: 6px;
  padding: 9px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(216, 169, 78, 0.08), transparent 60%),
    rgba(7, 6, 10, 0.85);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65), 0 0 40px rgba(216, 169, 78, 0.12);
}
.am-frame::before {
  content: '';
  position: absolute; inset: 9px;
  border: 1px solid rgba(216, 169, 78, 0.22);
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}
/* rohové akcenty */
.am-frame::after {
  content: '';
  position: absolute; inset: -5px;
  pointer-events: none;
  background:
    linear-gradient(var(--gold), var(--gold)) 0 0 / 26px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 0 / 1px 26px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 0 / 26px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 0 / 1px 26px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 100% / 26px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 100% / 1px 26px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 100% / 26px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 100% 100% / 1px 26px no-repeat;
  opacity: 0.85;
}
.am-orn {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -58%);
  background: var(--bg);
  color: var(--gold);
  font-size: 0.95rem;
  padding: 0 0.8em;
  line-height: 1;
  z-index: 3;
  text-shadow: 0 0 14px rgba(216, 169, 78, 0.7);
}
.am-frame video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  background: #000;
}
.am-play {
  position: absolute; inset: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.25), rgba(7, 6, 10, 0.55));
  border: none;
  cursor: pointer;
  z-index: 2;
  border-radius: 3px;
  transition: opacity 0.4s ease;
}
.am-play.is-hidden { opacity: 0; pointer-events: none; }
.am-play-ring {
  width: 86px; height: 86px;
  display: grid; place-items: center;
  border: 1px solid rgba(216, 169, 78, 0.85);
  transform: rotate(45deg);
  border-radius: 10px;
  background: rgba(7, 6, 10, 0.55);
  color: var(--gold-light);
  box-shadow: 0 0 34px rgba(216, 169, 78, 0.35), inset 0 0 18px rgba(216, 169, 78, 0.12);
  animation: playPulse 2.4s ease-in-out infinite;
  backdrop-filter: blur(4px);
}
.am-play-ring svg { transform: rotate(-45deg); margin-left: 4px; }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 26px rgba(216, 169, 78, 0.3), inset 0 0 18px rgba(216, 169, 78, 0.1); }
  50%      { box-shadow: 0 0 48px rgba(255, 122, 24, 0.5), inset 0 0 26px rgba(216, 169, 78, 0.2); }
}
.am-play:hover .am-play-ring { border-color: var(--gold-light); color: #fff; }
.am-play-label {
  font-family: var(--font-head);
  font-size: clamp(0.85rem, 2.6vw, 1.05rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}
@media (prefers-reduced-motion: reduce) { .am-play-ring { animation: none; } }
/* ============================================================
   PERF: mobilni marquee pres sprite pozadi (GPU texture fix)
   + odlozene nacteni plamenu az po loadu stranky
   ============================================================ */
.strip-bgrow { display: none; }
@media (max-width: 899px) {
  .strip-row { display: none !important; }
  .strip-bgrow {
    display: block;
    height: 150px;
    border-radius: 8px;
    background-repeat: repeat-x;
    background-position: 0 center;
    background-size: auto 100%;
  }
  .strip-bgrow-a {
    background-image: url('../img/strip-a.webp');
    animation: stripBgL 46s linear infinite;
  }
  .strip-bgrow-b {
    background-image: url('../img/strip-b.webp');
    animation: stripBgR 40s linear infinite;
  }
}
@keyframes stripBgL {
  from { background-position-x: 0; }
  to   { background-position-x: -1800px; }
}
@keyframes stripBgR {
  from { background-position-x: -1401.56px; }
  to   { background-position-x: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .strip-bgrow { animation: none !important; }
}

/* plameny se stahuji az po nacteni celeho webu */
.tix-fire { background-image: none; }
body.fx-ready .tix-fire { background-image: url('../img/flames.webp'); }