/* ════════════════════════════════════════
   IG KANÁL SEKCE
════════════════════════════════════════ */
.sec-igkanal {
  border-top: 1px solid var(--line);
}
.igkanal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px); align-items: center;
}
.igkanal-desc {
  font-size: .9rem; color: rgba(255,255,255,.5);
  line-height: 1.8; margin-bottom: 24px; max-width: 420px;
}
.igkanal-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  padding: 13px 24px; border-radius: 22px;
  text-decoration: none; transition: opacity .2s, transform .15s;
  width: fit-content;
}
.igkanal-btn:hover { opacity: .88; transform: translateY(-2px); }
.igkanal-hint {
  font-size: .75rem; color: rgba(255,255,255,.25);
  margin-top: 12px; letter-spacing: .02em;
}

/* QR kód box */
.igkanal-qr { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.igkanal-qr-wrap {
  background: #fff; border-radius: 20px;
  padding: 20px; width: 100%; max-width: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.igkanal-qr-wrap img { width: 100%; height: auto; display: block; border-radius: 8px; }
.igkanal-qr-label {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-align: center;
}
.igkanal-qr-label strong { font-size: .88rem; color: var(--white); }
.igkanal-qr-label span   { font-size: .75rem; color: var(--muted); }

@media (max-width: 860px) {
  .igkanal-grid { grid-template-columns: 1fr; }
  .igkanal-qr { flex-direction: row; align-items: center; gap: 20px; }
  .igkanal-qr-wrap { max-width: 160px; }
  .igkanal-qr-label { align-items: flex-start; text-align: left; }
  .igkanal-desc { max-width: 100%; }
}
@media (max-width: 500px) {
  .igkanal-qr { flex-direction: column; align-items: center; }
  .igkanal-qr-label { align-items: center; text-align: center; }
}

@media (max-width: 860px) {
  .igkanal-grid { grid-template-columns: 1fr; }
  .igkanal-qr { display: none; }
  .igkanal-hint { display: none; }
  .igkanal-desc { max-width: 100%; }
}


.venue-logo {
  margin-bottom: 20px;
}
.venue-logo img {
  max-height: 25px;
  width: auto;
  opacity: .75;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.venue-logo img:hover { opacity: 1; }

.about-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ═══ TOKENY (stejné jako tancem.cz) ═══ */
:root {
  --black:  #0f0f0f;
  --dark:   #161616;
  --card:   #1c1c1c;
  --card2:  #222222;
  --white:  #ffffff;
  --gold:   #E8A820;
  --gold2:  #F2BE40;
  --muted:  #888888;
  --line:   rgba(255,255,255,.1);
  --sky:    #1a2a4a;
  --W:      1160px;
  --PX:     clamp(20px,5vw,56px);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }


.wrap { max-width: var(--W); margin: 0 auto; padding: 0 var(--PX); }

/* ═══ TOP BAR ═══ */
.cs-bar {
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px var(--PX);
  font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
}
.cs-dot {
  width: 6px; height: 6px; background: var(--black);
  border-radius: 50%; opacity: .5;
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.4); }
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px var(--PX) 60px;
  position: relative; overflow: hidden;
}

/* Canvas sky */
#skyCanvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}

/* Horizon glow overlay */
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(ellipse 90% 25% at 50% 100%, rgba(232,168,32,.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 15% at 50% 100%, rgba(200,120,20,.08) 0%, transparent 60%);
}

.hero > *:not(#skyCanvas):not(.hero-glow) { position: relative; z-index: 2; }

/* Date badge */
.hero-date-badge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(232,168,32,.35);
  background: rgba(232,168,32,.08);
  padding: 8px 20px; border-radius: 100px;
  font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  animation: fadeUp .7s .1s ease both;
}
.hero-date-badge-dot {
  width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; animation: dotPulse 2s infinite;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .58rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--gold); flex-shrink: 0; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem,10vw,7.5rem);
  line-height: 1.0; letter-spacing: .02em; margin-bottom: 24px; margin-top: 8px;
  animation: fadeUp .85s .22s ease both;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-location {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem,2.5vw,1.8rem);
  letter-spacing: .18em; color: rgba(255,255,255,.3);
  margin-bottom: 36px;
  animation: fadeUp .85s .35s ease both;
}
.hero-location span { color: rgba(232,168,32,.6); }

