
/* ================= MATCHMAKING SUCCESS ================= */
.mm-title-success {
  color: #b40000;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 12px;
}
.mm-success-cta {
  display: inline-block;
  margin-top: 24px;
}
.no-scroll {
  overflow: hidden;
}

/* ===========================
   INTER – WEB FONT
   =========================== */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000;
  color: #eaeaea;
  line-height: 1.6;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ================= GLOBAL ================= */
a {
  color: #b40000;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.prize-section {
  position: relative;
}

.prize-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px; /* ladíš vzdálenost k registraci */
  transform: translateX(-50%);

  width: 80%;
  max-width: 900px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(180,0,0,0.9),
    transparent
  );

  box-shadow:
    0 0 6px rgba(180,0,0,0.6),
    0 0 14px rgba(180,0,0,0.35);

  pointer-events: none;
}

.section-dark {
  background: #050505;
}

.section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
}

.section-lead {
  text-align: center;
  color: #bbb;
  max-width: 620px;
  margin: 0 auto 40px;
}
.divider-block {
  width: 100%;
  height: 1px;
  margin: 32px 0;

  background: linear-gradient(
    to right,
    transparent,
    rgba(180,0,0,0.9),
    transparent
  );
}

.divider-section {
  width: 80%;
  max-width: 900px;
  height: 1px;
  margin: 60px auto;

  background: linear-gradient(
    to right,
    transparent,
    rgba(180,0,0,0.9),
    transparent
  );

  box-shadow:
    0 0 6px rgba(180,0,0,0.6),
    0 0 14px rgba(180,0,0,0.35);
}

.hp-wrapper {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOW STOCK BADGE ===== */
.low-stock-badge{
  display:inline-block;
  margin:6px auto 10px;
  padding:4px 10px;
  font-size:11px;
  font-weight:800;
  color:#000;
  background:#ffd166;
  border-radius:999px;
  letter-spacing:.4px;
  text-transform:uppercase;
}
 .merch-check{
   display:block;
   margin:10px 0;
   font-weight:600;
 }

.merch-size{
  margin-top:10px;
  margin-bottom:14px;
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #222;
  background:#000;
  color:#fff;
}

.merch-size--lower{
  margin-top:32px;
}

 .merch-size--spacer{
  opacity:0;
  pointer-events:none;
}

.merch-size.is-disabled{
  opacity:.5;
}

.merch-total{
  text-align:center;
  font-size:18px;
  margin:18px 0 10px;
}

.merch-buy-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto; /* push row to bottom so all cards align */
}
.merch-price{
  font-weight:800;
  font-size:18px;
  white-space:nowrap;
}
.merch-qty-box{
  display:flex;
  align-items:center;
  background:#111;
  border:1px solid #333;
  border-radius:10px;
  overflow:hidden;
  z-index:50;
}
.merch-qty-box button{
  background:#111;
  color:#fff;
  border:none;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:20px;
  font-weight:700;
}
.merch-qty-box input{
  width:48px;
  height:36px;
  text-align:center;
  background:#000;
  border:none;
  color:#fff;
  font-size:16px;
  appearance:textfield;
  -moz-appearance:textfield;
}

/* remove arrows in number input (Chrome, Safari) */
.merch-qty-box input::-webkit-outer-spin-button,
.merch-qty-box input::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}
.merch-add{
  padding:10px 16px;
  font-size:12px;
  background:#b40000;
  color:#fff;
  border:none;
  border-radius:8px;
  z-index:50;
}
.merch-add:hover{
  background:#d10000;
}

/* ===== MOBILE STICKY MINI CART ===== */
#stickyMiniCart{
  background: linear-gradient(180deg,#111,#000);
  border-top:1px solid rgba(255,255,255,.08);
  box-shadow:0 -10px 30px rgba(0,0,0,.6);
  padding:12px 16px;
}

.sticky-cart-inner{
  max-width:900px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:#fff;
  font-weight:700;
}

.sticky-cart-btn{
  background:#b40000;
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  white-space:nowrap;
}

.sticky-cart-btn:hover{
  background:#d10000;
}

