/* =========================
   GLOBAL
========================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   ROOT VARS
========================= */
:root {


  /* footer */
  --footerBg: rgba(0, 0, 0, .72);
  --footerLine: rgba(255, 255, 255, .10);
  --footerPadX: 40px;

  /* partner */
  --partnerShift: 0px;
  --partnerMinH: 78px;
  --partnerMaxH: 150px;

  /* obsah vs partner */
  --partnerReserve: calc(clamp(var(--partnerMinH), 10.2vh, var(--partnerMaxH)) + 18px);

  --partnerH: 120px;
  --partnerGap: 12px;
}

/* =========================
   BG
========================= */
.poster {
  min-height: 100vh;
  width: 100vw;
  background: url("../Podklady/BG.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72));
  opacity: 1;
  pointer-events: none;
}

/* =========================
   HEADER
========================= */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 10060;
  background: linear-gradient(180deg, rgba(0, 0, 0, .90), rgba(0, 0, 0, 0));
}

.headerInner {
  position: relative;
  height: 100%;
  width: min(1500px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navDesktop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 34px;
}

.navDesktop a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 12px;
  opacity: .88;
  padding: 10px 0;
  position: relative;
  transition: .18s ease;
}

.navDesktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  transform: scaleX(0);
  transform-origin: center;
  transition: .18s ease;
  opacity: .95;
}

.navDesktop a:hover {
  opacity: 1;
}

.navDesktop a:hover::after {
  transform: scaleX(1);
}

/* hamburger v strede */
.navToggle {
  display: none;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10070;
  pointer-events: auto;
  /* Ensure it catches clicks */
}

.navToggle span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  transition: .22s ease;
}

.navToggle span:nth-child(1) {
  top: 18px;
}

.navToggle span:nth-child(2) {
  top: 25px;
}

.navToggle span:nth-child(3) {
  top: 32px;
}

.navToggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navToggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.navToggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE MENU OVERLAY
========================= */
.mNav {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: linear-gradient(180deg, rgba(0, 0, 0, .97), rgba(0, 0, 0, .86));
  transform: translateY(-100%);
  transition: transform 380ms cubic-bezier(.2, .9, .2, 1);
  pointer-events: none;
  overflow: hidden;
}

.mNav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  opacity: .95;
}

.mNav::after {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 214, 177, .10), transparent 55%),
    radial-gradient(circle at 70% 45%, rgba(255, 0, 72, .12), transparent 55%);
  filter: blur(26px);
  opacity: .9;
  pointer-events: none;
}

.mNav.open {
  transform: translateY(0);
  pointer-events: auto;
}

.mNav__links {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 92px 22px 22px;
  position: relative;
  z-index: 1;
}

.mNav__links a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 18px;
  text-align: center;
  padding: 18px 0;

  opacity: 0;
  transform: translateY(18px);
  transition: opacity .24s ease, transform .24s ease;
  position: relative;
}

.mNav__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  transition: width .22s ease;
  opacity: .95;
}

.mNav.open .mNav__links a {
  opacity: 1;
  transform: translateY(0);
}

.mNav.open .mNav__links a:nth-child(1) {
  transition-delay: 130ms;
}

.mNav.open .mNav__links a:nth-child(2) {
  transition-delay: 190ms;
}

.mNav.open .mNav__links a:nth-child(3) {
  transition-delay: 250ms;
}

.mNav.open .mNav__links a:nth-child(4) {
  transition-delay: 310ms;
}

.mNav__links a:hover::after {
  width: 120px;
}

/* =========================
   CONTENT
========================= */
.content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 92px;

  width: min(1650px, calc(100% - 64px));
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.topHint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .66;
  text-shadow: 0 14px 30px rgba(0, 0, 0, .85);
  user-select: none;
  text-align: center;
  width: 100%;
}

.topHint::before,
.topHint::after {
  content: "";
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 214, 177, .9), rgba(255, 0, 72, .9));
  opacity: .25;
}

/* =========================
   GRID DESKTOP
========================= */
.eventsGrid {
  display: grid;
  grid-template-columns: 1fr 0.55fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: center;
  column-gap: clamp(14px, 2.2vw, 40px);
  row-gap: 0px;
}

.event--left {
  grid-column: 1;
  grid-row: 1;
}