.hero-sub {
  font-size: clamp(.85rem,1.8vw,1rem); line-height: 1.8;
  color: rgba(255,255,255,.5); max-width: 480px; margin-bottom: 40px;
  animation: fadeUp .85s .45s ease both;
}
.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .85s .55s ease both;
  margin-bottom: 8px;
}

/* Countdown */
.hero-cd {
  margin-top: 48px; display: flex;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  animation: fadeUp .85s .65s ease both;
}
.cd-cell {
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 28px; gap: 6px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.cd-cell:last-child { border-right: none; }
.cd-n { font-family: 'Bebas Neue',sans-serif; font-size: 2.6rem; line-height: 1; color: var(--gold); }
.cd-l { font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.25); animation: fadeUp 1s 1s ease both;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(232,168,32,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* ═══ BUTTONS ═══ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black);
  padding: 14px 36px; border-radius: 6px;
  font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  transition: all .2s; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,168,32,.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.6);
  padding: 14px 36px; border-radius: 6px;
  font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.18); transition: all .2s; cursor: pointer;
}
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,.45); }

/* ═══ SECTIONS ═══ */
.sec { padding: clamp(64px,9vw,110px) 0; }
.sec-dark { background: var(--dark); }

/* ═══ PROGRAM ═══ */
.program-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
  margin-top: clamp(32px,5vw,56px);
}

.prog-block {
  background: var(--card); padding: clamp(28px,4vw,48px);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.prog-block:hover { background: var(--card2); }

.prog-block-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), transparent);
}

.prog-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem,4vw,3.5rem);
  color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.prog-duration {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.prog-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem,3vw,2.4rem);
  letter-spacing: .04em; line-height: 1; margin-bottom: 14px;
}
.prog-title em { font-style: normal; color: var(--gold); }
.prog-desc {
  font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75;
}

.prog-connector {
  position: relative; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px;
}
.prog-connector-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.prog-connector-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  background: var(--dark); padding: 0 16px;
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}

/* Full-width second block in grid */
.prog-block.full {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
}

/* ═══ CENY ═══ */
.price-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: clamp(32px,5vw,56px);
}

.price-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: clamp(24px,3vw,36px);
  position: relative; overflow: hidden;
  transition: all .3s; text-align: center;
}
.price-card:hover { border-color: rgba(232,168,32,.3); transform: translateY(-3px); }

.price-card.featured {
  border-color: rgba(232,168,32,.4);
  background: linear-gradient(135deg, rgba(232,168,32,.06) 0%, var(--card) 60%);
}
.price-card.featured::before {
  content: 'Nejlepší volba';
  position: absolute; top: 14px; right: -24px;
  background: var(--gold); color: var(--black);
  font-size: .52rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 28px; transform: rotate(35deg);
}

.price-type {
  font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.price-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem,2.5vw,1.9rem);
  letter-spacing: .04em; margin-bottom: 20px;
  color: var(--white);
}

.price-row {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--line); padding-top: 20px; margin-top: 4px;
}
.price-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
}
.price-item-lbl { color: rgba(255,255,255,.5); }
.price-item-val {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem;
  letter-spacing: .04em; color: var(--gold);
}

/* ═══ PŘIHLÁŠKA ═══ */
.reg-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px,5vw,72px);
  align-items: start;
  margin-top: clamp(32px,5vw,56px);
}

.reg-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem,3.5vw,3rem); letter-spacing: .04em; line-height: 1;
  margin-bottom: 20px;
}
.reg-info h3 em { font-style: normal; color: var(--gold); }
.reg-info p {
  font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 24px;
}