/* ================= MERCH MOBILE FIX ================= */
@media (max-width: 520px) {
  .merch-buy-row{
  flex-direction: column;
  align-items: stretch;
  gap:12px;
  margin-top:10px;
}

  .merch-price{
  text-align:center;
  font-size:20px;
  margin-top:4px;
}

  .merch-qty-box{
    justify-content:center;
    width:100%;
  }

  .merch-qty-box input{
    width:60px;
    font-size:18px;
  }

  .merch-qty-box button{
    width:44px;
    height:44px;
    font-size:22px;
  }

  .merch-add{
    width:100%;
    padding:14px 16px;
    font-size:14px;
  }

  .merch-size{
  margin-bottom:8px;
}
}
/* ===== FORM HIGHLIGHT ANIMATION ===== */
.form-highlight{
  animation: formGlow 2s ease;
}

@keyframes formGlow{
  0%{
    box-shadow: 0 0 0 0 rgba(180,0,0,0);
    transform: scale(1);
  }
  30%{
    box-shadow:
      0 0 0 6px rgba(180,0,0,0.25),
      0 0 30px rgba(180,0,0,0.35);
    transform: scale(1.01);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(180,0,0,0);
    transform: scale(1);
  }
}
/* ===== MERCH ORDER FORM PROFESSIONAL LOOK ===== */

#merchForm{
  max-width:520px;
  margin:20px auto 0; /* space under section title */
}

/* nadpis objednávky */
#miniCart{
  text-align:left;
  margin-top:16px;
}

#miniCart strong{
  display:block;
  margin-bottom:6px;
  font-size:16px;
}

/* text závazné objednávky */
.merch-form-consent{
  font-size:12px;
  color:#888;
  text-align:center;
  line-height:1.5;
  margin:18px 0 8px;
}

.merch-form-consent strong{
  color:#fff;
}

/* --- MERCH FORM INPUT UPGRADE --- */
#merch h2{
  text-align:center;
  margin-bottom:60px !important;
}

#merch h2::after{
  content:"";
  display:block;
  width:70px;
  height:2px;
  margin:14px auto 0;
  background:linear-gradient(to right,transparent,#b40000,transparent);
  box-shadow:0 0 10px rgba(180,0,0,.6);
}

#merchForm input[type="text"],
#merchForm input[type="email"],
#merchForm input[type="tel"]{
  background:#070707;
  border:1px solid rgba(255,255,255,.08);
  padding:16px 18px;
  border-radius:14px;
  font-size:15px;
  margin-bottom:14px;
  transition:all .2s ease;
}

#merchForm input::placeholder{
  color:#666;
}

#merchForm input:focus{
  border-color:#b40000;
  box-shadow:0 0 0 2px rgba(180,0,0,.25),
             0 0 18px rgba(180,0,0,.25);
  background:#050505;
}

#merchForm .cta-submit{
  margin-top:18px;
  padding:18px 24px;
  font-size:16px;
  letter-spacing:1px;
}

/* ===== MINI CART PROFESSIONAL UI ===== */

#miniCart{
  background:#070707;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px 16px;
  margin-top:18px;
}

/* jednotlivý řádek */
.mini-cart-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 4px;
}

/* divider mezi položkami */
.mini-cart-row + .mini-cart-row{
  border-top:1px solid rgba(255,255,255,.06);
}

/* levá část (ikona + název + velikost + qty) */
.mini-cart-left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-weight:600;
}

.mini-cart-icon{
  font-size:16px;
}

.mini-cart-name{
  min-width:90px;
}

.mini-cart-size{
  color:#aaa;
  font-weight:500;
}

.mini-cart-qty{
  color:#fff;
  font-weight:800;
}

/* tlačítko odebrání */
.mini-cart-remove{
  width:28px;
  height:28px;
  border-radius:50%;
  border:none;
  background:#1a1a1a;
  color:#ff4d4d;
  font-weight:900;
  cursor:pointer;
  transition:all .2s ease;
}

.mini-cart-remove:hover{
  background:#b40000;
  color:#fff;
  transform:scale(1.08);
}