.event--center {
  grid-column: 2;
  grid-row: 1;
}

.event--right {
  grid-column: 3;
  grid-row: 1;
}

.eshopUnderCenter {
  grid-column: 2;
  grid-row: 2;
}

/* =========================
   EVENTS + HOVER
========================= */
.event {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: transform .22s ease;
}

.event__glow {
  position: absolute;
  inset: -46px;
  opacity: 0;
  transition: .22s ease;
  pointer-events: none;
  filter: blur(18px);
}

.event--left .event__glow {
  background: radial-gradient(circle at 45% 48%, rgba(0, 214, 177, .12), transparent 74%);
}

.event--right .event__glow {
  background: radial-gradient(circle at 55% 48%, rgba(255, 0, 72, .14), transparent 72%);
}

.event--center .event__glow {
  background: radial-gradient(circle at 50% 48%, rgba(255, 210, 80, .10), transparent 76%);
}



.event__ctaTop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;

  transition: .22s ease;
  pointer-events: none;
}

.event__ctaTop--center {
  top: -44px;
}

.ctaText {
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
  opacity: .92;
  text-shadow:
    0 18px 44px rgba(0, 0, 0, .90),
    0 0 18px rgba(255, 255, 255, .06);
}

.ctaLine {
  width: 0px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  opacity: .95;
  transition: width .22s ease;
}

.event__logo,
.event__centerLogo,
.event__date {
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform .24s ease;
}

.event__centerLogo {
  width: clamp(280px, 30vw, 540px);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .55));
}

.event__logo {
  height: clamp(250px, 28vw, 520px);
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .55));
}

.event--left {
  justify-self: start;
  height: 550px !important;
  max-height: none !important;
}

.event--left .event__logo {
  height: 550px !important;
  max-height: none !important;
  width: auto !important;
  max-width: none !important;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .55)) !important;
}

.event__date {
  height: clamp(75px, 8.5vw, 150px);
  width: auto;
  max-width: 100%;
  margin-top: clamp(-20px, -1.35vw, -12px);
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, .62));
  opacity: .98;
}

.event:hover {
  transform: translateY(-7px);
}

.event:hover .event__glow {
  opacity: 1;
}

.event:hover .event__ctaTop {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.event:hover .ctaLine {
  width: 86px;
}

.event:hover .event__logo {
  transform: scale(1.035);
}

.event--left:hover .event__logo {
  transform: scale(1.08);
}

.event:hover .event__centerLogo {
  transform: scale(1.045);
}

.event:hover .event__date {
  transform: scale(1.015);
}

/* =========================
   VIDEO LINK
========================= */
/* =========================
   VIDEO LINK
========================= */
.videoLinkCenter,
.videoLinkLeft,
.videoLinkRight {
  grid-row: 2;
  /* Shared visuals */
  margin-top: 14px;
  margin-bottom: 2px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 11px;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  position: relative;
  z-index: 3;
  padding-bottom: 4px;
}

.videoLinkCenter {
  grid-column: 2;
}

.videoLinkLeft {
  grid-column: 1;
}

.videoLinkRight {
  grid-column: 3;
}

/* Invisible bridge to catch mouse moving from logo to link */
.videoLinkCenter::before,
.videoLinkLeft::before,
.videoLinkRight::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

/* Show on hover logic */
.event--center:hover+.videoLinkCenter,
.videoLinkCenter:hover,
.event--left:hover+.videoLinkLeft,
.videoLinkLeft:hover,
.event--right:hover~.videoLinkRight,
/* Tilde because it might not be immediately adjacent in HTML due to Eshop? Check HTML structure. Right video is last. */
.videoLinkRight:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear 0s;
}

/* Note on adjacent sibling selector (+): 
   - Left Event is followed immediately by Left Video? Yes.
   - Center Event followed by Center Video? Yes.
   - Right Event followed by Right Video? The HTML has Right Event then Right Video. Yes.
*/

.videoLinkCenter::after,
.videoLinkLeft::after,
.videoLinkRight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  transform: scaleX(0);
  transform-origin: center;
  transition: .20s ease;
  opacity: .95;
}

.videoLinkCenter:hover::after,
.videoLinkLeft:hover::after,
.videoLinkRight:hover::after {
  transform: scaleX(1);
}