/* Bank details box */
.bank-box {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 8px; padding: 20px 24px; margin-bottom: 20px;
}
.bank-box-title {
  font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.bank-row {
  display: flex; justify-content: space-between;
  font-size: .84rem; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.bank-row:last-child { border-bottom: none; }
.bank-row-lbl { color: rgba(255,255,255,.4); }
.bank-row-val { font-weight: 600; color: var(--white); font-family: monospace; letter-spacing: .04em; }

/* Form */
.reg-form {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: clamp(24px,4vw,40px);
  display: flex; flex-direction: column; gap: 0;
}

/* Kroky */
.form-step {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.form-step-last { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.form-step-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.form-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-step-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}

/* Ticket karty */
.ticket-type-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.ticket-card { position: relative; }
.ticket-card input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.ticket-card label {
  display: flex; flex-direction: column; gap: 6px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 14px 14px 12px;
  cursor: pointer; transition: all .2s;
  background: rgba(255,255,255,.03);
  height: 100%;
}
.ticket-card label:hover { border-color: rgba(232,168,32,.35); background: rgba(232,168,32,.04); }
.ticket-card input:checked + label {
  border-color: var(--gold);
  background: rgba(232,168,32,.08);
  box-shadow: inset 0 0 0 1px rgba(232,168,32,.3);
}
.ticket-card-featured label { }

.tc-badge {
  display: inline-block; align-self: flex-start;
  font-size: .5rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(232,168,32,.45);
  color: rgba(232,168,32,.7);
  padding: 2px 7px; border-radius: 3px; margin-bottom: 2px;
}
.tc-top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 4px;
}
.tc-name { font-size: .82rem; font-weight: 700; color: var(--white); }
.tc-time { font-size: .6rem; color: rgba(255,255,255,.35); letter-spacing: .04em; white-space: nowrap; }
.tc-desc { font-size: .65rem; color: rgba(255,255,255,.35); }
.tc-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 4px; padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.tc-who { font-size: .68rem; color: rgba(255,255,255,.4); }
.tc-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--gold); letter-spacing: .04em; }

/* Inputs */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.form-label-opt { font-weight: 400; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.25); }
.form-input, .form-select {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.12);
  color: var(--white); border-radius: 8px; padding: 13px 16px;
  font-family: 'Open Sans', sans-serif; font-size: .88rem;
  transition: border-color .2s, background .2s; outline: none; width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,.2); }
.form-input:focus { border-color: var(--gold); background: rgba(232,168,32,.04); }

/* Souhrn box */
.form-summary-box {
  background: rgba(0,0,0,.3); border: 1px solid rgba(232,168,32,.2);
  border-radius: 10px; padding: 16px 18px; margin-bottom: 18px;
}
.form-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.form-summary-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.form-summary-total { margin-top: 4px; padding-top: 12px; border-top: 1px solid rgba(232,168,32,.2) !important; border-bottom: none !important; }
.form-summary-lbl { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-summary-val { font-size: .82rem; color: rgba(255,255,255,.7); }
.form-total-val { font-family: 'Bebas Neue',sans-serif; font-size: 1.8rem; color: var(--gold); letter-spacing: .04em; }

.pay-bank-note {
  background: transparent; border: none;
  font-size: .75rem; color: rgba(255,255,255,.35);
  margin-top: 10px; padding: 0; line-height: 1.7;
}

.form-gdpr {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px;
}
.form-gdpr input[type=checkbox] { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; width: 15px; height: 15px; }
.form-gdpr label { font-size: .76rem; color: rgba(255,255,255,.35); line-height: 1.6; }
.form-gdpr a { color: var(--gold); text-decoration: underline; }

.form-ok {
  background: rgba(40,200,100,.1); border: 1px solid rgba(40,200,100,.25);
  border-radius: 8px; padding: 14px 18px; font-size: .86rem; color: #4ade80;
  margin-top: 12px; display: none; text-align: center;
}
.form-ok.show { display: block; }

/* Success stav — celá plocha formuláře */
.reg-success {
  display: none;
  flex-direction: column; align-items: center;
  text-align: center;
  padding: clamp(40px,8vw,80px) clamp(24px,5vw,48px);
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px;
  animation: fadeUp .4s ease;
}
.reg-success.show { display: flex; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.reg-success-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(34,197,94,.12); border: 2px solid rgba(34,197,94,.35);
  color: #4ade80; font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.reg-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem,3vw,2.4rem); letter-spacing: .05em;
  color: var(--white); margin-bottom: 16px;
}
.reg-success-text {
  font-size: .92rem; color: rgba(255,255,255,.55);
  line-height: 1.8; max-width: 420px; margin-bottom: 16px;
}
.reg-success-text strong { color: var(--white); }
.reg-success-note {
  font-size: .8rem; color: rgba(255,255,255,.3);
  line-height: 1.7; max-width: 380px;
}
.reg-success-note strong { color: rgba(255,255,255,.5); }
.reg-success-note a { color: var(--gold); text-decoration: none; }
.reg-success-note a:hover { text-decoration: underline; }


/* ═══ MÍSTO ═══ */
.venue-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px,5vw,72px);
  align-items: center; margin-top: clamp(32px,5vw,56px);
}

/* Cover photo (nový styl místo skyline animace) */
.venue-cover {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.venue-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.venue-cover:hover img { transform: scale(1.03); }

/* CTA tlačítka pod venue info */
.venue-cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px;
}