/* ================= MERCH ORDER CARD – MOBILE OPTIMIZATION ================= */
@media (max-width:520px){

  /* celý blok objednávky */
  #merchForm{
    padding:0 14px;
  }

  /* karta košíku */
  #miniCart{
    padding:16px 14px;
    border-radius:16px;
  }

  #miniCart strong{
    font-size:17px;
    margin-bottom:10px;
  }

  /* řádek položky */
  .mini-cart-row{
    flex-direction:row;
    align-items:flex-start;
    gap:10px;
    padding:12px 2px;
  }

  /* levá část – zalomení textu */
  .mini-cart-left{
    flex:1;
    flex-wrap:wrap;
    gap:6px 8px;
    font-size:15px;
  }

  .mini-cart-name{
    min-width:auto;
  }

  .mini-cart-size{
    width:100%;
    font-size:13px;
  }

  .mini-cart-qty{
    font-size:15px;
  }

  /* tlačítko odebrání – větší tap target */
  .mini-cart-remove{
    width:34px;
    height:34px;
    font-size:16px;
  }

  /* inputy formuláře */
  #merchForm input[type="text"],
  #merchForm input[type="email"],
  #merchForm input[type="tel"]{
    font-size:16px;
    padding:18px 18px;
    margin-bottom:16px;
  }

  /* submit button */
  #merchForm .cta-submit{
    padding:20px 24px;
    font-size:17px;
  }

  /* text pod formulářem */
  .merch-form-consent{
    font-size:13px;
    margin-top:16px;
  }
}
/* ================= MERCH ================= */
#merch{
  position: relative;
  z-index: 10; /* fix klikání selectu */
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 28px;
  margin-top: 30px;
}
.merch-item {
  position: relative;
  z-index: 20;
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:18px;
  text-align:center;
  display:flex;
  flex-direction:column;
  height:100%;
}
.merch-item img {
  width:100%;
  border-radius:12px;
  margin-bottom:12px;
}
 
.merch-desc{
  min-height:110px; /* sjednocení výšky popisu */
}
.merch-title {
  font-weight:800;
  margin-bottom:10px;
}
.merch-options select {
  margin-top:8px;
  width:100%;
}

.merch-size{
  position:relative;
  z-index:1;
}

/* ================= LANGUAGE SWITCH ================= */

.lang-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10000;

  display: inline-flex;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 4px;

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.lang-btn {
  appearance: none;
  border: none;
  background: transparent;

  color: #aaa;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;

  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.lang-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(135deg, #b40000, #7a0000);
  color: #fff;
  box-shadow: 0 6px 16px rgba(180,0,0,0.45);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(
    circle at top,
    rgba(180,0,0,0.45),
    rgba(0,0,0,0.98)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* watermark logo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/hero-logo-www.webp") center / 75% no-repeat;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

.hero-inner a:hover .logo {
  transform: scale(1.04);
  opacity: 0.95;
}

/* overlay – MUSÍ být NAD watermarkem */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.85)
  );
  z-index: 2;
}

/* obsah */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.logo {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 24px rgba(180,0,0,0.35));
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-claim {
  font-size: 20px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta span {
  background: rgba(0,0,0,0.6);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
}

/* ================= COUNTDOWN ================= */

.countdown-title {
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 34px;
  font-weight: 900;
}

.cd-number {
  font-size: 36px;
  min-width: 2ch;
  text-align: center;
  color: #ffffff;
  animation: numberPulse 3s infinite;
}

.cd-label {
  font-size: 13px;
  color: #bbb;
  margin-right: 6px;
}

.cd-sep {
  font-size: 28px;
  color: rgba(180,0,0,0.9);
}

/* 🔴 posledních 30 dní */
.countdown-urgent .cd-number {
  color: #ff3b3b;
  animation: urgentPulse 1.6s infinite;
}

/* jemný puls */
@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* urgent puls */
@keyframes urgentPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255,0,0,0);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 14px rgba(255,0,0,0.8);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255,0,0,0);
  }
}

/* ================= CTA ================= */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
  min-height: 56px;
  contain: layout paint;
}

.cta::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
  box-sizing: border-box;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-badge {
  font-size: 13px;
  background: #ffd700;
  color: #000;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* hlavní CTA (hero, success) */
.cta-main {
  background: #b40000;
  color: #ffffff;
}

.cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(180,0,0,0.45);
}

/* submit CTA ve formuláři */
.cta-submit {
  width: 100%;
  background: #b40000;
  color: #ffffff;
  margin-top: 10px;
}

.cta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(180,0,0,0.45);
}