.videoPlay {
  font-size: 10px;
  color: rgba(0, 214, 177, 1);
  /* Accent color */
}

/* =========================
   ESHOP
========================= */
.eshopUnderCenter {
  grid-column: 2;
  grid-row: 3;
  /* Shifted down by video link */
  text-align: center;
  margin-top: 6px;
  position: relative;
  z-index: 3;
}

.eshopLink {
  /* ... existing styles ... */
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.05vw, 15px);
  opacity: .88;
  transition: .20s ease;
  position: relative;
  padding: 5px 0;
}

/* ... existing eshop styles ... */
.eshopLink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  transform: scaleX(0);
  transform-origin: center;
  transition: .20s ease;
  opacity: .95;
}

.eshopLink:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.eshopLink:hover::after {
  transform: scaleX(1);
}

/* =========================
   INTRO ANIM
========================= */
.navDesktop a,
.topHint,
.event,
.eshopUnderCenter,
.videoLinkCenter {
  transition:
    opacity 1200ms cubic-bezier(.2, .9, .2, 1),
    transform 1200ms cubic-bezier(.2, .9, .2, 1);
}

body.is-loading .navDesktop a,
body.is-loading .topHint,
body.is-loading .event,
body.is-loading .eshopUnderCenter,
body.is-loading .videoLinkCenter {
  opacity: 0;
  transform: translateY(18px);
}

body.is-ready .navDesktop a,
body.is-ready .topHint,
body.is-ready .event,
body.is-ready .eshopUnderCenter {
  opacity: 1;
  transform: translateY(0);
}

/* ... delays ... */

body.is-ready .topHint {
  transition-delay: 110ms;
}

body.is-ready .navDesktop a:nth-child(1) {
  transition-delay: 130ms;
}

body.is-ready .navDesktop a:nth-child(2) {
  transition-delay: 200ms;
}

body.is-ready .navDesktop a:nth-child(3) {
  transition-delay: 270ms;
}

body.is-ready .navDesktop a:nth-child(4) {
  transition-delay: 340ms;
}

body.is-ready .event--left {
  transition-delay: 250ms;
}

body.is-ready .event--center {
  transition-delay: 360ms;
}

body.is-ready .videoLinkCenter {
  transition-delay: 460ms;
}

body.is-ready .event--right {
  transition-delay: 560ms;
}

body.is-ready .eshopUnderCenter {
  transition-delay: 650ms;
  /* later than before */
}

/* =========================
   MOBILE
========================= */
@media (max-width: 980px) {
  .eventsGrid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(48px, 6vh, 86px);
    padding-top: 12px;
    padding-bottom: 14px;
  }

  .event--left {
    order: 1;
  }

  .videoLinkLeft {
    order: 2;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -30px;
    margin-bottom: 20px;
  }

  .event--center {
    order: 3;
  }

  .videoLinkCenter {
    order: 4;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -30px;
    margin-bottom: 20px;
  }

  .event--right {
    order: 5;
  }

  .videoLinkRight {
    order: 6;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -30px;
    margin-bottom: 20px;
  }

  .eshopUnderCenter {
    order: 7;
    margin-top: 16px;
    padding-bottom: 12px;
  }

  .event__logo,
  .event__centerLogo {
    width: min(540px, 92vw);
    height: auto;
    /* rovnaké pre všetky 3 */
  }

  .event--left .event__logo {
    width: min(800px, 98vw) !important;
  }


  .event__date {
    width: min(760px, 96vw);
    height: auto;
    max-width: 100%;
    margin-top: 2px;
    margin-bottom: 6px;
    transform: none;
  }

  .eshopUnderCenter {
    margin-top: 16px;
    padding-bottom: 12px;
  }

  .topHint {
    width: 100%;
    justify-content: center;
    padding: 0 12px;
  }

  .topHint::before,
  .topHint::after {
    width: 50px;
  }
}