/* Venue text */
.venue-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem,3.5vw,2.8rem); letter-spacing: .04em; line-height: 1;
  margin-bottom: 16px;
}
.venue-text h3 em { font-style: normal; color: var(--gold); }
.venue-text p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 20px; }
.venue-detail {
  display: flex; flex-direction: column; gap: 10px;
}
.venue-row {
  display: flex; gap: 12px; align-items: flex-start; font-size: .84rem;
}
.venue-row-ico { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.venue-row-text { color: rgba(255,255,255,.55); line-height: 1.6; }
.venue-row-text strong { color: var(--white); display: block; }

/* ═══ FAQ ═══ */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: clamp(32px,5vw,56px); }
.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-size: .9rem; font-weight: 600; color: var(--white);
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-ico {
  font-size: 1.1rem; color: var(--gold);
  transition: transform .3s; flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
  font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.8;
  padding: 0 0 0 0;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(32px,5vw,56px) 0 clamp(24px,4vw,40px);
  text-align: center;
  transition: padding-bottom .2s;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: .12em; color: var(--white);
  margin-bottom: 8px;
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-sub {
  font-size: .7rem; color: var(--muted); letter-spacing: .1em; margin-bottom: 24px;
}
.footer-links {
  display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: .72rem; color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-links a:hover { color: var(--gold); }
.footer-back-link {
  color: var(--gold) !important;
  font-weight: 600;
  border: 1px solid rgba(212,175,55,.35);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background .2s, border-color .2s;
  letter-spacing: .04em;
}
.footer-back-link:hover {
  background: rgba(212,175,55,.12) !important;
  border-color: var(--gold);
  color: var(--gold) !important;
}
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.2); }

/* ═══ STICKY CTA (mobile) ═══ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,.97); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212,175,55,.3);
  padding: 14px var(--PX) max(14px, env(safe-area-inset-bottom));
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
}
.sticky-cta-text { font-size: .82rem; line-height: 1.4; min-width: 0; }
.sticky-cta-text strong { display: block; color: var(--white); font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta-text span { color: var(--gold); font-size: .75rem; }
.sticky-cta .btn-gold {
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: .75rem;
  white-space: nowrap;
}

/* ═══ TOAST ═══ */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  background: var(--card2); border: 1px solid rgba(232,168,32,.3);
  color: var(--white); padding: 14px 20px; border-radius: 8px;
  font-size: .84rem; font-weight: 600;
  transform: translateY(20px); opacity: 0;
  transition: all .3s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══ COOKIE ═══ */
.cookie-bar {
  position: fixed; bottom: -100px; left: 0; right: 0; z-index: 8000;
  background: rgba(22,22,22,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 16px var(--PX); transition: bottom .4s ease;
}
.cookie-bar.show { bottom: 0; }
.cookie-inner {
  max-width: var(--W); margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-text {
  flex: 1; display: flex; align-items: center; gap: 12px; min-width: 200px;
}
.cookie-ico { font-size: 1.2rem; }
.cookie-text p { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-reject {
  padding: 8px 16px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,.15); background: transparent;
  color: rgba(255,255,255,.45); font-size: .7rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; cursor: pointer;
  transition: all .2s;
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.7); }
.cookie-btn-accept {
  padding: 8px 16px; border-radius: 5px;
  background: var(--gold); color: var(--black);
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; border: none; transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--gold2); }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.r { opacity: 0; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease; will-change: opacity, transform; }
.r.in { opacity: 1; transform: none; will-change: auto; }
.d1 { transition-delay: .03s; } .d2 { transition-delay: .06s; } .d3 { transition-delay: .09s; }
.d4 { transition-delay: .12s; }  .d5 { transition-delay: .15s; }