/* disabled stav */
.cta[disabled],
.cta-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* CTA puls (highlight registrace) */
.cta-pulse {
  position: relative;
}

.cta-pulse::after {
  content: "";
  position: absolute;
  inset: 0;                 /* ⬅️ DŮLEŽITÉ */
  border-radius: inherit;
  border: 2px solid rgba(180,0,0,0.6);

  transform-origin: center;
  animation: ctaPulse 2.5s infinite;

  pointer-events: none;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.08); /* ⬅️ MENŠÍ SCALE */
    opacity: 0;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

/* ================= FORM ================= */
.form-card {
  max-width: 520px;
  margin: 0 auto;
  background: #0d0d0d;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}

.form-divider {
  width: 100%;
  height: 1px;
  margin: 0 auto 32px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(180,0,0,0.9),
    transparent
  );

  box-shadow:
    0 0 6px rgba(180,0,0,0.6),
    0 0 14px rgba(180,0,0,0.35);
}

.registration-intro {
  margin: 8px auto 20px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.early-bird {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #000;
  padding: 16px 20px;
  border-radius: 12px;
  margin: 16px 0 24px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.form-row {
  margin-bottom: 22px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #222;
  background: #000;
  color: #fff;
}

input::placeholder {
  color: #777;
}

input:focus {
  outline: none;
  border-color: #b40000;
  box-shadow: 0 0 0 2px rgba(180,0,0,0.25);
}

input.valid { border-color: #2ecc71; }
input.invalid { border-color: #e74c3c; }

.form-error {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 6px;
}

.form-note {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 20px;
}

.form-status {
  margin-top: 18px;
  text-align: center;
  font-weight: 600;
}

/* ================= SUCCESS MODE ================= */
.section.registration-success {
  min-height: auto;
  padding: 100px 0;
}
.form-consent {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: 12px 0 18px;
  line-height: 1.4;
}

.success-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.success-card {
  background: #0d0d0d;
  border-radius: 20px;
  padding: 48px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

.success-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

/* ================= VRAKOVISTE ================= */

.mm-modal h2 {
  padding: 10px 0 12px;
  background: none;
  position: static;
  top: auto;
  z-index: auto;
}

.checkbox-inline {
  display: inline-block;
  margin-right: 12px;
  font-size: 14px;
  color: #fff;
}
.checkbox-inline input {
  margin-right: 6px;
}

.mm-pos-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  align-items: flex-start;
}

.mm-pos-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #fff;
}

#matchmakingModal select {
  padding: 10px 32px 10px 14px;
  appearance: none; /* neodstraní šipku na iOS */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.openMatchmakingLink {
  cursor: pointer;
}

.mm-pos-grid input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #b40000; /* iOS + Chrome */
}

@media (max-width: 600px) {
  .mm-pos-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .mm-pos-grid label {
    width: 100%;
  }
  #matchmakingModal select {
    padding: 12px 32px 12px 14px;
    font-size: 16px; /* kvůli zoom bugu na iOS */
  }
}

.mm-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .mm-select-grid {
    grid-template-columns: 1fr;
  }
}
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #222;
  background: #000;
  color: #fff;
  resize: vertical;
}


/* ================= INFO GRID ================= */

 .info-section-title {
   font-size: 16px;
   font-weight: 800;
   margin-top: 14px;
   margin-bottom: 8px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: #ccc;
 }

/* ================= PRIZE ================= */

.prize-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.prize-card {
  background: #0a0a0a;
  border-radius: 18px;
  padding: 32px 20px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prize-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.6);
}

.prize-card .place {
  margin-top: 10px;
  font-size: 16px;
  color: #ccc;
}

.prize-card .amount {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}

/* 🔥 1. místo – extra důraz */
.prize-card.first {
  background: radial-gradient(
    circle at top,
    rgba(180,0,0,1),
    rgba(80,0,0,1)
  );
  border: none;
}

.prize-card.first .amount {
  font-size: 30px;
}

/* decentní odlišení */
.prize-card.second {
  border-color: rgba(255,255,255,0.08);
}

.prize-card.third {
  border-color: rgba(255,255,255,0.05);
}