/* vypnúť hover na touch */
@media (hover: none) {
  .event:hover {
    transform: none;
  }

  .event:hover .event__glow {
    opacity: 0;
  }

  .event:hover .event__ctaTop {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  .event:hover .ctaLine {
    width: 0px;
  }

  .event:hover .event__logo,
  .event:hover .event__centerLogo,
  .event:hover .event__date {
    transform: none;
  }
}

/* mobile header */
@media (max-width: 860px) {
  .navDesktop {
    display: none;
  }

  .navToggle {
    display: block;
  }
}

/* =========================
   FOOTER (SYMETRICKÝ)
========================= */
.siteFooter {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--footerLine);
  background: var(--footerBg);
  margin: 0;
  padding: 14px 0;
}

.footerRow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--footerPadX);

  /* ✅ symetria: ľavá a pravá majú rovnakú šírku */
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;

  min-height: 44px;
}

/* ✅ rovnaké zarovnanie a rovnaká "výška" */
.footerLeft,
.footerMid,
.footerRight {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.footerLeft {
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.footerMid {
  justify-content: center;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  letter-spacing: .10em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.footerRight {
  justify-content: flex-end;
}

/* bodky nech sú opticky rovnaké */
.sep {
  color: rgba(255, 255, 255, .26);
  line-height: 1;
}

/* linky – rovnaké metriky */
.siteFooter a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 6px 0;
  opacity: .92;
  transition: opacity .18s ease, transform .18s ease;
  white-space: nowrap;
}

.siteFooter a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  opacity: .95;
}

.siteFooter a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.siteFooter a:hover::after {
  transform: scaleX(1);
}

.siteFooter .credit {
  opacity: .90;
}

.siteFooter .credit:hover {
  opacity: 1;
}

/* ✅ MOBILE: všetko pekne vycentrované, rovnaké rozostupy */
@media (max-width: 980px) {
  :root {
    --footerPadX: 20px;
  }

  .siteFooter {
    padding: 14px 0;
  }

  .footerRow {
    grid-template-columns: 1fr;
    padding: 10px var(--footerPadX);
    gap: 10px;
    text-align: center;
  }

  .footerLeft,
  .footerMid,
  .footerRight {
    justify-content: center;
    min-height: unset;
  }

  .footerLeft {
    gap: 10px;
    row-gap: 8px;
  }

  .footerMid {
    order: 3;
    white-space: normal;
    /* nech sa zmestí na malé mobily */
    line-height: 1.5;
  }

  .footerRight {
    order: 2;
  }
}

/* =========================
   PARTNER (nezmenené)
========================= */
.partnerFixed {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: auto;
  padding-bottom: env(safe-area-inset-bottom);

  transform: translateX(-50%) translateY(var(--partnerShift));
  will-change: transform;
}

.partnerLink img {
  height: clamp(var(--partnerMinH), 10.2vh, var(--partnerMaxH));
  width: auto;
  display: block;
  margin: 0;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .84));
}

/* Rezerva pod obsahom kvôli fixed partnerovi */
main {
  padding-bottom: var(--partnerReserve, 180px);
}

/* Ak niekde nemáte <main> a máte napr. .poster/.aboutPage ako main wrapper */
.poster,
.aboutPage,
.ncxiiPage,
.ncxiiiPage {
  padding-bottom: var(--partnerReserve, 180px);
}

/* Fullscreen sekcie nech nerobia extra dĺžku kvôli partnerReserve */
.poster,
.ncxiiPage,
.ncxiiiPage {
  min-height: calc(100vh - var(--partnerReserve, 0px));
}

/* istota: content už nepridáva žiadnu rezervu */
.poster .content {
  padding-bottom: 20px !important;
  margin-bottom: 20px !important;
}

/* =========================
   FIX: HOME medzera pred footerom
========================= */
.poster {
  min-height: auto !important;
}

.content {
  min-height: auto !important;
  justify-content: flex-start !important;
  padding-bottom: 50px !important;
}

/* =========================
   COOKIE CONSENT (PREMIUM + SETTINGS)
========================= */
.cookieUI {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
}

.cookieUI.is-open {
  display: flex;
}

.cookieUI__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}

.cookieUI__panel {
  position: relative;
  width: min(1040px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(0, 0, 0, .80), rgba(0, 0, 0, .62));
  box-shadow: 0 28px 110px rgba(0, 0, 0, .62);
  overflow: hidden;

  transform: translateY(14px);
  opacity: 0;
  animation: cookieUp .26s ease forwards;
}

@keyframes cookieUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookieUI__topline {
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  opacity: .95;
}