/* ═══ RESPONSIVE ═══ */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  /* Hero */
  .hero { padding: 72px var(--PX) 56px; }
  .hero-date-badge { font-size: .56rem; padding: 7px 16px; gap: 8px; }
  .hero-cd { margin-top: 36px; }
  .cd-cell { padding: 14px 20px; }

  /* Layout grids → single column */
  .program-grid { grid-template-columns: 1fr; gap: 1px; }
  .prog-block.full { grid-column: 1; }
  .price-wrap { grid-template-columns: 1fr 1fr; gap: 12px; }
  .price-card.featured::before { display: none; }
  .reg-wrap { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Venue visual shorter on tablet */
  .venue-cover { aspect-ratio: 16/7; }

  /* Sticky CTA visible */
  .sticky-cta { display: flex; }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  /* Hero breathing room */
  .hero { padding: 64px var(--PX) 80px; gap: 0; }
  .hero-date-badge { font-size: .52rem; letter-spacing: .14em; padding: 6px 14px; margin-bottom: 14px; }
  .eyebrow { font-size: .52rem; letter-spacing: .18em; margin-bottom: 14px; }

  /* Countdown */
  .hero-cd { margin-top: 28px; }
  .cd-cell { padding: 12px 14px; }
  .cd-n { font-size: 1.8rem; }
  .cd-l { font-size: .44rem; letter-spacing: .14em; }

  /* Buttons full width */
  .hero-actions { flex-direction: column; width: 100%; gap: 10px; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; padding: 13px 24px; }

  /* Prices single column */
  .price-wrap { grid-template-columns: 1fr; }

  /* Ticket rows — stack pair under individual */
  .ticket-type-grid { grid-template-columns: 1fr; }

  /* Pay toggle stacks */
  .pay-toggle { flex-direction: column; }

  /* Venue CTA stacks on mobile */
  .venue-cta { flex-direction: column; gap: 10px; }
  .venue-cta .btn-gold, .venue-cta .btn-outline { text-align: center; justify-content: center; }

  /* Prog blocks tighter */
  .prog-block { padding: 24px 20px; }
  .prog-time { font-size: clamp(1.8rem,8vw,2.8rem); }
  .prog-title { font-size: clamp(1.3rem,6vw,2rem); }

  /* Venue visual minimal height */
  .venue-cover { aspect-ratio: 16/6; }

  /* Form */
  .reg-form { padding: 22px 18px; }

  /* Cookie bar stacks */
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-reject, .cookie-btn-accept { flex: 1; text-align: center; }

  /* FAQ */
  .faq-q { font-size: .84rem; }

  /* Scroll hint hidden on small screens */
  .hero-scroll { display: none; }

  /* Sticky CTA — na mobilu tlačítko na plnou šíři pod textem */
  .sticky-cta { flex-direction: column; align-items: stretch; gap: 10px; padding: 12px var(--PX) max(12px, env(safe-area-inset-bottom)); }
  .sticky-cta-text { text-align: center; }
  .sticky-cta-text strong { font-size: .82rem; }
  .sticky-cta .btn-gold { width: 100%; justify-content: center; padding: 13px; font-size: .8rem; }
}


/* ════════════════════════
   O NÁS (about) SEKCE
════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Foto lektorů */
.about-photo-wrap { position: relative; }
.about-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.about-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* Text */
.about-content {}
.about-lead {
  font-size: .94rem;
  line-height: 1.85;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}
.about-lead strong {
  color: var(--white);
  font-weight: 600;
}
.about-bottom {
  font-size: .88rem;
  line-height: 1.85;
  color: rgba(255,255,255,.5);
  margin-top: 24px;
}

/* Feature boxy */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .about-features { grid-template-columns: 1fr; }
}
.about-feat {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .25s, background .25s;
}
.about-feat:hover {
  border-color: rgba(232,168,32,.25);
  background: rgba(232,168,32,.04);
}
.about-feat-ico {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,168,32,.08);
  border-radius: 8px;
}
.about-feat strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 4px;
}
.about-feat p {
  font-size: .78rem;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  margin: 0;
}


/* section header */
.sec-head { margin-bottom: clamp(0px,2vw,10px); }
.sec-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem,5.5vw,5rem); line-height: .9; letter-spacing: .03em;
}
.sec-head h2 em { font-style: normal; color: var(--gold); }
.sec-head-row { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.sec-note { font-size: .86rem; color: var(--muted); font-style: italic; max-width: 480px; line-height: 1.75; }

/* ═══ DOPLŇKY (čisté HTML) ═══ */
.price-sub { font-size:.72rem; color:var(--muted); margin-bottom:16px; }
.prog-combo-row { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.prog-combo-text { flex:1; min-width:200px; }
.prog-combo-desc { flex:2; font-size:.86rem; color:rgba(255,255,255,.45); line-height:1.75; min-width:200px; }
.btn-full { width:100%; justify-content:center; }
.reg-stripe-note { font-size:.78rem; color:rgba(255,255,255,.35); line-height:1.7; }
.ticket-header { display:grid; grid-template-columns:1fr 1fr; gap:6px; padding:0 2px; }
.ticket-header span { font-size:.58rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.25); text-align:center; }

/* ── REG STEPS ── */
.reg-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.reg-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.reg-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.reg-step-text strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 4px;
}
.reg-step-text p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════
   SOLD OUT + POŘADNÍK