/* ================= ROZHODCI ================= */
.info-highlight {
  order: 2;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(180, 0, 0, 0.15),
    rgba(0, 0, 0, 0.85)
  );
  border: 1px solid rgba(180, 0, 0, 0.45);
  box-shadow:
    0 0 0 2px rgba(180, 0, 0, 0.15),
    0 12px 32px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.info-highlight + .info-highlight {
  margin-top: 6px;
}

.info-highlight-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.info-highlight h3 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 800;
}

.info-highlight p {
  font-size: 13px;
  line-height: 1.45;
}

.info-highlight strong {
  color: #ffffff;
}

/* ================= PARTNERS ================= */
.sponsors {
  padding: 60px 0;
  background: #000;
  overflow: hidden;
}

.sponsors-title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #eaeaea;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 64px;
  animation: scrollLogos 30s linear infinite;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-item img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.1);
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* fix špatně oříznutého loga */
.logo-fix img{
  transform: scale(1.6);
}
.logo-fix:hover img{
  transform: scale(1.7);
}


/* fix špatně oříznutého loga */
.logo-fix2 img{
  transform: scale(1.3);
}
.logo-fix2:hover img{
  transform: scale(1.4);
}
/* Hover efekt */
.logo-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

/* Pauza animace při hoveru */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* Animace */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobil */
@media (max-width: 768px) {
  .logo-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    animation: none;
    width: 100%;
  }

  .logo-item {
    flex: 0 0 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo-item img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.1);
    opacity: 0.85;
  }
}

/* ================= PARTNERS SPACING FIX ================= */

#registrace {
  padding-bottom: 16px;
}
/* ================= FAQ – FINAL / STABLE ================= */

.faq {
  max-width: 820px;
  margin: 0 auto;
}

/* karta */
.faq details {
  background: #0b0b0b;
  padding: 20px 24px;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

/* hover efekt */
.faq details:hover {
  transform: translateY(-2px);
  border-color: rgba(180,0,0,0.35);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

/* otevřený stav */
.faq details[open] {
  border-color: rgba(180,0,0,0.6);
  box-shadow:
    0 0 0 1px rgba(180,0,0,0.25),
    0 18px 50px rgba(0,0,0,0.55);
}

/* summary = klikací hlavička */
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  list-style: none;
  appearance: none;
  -webkit-appearance: none;
}

/* odstranění default markeru – VŠUDE */
.faq summary::marker {
  content: "";
}

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

/* vlastní šipka */
.faq summary::after {
  content: "▾";
  margin-left: auto;
  font-size: 18px;
  color: #b40000;
  transition: transform .25s ease;
}

/* otočení šipky */
.faq details[open] summary::after {
  transform: rotate(180deg);
}

/* odpověď */
.faq details p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
}

.faq-countdown {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #ffd166;
}

.faq-countdown strong {
  font-weight: 600;
}


/* ================= INFO CONTACT GRID FIX ================= */
.info-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .info-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ================= INFO CARD BASE ================= */
.info-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card .info-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .info-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .info-card {
    padding: 32px 24px;
  }
}
/* ================= FOOTER ================= */
.footer {
  width: 100%;
  background: #000;
  padding: 28px 16px 36px;
  text-align: center;
}
/* ================= GLOBAL DIVIDER ================= */
.section-divider {
  width: 80%;
  max-width: 900px;
  height: 1px;
  margin: 0 auto;

  background: linear-gradient(
    to right,
    transparent,
    rgba(180,0,0,0.9),
    transparent
  );

  box-shadow:
    0 0 6px rgba(180,0,0,0.6),
    0 0 14px rgba(180,0,0,0.35);
}

.footer-divider {
  height: 1px;
  max-width: 900px;
  margin: 0 auto 20px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(180,0,0,0.9),
    transparent
  );

  box-shadow:
    0 0 6px rgba(180,0,0,0.6),
    0 0 14px rgba(180,0,0,0.35);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-brand {
  color: #aaa; /* vyšší kontrast */
}

.footer-brand a {
  color: #ff4d4d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-brand a:hover {
  color: #ff7777;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b40000;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .prize-section {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .lang-switch {
    top: 14px;
    right: 14px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
  }

  .cd-number {
    font-size: 26px;
  }
    .info-highlight {
    padding: 20px 18px;
    border-radius: 14px;
    margin-top: 22px;
  }

  .info-highlight h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .info-highlight p {
    font-size: 14px;
    line-height: 1.6;
  }

  .info-highlight-icon {
    font-size: 22px;
    margin-bottom: 8px;
  }
}
/* ================= REGISTRATION GRID ================= */