.cookieUI__inner {
  padding: 16px 16px 14px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  align-items: start;
}

.cookieUI__title {
  margin: 0 0 6px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, .92);
}

.cookieUI__text {
  margin: 0;
  line-height: 1.7;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
}

.cookieUI__links {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookieUI__links a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  padding: 4px 0;
  opacity: .92;
  transition: opacity .18s ease, transform .18s ease;
}

.cookieUI__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 214, 177, 1), rgba(255, 0, 72, 1));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  opacity: .95;
}

.cookieUI__links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.cookieUI__links a:hover::after {
  transform: scaleX(1);
}

/* ACTIONS */
.cookieUI__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookieBtn {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .90);
  padding: 12px 12px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, opacity .16s ease;
}

.cookieBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .35);
  border-color: rgba(255, 0, 72, .22);
}

.cookieBtn--primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
}

.cookieBtn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .12);
  opacity: .92;
}

.cookieBtn--ghost:hover {
  opacity: 1;
  border-color: rgba(0, 214, 177, .26);
}

/* SETTINGS DRAWER */
.cookieUI__settings {
  grid-column: 1 / -1;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding-top: 12px;
  display: none;
}

.cookieUI.is-settings .cookieUI__settings {
  display: block;
}

.cookieGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.cookieCard {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .035);
  padding: 12px 12px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.cookieCard:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.cookieCard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.cookieCard__name {
  margin: 0;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, .90);
}

.cookieCard__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}

/* Toggle switch */
.cookieSwitch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
}

.cookieSwitch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.cookieSwitch__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cookieSwitch__dot {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .86);
  transition: transform .18s ease, background .18s ease;
}

/* ON */
.cookieSwitch input:checked+.cookieSwitch__track {
  background: linear-gradient(90deg, rgba(0, 214, 177, .35), rgba(255, 0, 72, .25));
  border-color: rgba(0, 214, 177, .30);
  box-shadow: 0 0 0 5px rgba(0, 214, 177, .08);
}

.cookieSwitch input:checked+.cookieSwitch__track .cookieSwitch__dot {
  transform: translate(20px, -50%);
  background: rgba(255, 255, 255, .95);
}

/* DISABLED (necessary) */
.cookieCard.is-locked {
  opacity: .92;
}

.cookieCard.is-locked .cookieSwitch {
  opacity: .55;
  pointer-events: none;
}

.cookiePill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .18);
}

/* MOBILE */
@media (max-width: 860px) {
  .cookieUI {
    align-items: flex-end;
    padding: 12px;
  }

  .cookieUI__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cookieUI__actions {
    grid-template-columns: 1fr;
  }

  .cookieGrid {
    grid-template-columns: 1fr;
  }
}



/* =========================
   DESKTOP LANGUAGE DROPDOWN (HOVER FIX)
========================= */

.langDD {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10080;
}

/* "tlačidlo" len vlajka */
.langDD__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  user-select: none;
}

.langDD__flag {
  font-size: 18px;
  line-height: 1;
}

/* MENU */
.langDD__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .72));
  box-shadow: 0 28px 110px rgba(0, 0, 0, .62);

  padding: 8px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}

/* ✅ NEVIDITEĽNÝ "MOST" medzi buttonom a menu
   aby sa hover nikdy nestratil pri prechode */
.langDD::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: 220px;
  /* nech pokryje aj menu */
  height: 14px;
  /* most cez medzeru */
  background: transparent;
}

/* ✅ OTVORENIE – hover AJ focus-within */
.langDD:hover .langDD__menu,
.langDD:focus-within .langDD__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* položky */
.langDD__item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 12px;
  border-radius: 12px;

  color: rgba(255, 255, 255, .92);
  text-decoration: none;

  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 11px;

  transition: background .16s ease, transform .16s ease;
}

.langDD__item:hover {
  background: rgba(255, 255, 255, .06);

}

.langDD__item.is-active {
  background: linear-gradient(90deg, rgba(0, 214, 177, .14), rgba(255, 0, 72, .10));
  border: 1px solid rgba(0, 214, 177, .20);
}

/* Mobile riešime zvlášť – na mobile desktop dropdown schováme */
@media (max-width: 860px) {
  .langDD {
    display: none;
  }
}