════════════════════════════════════════ */
.soldout-wrap { display: flex; flex-direction: column; gap: 32px; }

.soldout-banner {
  display: flex; align-items: center; gap: 20px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
  border-radius: 12px; padding: 20px 24px;
}
.soldout-icon { font-size: 2rem; flex-shrink: 0; }
.soldout-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: .06em;
  color: #f87171; margin-bottom: 4px;
}
.soldout-sub { font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.6; }

.soldout-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px,5vw,64px); align-items: start;
}
.soldout-desc {
  font-size: .9rem; color: rgba(255,255,255,.5);
  line-height: 1.8; margin-bottom: 28px;
}
.soldout-next-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}

/* Pořadník checkboxy */
.waitlist-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.waitlist-opt { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.waitlist-opt input[type=checkbox] { display: none; }
.waitlist-opt-box {
  flex: 1; padding: 14px 16px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  transition: all .2s;
}
.waitlist-opt input:checked ~ .waitlist-opt-box {
  border-color: var(--gold);
  background: rgba(232,168,32,.07);
}
.waitlist-opt-box:hover { border-color: rgba(232,168,32,.3); }
.waitlist-opt-title {
  font-size: .84rem; font-weight: 600; color: var(--white);
  margin-bottom: 3px;
}
.waitlist-opt-desc { font-size: .76rem; color: rgba(255,255,255,.4); line-height: 1.5; }

@media (max-width: 900px) {
  .soldout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .soldout-banner { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── SOLD OUT HERO BADGE ── */
.cs-bar-soldout {
  background: #7f1d1d;
  border-bottom: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
}
.hero-soldout-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(239,68,68,.2);
  border: 2px solid rgba(239,68,68,.6);
  color: #f87171;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .2em;
  padding: 10px 28px; border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 0 32px rgba(239,68,68,.2);
}
.hero-soldout-x {
  font-size: 1rem; font-family: sans-serif; font-weight: 700;
}
.hero-soldout-info {
  font-size: clamp(.82rem,1.5vw,.95rem);
  color: rgba(255,255,255,.55);
  line-height: 1.75; max-width: 520px;
  margin: 0 auto 32px; text-align: center;
}
.btn-soldout-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ef4444; color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem; letter-spacing: .12em;
  padding: 14px 28px; border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  border: 2px solid rgba(255,255,255,.15);
}
.btn-soldout-cta:hover { background: #dc2626; transform: translateY(-2px); }

/* ── WAITLIST NOTICE ── */
.waitlist-notice {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(232,168,32,.08);
  border: 1.5px solid rgba(232,168,32,.3);
  border-radius: 10px; padding: 14px 18px;
  margin-bottom: 20px;
  font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.65;
}
.waitlist-notice-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.waitlist-notice strong { color: var(--gold); display: block; margin-bottom: 3px; }
.waitlist-notice u { color: #f87171; text-decoration: none; font-weight: 700; }

/* ════════════════════════════════════════
   TANČÍRNA VOLNÁ + POŘADNÍK NA WORKSHOP
   (přidáno — částečné vyprodáno)
════════════════════════════════════════ */

/* Hero badge — zlatá varianta (tančírna volná) */
.hero-soldout-badge-partial {
  background: rgba(232,168,32,.18);
  border-color: rgba(232,168,32,.6);
  color: var(--gold);
  box-shadow: 0 0 32px rgba(232,168,32,.2);
}
.hero-soldout-badge-partial .hero-soldout-x { color: var(--gold); }

/* Sold-out banner — zlatá (částečné vyprodáno) */
.soldout-banner-partial {
  background: rgba(232,168,32,.06);
  border-color: rgba(232,168,32,.3);
}
.soldout-banner-partial .soldout-title {
  color: var(--gold);
}

/* Total k platbě (v form-step-last) */
.form-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; margin-bottom: 18px;
  background: rgba(232,168,32,.06);
  border: 1px solid rgba(232,168,32,.25);
  border-radius: 10px;
}
.form-total-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.form-total-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--gold); letter-spacing: .04em;
}