.registration-grid {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.registration-form {
  width: 100%;
  max-width: 520px;   /* ⬅️ STEJNÁ ŠÍŘKA JAKO FORM */
  margin: 0 auto;     /* ⬅️ CENTROVÁNÍ LEVÉHO SLOUPCE */
  flex: 3;
}

/* pravý sloupec – info */
.registration-info {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 20px;
}

/* mapa */
.map-box {
  grid-column: 1 / -1;
  background: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  min-height: 260px;
}

.map-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.info-box-compact {
  order: 1;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 8px;
  width: 100%; /* NOVÉ */
}
/* ================= INFO GRID 2-COLUMN ================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  width: 100%;
  justify-items: start; /* NOVÉ */
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
}

.info-item .info-text {
  font-weight: 600;
  color: #fff;
}

.info-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  width: 26px;        /* NOVÉ – sjednocení šířky */
  text-align: center; /* NOVÉ – pro emoji perfektní */
}

.info-text strong {
  font-weight: 600;
}

.info-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1; /* NOVÉ */
}

.info-label {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.info-value {
  font-size: 16px;
  font-weight: 600;
  color: #eee;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .registration-grid {
    flex-direction: column;
  }
  .registration-info {
    padding-left: 0;
  }
  .map-box iframe {
    height: 220px;
  }
}


.mm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9999;
}

.mm-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mm-modal-overlay.open .mm-modal {
  transform: translateY(0);
  opacity: 1;
}

.mm-modal {
  background: #111;
  padding: 28px;
  border-radius: 18px;
  max-width: 520px;
  width: 92%;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  position: relative;

  /* viewport fix */
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;

  /* open animation */
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.mm-close {
  position: sticky;
  top: 8px;
  margin-left: auto;
  z-index: 999;
  background: none;
  border: none;
  color: #888;
  font-size: 28px;
  cursor: pointer;
  display: block;
}


.mm-section-label {
  font-size: 13px;
  font-weight: 700;
  color: #b40000;
  margin: 18px 0 6px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.mm-hint {
  display:block;
  font-size:12px;
  line-height:1.4;
  color:#999;
  margin:-4px 0 8px;
}

@media (max-width: 600px) {
  .mm-modal {
    padding: 20px;
    max-width: 90%;
  }
  .mm-close {
    top: 8px;
    right: 10px;
  }
}
select {
  color: #eee;
  background-color: #1a1a1a;
  border: 1px solid #444;
}

.merch-size option {
  color: #000;
  background: #fff;
}

/* @media (prefers-color-scheme: dark) {
  select {
    color: #fff;
    background-color: #222;
  }
} */

.cta-primary-icon {
  background: #b40000;
  color: #ffffff;
}
.cta-primary-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(180,0,0,0.45);
}

.cta-secondary-icon {
  background: transparent;
  color: #ffffff;
  border: 2px solid #b40000;
}
.cta-secondary-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(180,0,0,0.35);
  background: rgba(180,0,0,0.12);
}
/* ===== MOBILE STICKY MINI CART ===== */
#stickyMiniCart{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:#111;
  border-top:1px solid rgba(255,255,255,.15);
  box-shadow:0 -10px 30px rgba(0,0,0,.6);
  padding:10px 16px;
  z-index:9999;
}

.sticky-cart-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  font-weight:700;
}

.sticky-cart-btn{
  background:#b40000;
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.sticky-cart-btn:hover{
  background:#d10000;
}

/* pouze mobil */
@media (min-width: 521px){
  #stickyMiniCart{display:none !important;}
}

/* ================= STICKY MINI CART ================= */
#stickyMiniCart{
  display:flex;
  justify-content:center;
}

.sticky-cart-inner{
  background:#0d0d0d;
  border-top:1px solid rgba(255,255,255,.08);
  padding:12px 16px;
  width:100%;
  max-width:520px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  box-shadow:0 -10px 30px rgba(0,0,0,.6);
}

.sticky-cart-btn{
  background:#b40000;
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}

@media(min-width:521px){
  #stickyMiniCart{ display:none !important; }
}