/* =========================
   MOBILE MENU – polish + language pills
   Daj na ÚPLNÝ KONIEC style.css
========================= */

/* mobilné menu: viac priestoru, lepšie klikacie plochy */
@media (max-width: 860px) {
  .mNav__links {
    padding: 104px 18px 26px;
    /* viac hore (header) */
    gap: 14px;
  }

  .mNav__links a {
    font-size: 18px;
    padding: 16px 0;
  }

  /* jazyk sekcia */
  .mLangDD {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mLangDD__label {
    text-align: center;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(255, 255, 255, .62);
  }

  .mLangDD__row {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .mLangBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 128px;
    height: 44px;
    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);

    text-decoration: none;
    color: rgba(255, 255, 255, .92);

    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 12px;

    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
  }

  .mLangBtn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
    text-decoration: none;
  }

  .mLangBtn__flag {
    font-size: 18px;
    line-height: 1;
  }

  .mLangBtn.is-active {
    border-color: rgba(0, 214, 177, .28);
    background: linear-gradient(90deg, rgba(0, 214, 177, .14), rgba(255, 0, 72, .10));
  }
}


.mLangBtn__flag {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.langDD__flag {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}


/* =========================
   INDEX – equal visual height (logo+date vs combined)
========================= */
:root {
  --eventVisualH: clamp(340px, 34vw, 560px);
  /* výška celého "vizuálu" */
}

.event {
  height: var(--eventVisualH);
  justify-content: center;
}

.event__logo,
.event__centerLogo,
.event__date {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* LEFT/RIGHT: logo + date spolu musia vojsť do rovnakej výšky */
.event--left .event__logo,
.event--right .event__logo {
  max-height: 75%;
  /* upraviteľné */
}

.event--left .event__date,
.event--right .event__date {
  max-height: 42%;
  /* upraviteľné */
  margin-top: clamp(-18px, -1.2vw, -10px);
  /* nech sedí prechod */
}

/* CENTER: jeden obrázok (už má dátum) zaberá celú výšku */
.event--center .event__centerLogo {
  max-height: 100%;
}

@media (max-width: 980px) {
  :root {
    --eventVisualH: auto;
    /* na mobile nech sa to prispôsobí */
  }

  .event {
    height: auto;
  }

  .event__logo,
  .event__centerLogo,
  .event__date {
    width: min(560px, 92vw);
    max-height: none;
  }

  /* Na mobile nech je pomer stále OK */
  .event--left .event__logo,
  .event--right .event__logo {
    width: min(520px, 86vw);
  }

  .event--left .event__date,
  .event--right .event__date {
    width: min(760px, 96vw);
  }

  .event--center .event__centerLogo {
    width: min(560px, 92vw);
  }
}




/* ✅ posun obsahu eventov nižšie bez "box" efektu */
:root {
  --eventsDrop: 10vh;
  /* koľko posunúť dole (uprav si 20-40px) */
}

/* posunie celý grid nižšie (najčistejšie) */
.eventsGrid {
  margin-top: var(--eventsDrop);
}

/* a ešte jemne posunie samotné eventy (aby to sadlo opticky) */
.event {
  transform: translateY(10px);
}

/* hover nech sa stále správa rovnako – iba sa pridá k tomu posunu */
.event:hover {
  transform: translateY(3px);
  /* bolo -7px, teraz menej agresívne */
}

/* =========================
   FOOTER LOGOS (NO BOXES, BIGGER, MORE GAP)
========================= */
.footerLogos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  /* ✅ väčšia medzera medzi logami */
}

/* link je čistý – žiadne pozadie, border, padding */
.footerLogoLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  /* ✅ bez boxu */
  border: 0;
  background: transparent;
  opacity: .92;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease, filter .18s ease;
}

/* zruš underline efekt z tvojho .siteFooter a::after */
.footerLogoLink::after {
  display: none !important;
}

.footerLogoImg {
  height: 26px;
  /* ✅ väčšie logo */
  width: auto;
  display: block;
  max-height: 26px;
  /* ✅ nepustí to vyššie -> footer sa nezväčší */
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .55));
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

/* ak treba jemne doladiť rozdielne výšky */
.footerLogoImg--unity {
  height: 26px;
  max-height: 26px;
}