/* ════════════════════════════════════════
   STRONGER SOLD-OUT SIGNALING — přidáno
   Workshop vyprodán · Tančírna volná
════════════════════════════════════════ */

/* ── Hero — dvojitá badge ─────────────────────────── */
.hero-status-badges {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
  margin-bottom: 22px;
}
.hero-status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem; letter-spacing: .18em;
  padding: 9px 18px; border-radius: 6px;
  border: 2px solid;
}
.hero-status-sold {
  background: rgba(239,68,68,.18);
  border-color: rgba(239,68,68,.65);
  color: #f87171;
  box-shadow: 0 0 24px rgba(239,68,68,.18);
}
.hero-status-sold .hero-status-x {
  font-family: sans-serif; font-weight: 800; font-size: .9rem;
}
.hero-status-free {
  background: rgba(232,168,32,.16);
  border-color: rgba(232,168,32,.6);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(232,168,32,.18);
}
.hero-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: heroStatusPulse 1.8s ease-in-out infinite;
}
@keyframes heroStatusPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

@media (max-width: 480px) {
  .hero-status-badge { font-size: .82rem; padding: 7px 14px; letter-spacing: .14em; }
}

/* ── Split banner v sekci přihlášky ───────────────── */
.status-split-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.status-split-half {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
}
.status-split-sold {
  background: rgba(239,68,68,.08);
  border-right: 1px solid rgba(255,255,255,.06);
}
.status-split-free {
  background: rgba(232,168,32,.07);
}
.status-split-ico {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
}
.status-split-sold .status-split-ico {
  background: rgba(239,68,68,.18); color: #f87171;
  border: 1px solid rgba(239,68,68,.4);
}
.status-split-free .status-split-ico {
  background: rgba(232,168,32,.18); color: var(--gold);
  border: 1px solid rgba(232,168,32,.4);
}
.status-split-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 2px;
}
.status-split-sub {
  font-size: .8rem; color: rgba(255,255,255,.55);
}
.status-split-sold .status-split-sub strong { color: #f87171; }
.status-split-free .status-split-sub strong { color: var(--gold); }

@media (max-width: 700px) {
  .status-split-banner { grid-template-columns: 1fr; }
  .status-split-sold   { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .status-split-half   { padding: 14px 16px; gap: 12px; }
  .status-split-ico    { width: 38px; height: 38px; font-size: 1.05rem; }
}

/* ── Ticket card — vyprodáno (disabled) ───────────── */
.ticket-card-disabled label {
  cursor: not-allowed !important;
  opacity: .42;
  filter: grayscale(.85);
  position: relative;
}
.ticket-card-disabled label::after {
  /* diagonální překryv */
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(0,0,0,0) 0,
      rgba(0,0,0,0) 8px,
      rgba(239,68,68,.06) 8px,
      rgba(239,68,68,.06) 16px
    );
  border-radius: inherit;
}
.ticket-card-disabled label:hover {
  border-color: rgba(255,255,255,.1) !important;
  background: rgba(255,255,255,.03) !important;
}
.ticket-card-disabled .tc-name,
.ticket-card-disabled .tc-price {
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,.6);
  text-decoration-thickness: 1.5px;
}

/* Badge "Vyprodáno" v ticket kartě */
.tc-sold-badge {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  font-family: 'Open Sans', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  border: 1px solid;
  background: rgba(239,68,68,.95);
  color: #fff;
  border-color: rgba(239,68,68,1);
  box-shadow: 0 2px 8px rgba(239,68,68,.3);
}

/* Aktivní karta (tančírna) — zelený akcent */
.ticket-card-available input:checked + label {
  border-color: #4ade80;
  background: rgba(74,222,128,.07);
  box-shadow: inset 0 0 0 1px rgba(74,222,128,.35);
}