.footerLogoImg--webo {
  height: 26px;
  max-height: 26px;
}

.footerLogoLink:hover {
  opacity: 1;
}

/* =========================
   FOOTER LOGOS (NO BOXES, BIGGER, MORE GAP)
========================= */
.footerLogos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  /* ✅ väčšia medzera medzi logami */
}

/* link je čistý – žiadne pozadie, border, padding */
.footerLogoLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  /* ✅ bez boxu */
  border: 0;
  background: transparent;
  opacity: .92;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease, filter .18s ease;
}

/* zruš underline efekt z tvojho .siteFooter a::after */
.footerLogoLink::after {
  display: none !important;
}

.footerLogoImg {
  height: 26px;
  max-height: 26px;
  width: auto;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}


/* ak treba jemne doladiť rozdielne výšky */
.footerLogoImg--unity {
  height: 26px;
  max-height: 26px;
}

.footerLogoImg--webo {
  height: 26px;
  max-height: 26px;
}

.footerLogoLink:hover {
  opacity: 1;
}

/* hover = zväčšenie, nie nadvihnutie */
.footerLogoLink:hover .footerLogoImg {
  transform: scale(1.08);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .65));
}


/* MOBILE: pekne do stredu */
@media (max-width: 980px) {
  .footerLogos {
    justify-content: center;
    gap: 22px;
  }
}


/* MOBILE: pekne do stredu */
@media (max-width: 980px) {
  .footerLogos {
    justify-content: center;
    gap: 22px;
  }
}



.footerLogoLink::after {
  display: none !important;
}

/* =========================
   CUSTOM CHECKBOXES
========================= */
.check {
  display: flex !important;
  flex-direction: row !important;
  /* FORCE ROW LAYOUT */
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 8px 0;
  transition: opacity 0.2s;
  width: 100%;
  justify-content: flex-start !important;
  /* Override center alignment */
}

.check:hover {
  opacity: 1;
}

/* Skrytie default inputu - Strict dimensions to prevent stretching */
.check input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  margin: 0 !important;

  /* STRICT FIXED DIMENSIONS */
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;

  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px !important;
  /* FORCE SQUARE (was potentially rounded by other CSS) */
  background: rgba(255, 255, 255, 0.05) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  margin-top: 1px !important;
  /* Align with text top/baseline */
}

/* Hover na box */
.check:hover input[type="checkbox"] {
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Checked state - Default Green (NCXII) */
.check input[type="checkbox"]:checked {
  background: linear-gradient(135deg, rgba(0, 214, 177, 1), rgba(0, 180, 150, 1)) !important;
  border-color: transparent !important;
  box-shadow: 0 0 8px rgba(0, 214, 177, 0.4);
}

/* Checked state - RED Override for NCXIII */
/* Assuming .ncxiiiPage is on the body or wrapper div */
.ncxiiiPage .check input[type="checkbox"]:checked,
.ncxiiiWrap .check input[type="checkbox"]:checked {
  background: linear-gradient(135deg, rgba(255, 55, 90, 1), rgba(220, 40, 70, 1)) !important;
  box-shadow: 0 0 8px rgba(255, 55, 90, 0.4);
}

/* Checkmark icon (Fajka) - CSS Border Fallback (Fixed) */
.check input[type="checkbox"]:checked::after {
  content: '';
  display: block !important;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  background: none;
  /* Ensure no failed SVG bg */
  border-color: #000 !important;
}

/* Error state */
.check.err input[type="checkbox"] {
  border-color: #ff0048 !important;
}

/* PDF Preview Link Style */
.pdf-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00d6b1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.pdf-preview-link:hover {
  color: #fff;
  text-decoration: underline;
}

.inline-pdf-link {
  color: #00d6b1;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 214, 177, 0.3);
  transition: all 0.2s;
}

.inline-pdf-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.check>span {
  flex: 1 !important;
  display: block !important;
  min-width: 0 !important;
  padding-top: 0 !important;
  text-align: left !important;
}

/* Separate box for consent */
.check.separate-box {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  width: fit-content !important;
  max-width: 100% !important;

  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  margin-top: 15px;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s;
}

.check.separate-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

/* =========================
   FIGHTERS PAGE
========================= */
.fighters-page {
  min-height: 100vh;
  width: 100vw;
  background: url("../Podklady/BG.jpg") center/cover no-repeat fixed;
  position: relative;
  padding: 120px 20px 80px;
  overflow-x: hidden;
}

.fighters-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72));
  pointer-events: none;
}

.fighters-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.fighters-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 48px);
  margin: 0 0 16px;
  color: #fff;
}

.fighters-subtitle {
  text-align: center;
  opacity: .75;
  margin: 0 0 44px;
  font-size: 15px;
}

.fighters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.fighter-card {
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
}

.fighter-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .35);
}

.fighter-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #111;
  display: block;
}

.fighter-info {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fighter-name {
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
  line-height: 1.2;
}

.fighter-nickname {
  font-weight: 700;
  font-size: 15px;
  color: #00d6b1;
  margin: 0;
}

.fighter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.fighter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.fighter-badge img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
}

.fighter-record {
  margin-top: auto;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .1em;
  color: #ff0048;
  text-align: center;
}

.fighter-score {
  margin-top: auto;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .1em;
  color: #00d6b1;
  text-align: center;
}

.fighter-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.fighter-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.fighter-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .6;
  font-weight: 700;
}

.fighter-stat-value {
  font-size: 14px;
  font-weight: 900;
  color: #00d6b1;
  line-height: 1.2;
}

.fighters-empty,
.fighters-error {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  opacity: .85;
}

.fighters-error {
  color: #ff6b6b;
}

/* ===== EVENT / STARTOVKA ===== */
.event-page {
  background: url("../Podklady/BG.jpg") center/cover no-repeat fixed;
  min-height: 100vh;
}

.event-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 20px 60px;
  overflow: hidden;
  background: transparent;
}

.event-hero .event-cover {
  display: none;
}

.event-cover {
  display: none;
}

.event-hero::after {
  display: none;
}

.event-info {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.event-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.event-date {
  font-size: clamp(18px, 2.5vw, 22px);
  opacity: 0.85;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.event-reg-open {
  display: none;
  padding: 10px 22px;
  border-radius: 24px;
  background: rgba(0, 214, 177, 0.12);
  border: 1px solid rgba(0, 214, 177, 0.35);
  color: #00d6b1;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-error {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #ff6b6b;
}

.startovka-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 120px;
}

.startovka-title {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 44px;
  text-align: center;
  background: linear-gradient(90deg, #fff 0%, #ff0048 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255, 0, 72, 0.25));
}

.startovka-loading,
.startovka-empty,
.startovka-unpublished {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  opacity: 0.85;
}

.startovka-group {
  margin-bottom: 64px;
}

.startovka-group-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 24px;
  padding-bottom: 12px;
  position: relative;
}

.startovka-group-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff0048, #00d6b1);
}

.startovka-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.startovka-match {
  position: relative;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.startovka-match::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00d6b1, #ff0048);
}

.startovka-match:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 26px rgba(255, 0, 72, 0.12);
}

.fighter-side {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.fighter-side--empty {
  opacity: 0.6;
}

.fighter-mini-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  border: 3px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto 14px;
  display: block;
}

.fighter-mini-name {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fighter-mini-nickname {
  font-size: 13px;
  color: #00d6b1;
  margin: 0 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fighter-mini-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.fighter-mini-meta .fighter-badge {
  padding: 5px 9px;
  font-size: 11px;
}

.fighter-badge-flag {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
}

.vs-badge {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0048, #ff4d8a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  border: none;
  box-shadow: 0 0 20px rgba(255, 0, 72, 0.45);
}

.free-slot {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 3px dashed rgba(255, 255, 255, 0.22);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 10px;
}

@media (max-width: 480px) {
  .event-hero {
    min-height: 400px;
    padding: 120px 16px 40px;
  }

  .startovka-grid {
    grid-template-columns: 1fr;
  }

  .startovka-match {
    padding: 20px 14px;
    gap: 10px;
  }

  .fighter-mini-photo,
  .free-slot {
    width: 72px;
    height: 72px;
  }

  .vs-badge {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .fighter-mini-name {
    font-size: 14px;
  }

  .fighter-mini-nickname,
  .fighter-mini-meta .fighter-badge {
    font-size: 10px;
  }
}