/* Tip pod kartami */
.ticket-hint {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(232,168,32,.05);
  border: 1px dashed rgba(232,168,32,.3);
  border-radius: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.ticket-hint strong { color: var(--gold); }

/* ── Upgrade info v pořadníkovém boxu ─────────────── */
.waitlist-upgrade-note {
  display: flex; gap: 14px;
  background: rgba(74,222,128,.05);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: .82rem; color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.waitlist-upgrade-ico { font-size: 1.2rem; flex-shrink: 0; line-height: 1.3; }
.waitlist-upgrade-note strong { color: #4ade80; }
.waitlist-upgrade-note > div > strong:first-child {
  display: block; margin-bottom: 6px;
  font-size: .92rem;
}
.waitlist-upgrade-list {
  list-style: none; margin: 10px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.waitlist-upgrade-list li {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 6px 10px;
  background: rgba(0,0,0,.18);
  border-radius: 6px;
  font-size: .78rem;
}
.waitlist-upgrade-list li span { color: rgba(255,255,255,.65); }
.waitlist-upgrade-list li strong {
  color: #4ade80;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: .04em;
  white-space: nowrap;
}

@media (max-width: 500px) {
  .waitlist-upgrade-list li {
    flex-direction: column; align-items: flex-start; gap: 2px;
  }
}

/* ════════════════════════════════════════
   UPGRADE OPT-IN — výrazný checkbox v hlavním formuláři
════════════════════════════════════════ */
.upgrade-opt {
  display: block; position: relative;
  cursor: pointer;
  margin-bottom: 18px;
}
.upgrade-opt input[type=checkbox] { display: none; }

/* Ribbon "Tip" v rohu */
.upgrade-opt-ribbon {
  position: absolute;
  top: -10px; left: 14px;
  z-index: 2;
  background: var(--gold);
  color: #1a0e00;
  font-family: 'Open Sans', sans-serif;
  font-size: .65rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
  box-shadow: 0 2px 8px rgba(232,168,32,.4);
}
.upgrade-opt-box {
  padding: 18px 18px 16px;
  border-radius: 10px;
  border: 2px solid rgba(232,168,32,.6);
  background: rgba(232,168,32,.07);
  transition: all .25s;
  position: relative;
  box-shadow: 0 0 24px rgba(232,168,32,.08);
}
.upgrade-opt:hover .upgrade-opt-box {
  border-color: var(--gold);
  background: rgba(232,168,32,.12);
  box-shadow: 0 0 32px rgba(232,168,32,.18);
  transform: translateY(-1px);
}
.upgrade-opt input:checked ~ .upgrade-opt-box {
  border-color: var(--gold);
  background: rgba(232,168,32,.14);
  box-shadow: inset 0 0 0 1px rgba(232,168,32,.5), 0 0 24px rgba(232,168,32,.18);
}
.upgrade-opt-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
}
/* Custom checkbox visual */
.upgrade-opt-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid var(--gold);
  border-radius: 5px;
  background: rgba(0,0,0,.25);
  position: relative;
  transition: all .2s;
}
.upgrade-opt:hover .upgrade-opt-check {
  background: rgba(232,168,32,.18);
}
.upgrade-opt input:checked ~ .upgrade-opt-box .upgrade-opt-check {
  background: var(--gold);
}
.upgrade-opt input:checked ~ .upgrade-opt-box .upgrade-opt-check::after {
  content: '';
  position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border: solid #1a0e00;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.upgrade-opt-title {
  font-size: .95rem; font-weight: 700;
  color: var(--white);
  flex: 1;
  line-height: 1.35;
}
.upgrade-opt input:checked ~ .upgrade-opt-box .upgrade-opt-title {
  color: var(--gold);
}
.upgrade-opt-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}
.upgrade-opt-desc strong {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}


/* ════════════════════════════════════════
   SPAM WARNING — v success boxu po přihlášce
════════════════════════════════════════ */
.spam-warning {
  margin: 20px 0 8px;
  padding: 18px 20px;
  background: rgba(232,168,32,.08);
  border: 1.5px solid rgba(232,168,32,.45);
  border-radius: 10px;
  text-align: left;
}
.spam-warning-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  font-size: .92rem;
  color: var(--gold);
  line-height: 1.4;
}
.spam-warning-ico {
  font-size: 1.2rem;
  flex-shrink: 0;
  filter: saturate(1.2);
}
.spam-warning-head strong { color: var(--gold); font-weight: 700; }
.spam-warning-steps {
  list-style: decimal;
  margin: 0;
  padding-left: 22px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.spam-warning-steps li { margin-bottom: 8px; }
.spam-warning-steps li:last-child { margin-bottom: 0; }
.spam-warning-steps strong {
  color: var(--white);
  font-weight: 600;
}
.spam-warning-steps a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(232,168,32,.4);
}
.spam-warning-steps a:hover {
  border-bottom-style: solid;
}

@media (max-width: 600px) {
  .spam-warning { padding: 14px 16px; }
  .spam-warning-steps { padding-left: 18px; font-size: .8rem; }
}
