/* ===== NAV LINKS ===== */
.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  transition: color var(--transition-fast);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.nav-link:hover { color: white; border-bottom-color: var(--purple-bright); }
.nav-link.active { color: var(--purple-bright); border-bottom-color: var(--purple-bright); }

/* ===== SOCIALS ===== */
.nav-socials { display: flex; gap: 14px; align-items: center; }
.nav-socials a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  display: flex;
}
.nav-socials a:hover { color: var(--purple-bright); }
.nav-socials svg { width: 18px; height: 18px; fill: currentColor; }
.nav-logo-link svg { width: 24px; height: 18px; }

/* ===== LANG SWITCHER ===== */
.lang-switcher { display: flex; gap: 2px; }

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.lang-btn:hover { color: white; border-color: var(--border); }
.lang-btn.active { color: var(--purple-bright); border-color: var(--purple-bright); }

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text-muted);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 0, 16, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 20px 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  border-right: none;
  width: 100%;
  text-align: center;
}

.mobile-menu .lang-switcher { margin-top: 24px; }
.mobile-menu .nav-socials { margin-top: 20px; display: flex; }
.mobile-menu .nav-socials svg { width: 22px; height: 22px; }

/* ===== HERO CONTENT ===== */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-meta {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ===== COUNTDOWN ===== */
.countdown { display: flex; gap: 10px; align-items: flex-end; }

.cd-unit {
  text-align: center;
  background: rgba(204, 0, 255, 0.07);
  border: 1px solid var(--border);
  border-top: 2px solid var(--purple-bright);
  padding: 14px 18px 10px;
}

.cd-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: white;
  line-height: 1;
  text-shadow: 0 0 20px rgba(204, 0, 255, 0.6);
  min-width: 90px;
}

.cd-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--purple-bright);
  margin-bottom: 20px;
  opacity: 0.5;
  animation: blink 1s step-end infinite;
}

/* ===== STATS ===== */
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 1;
  color: white;
  text-shadow: 0 0 40px rgba(204, 0, 255, 0.4);
}

.stat-num .accent { color: var(--purple-bright); }

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ===== CLUBS ===== */
.clubs-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 32px 0 14px;
}

.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.club-col {
  padding: 18px;
  border-right: 1px solid var(--border);
}

.club-col:last-child { border-right: none; }

.club-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  min-height: 40px;
  display: flex;
  align-items: flex-start;
}

.club-col ul { list-style: none; }

.club-col li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px solid rgba(204, 0, 255, 0.07);
}

.club-col li:last-child { border: none; }

/* ===== DISCIPLINE CARDS ===== */
.disc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.disc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-bright), var(--pink));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.disc-card:hover::after { opacity: 1; }

.disc-icon-hero {
  padding: 44px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.disc-icon-wrap {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  position: relative;
}

.disc-icon-wrap svg {
  width: 96px;
  height: 96px;
  color: var(--purple-bright);
  filter: drop-shadow(0 0 12px rgba(204, 0, 255, 0.6));
  transition: filter var(--transition-base);
}

.disc-card:hover .disc-icon-wrap svg {
  filter: drop-shadow(0 0 20px rgba(204, 0, 255, 0.9));
}

.disc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.05;
  color: white;
  letter-spacing: 0.02em;
  text-align: center;
}

.disc-dates {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 6px;
}

.disc-venue-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.disc-venue-thumb {
  width: 128px;
  height: 70px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  filter: saturate(0.7);
  cursor: zoom-in;
  transition: filter var(--transition-fast);
}

.disc-venue-thumb:hover { filter: saturate(1.2) brightness(1.1); }

.disc-venue-info { flex: 1; min-width: 0; }

.disc-venue-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.disc-venue-city {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.disc-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.disc-participants-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

/* ===== PARTICIPANTS GRID ===== */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.parts-group { padding: 10px 12px; background: var(--bg-card); }

.parts-group-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-bright);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.parts-group ol {
  padding-left: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.parts-group ol li { padding: 2px 0; }

.parts-list-solo { margin-bottom: 16px; }

.parts-list-solo ol {
  padding-left: 18px;
  columns: 2;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.parts-list-solo ol li { padding: 2px 0; break-inside: avoid; }

/* ===== ACCORDION ===== */
.accord-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  padding: 9px 14px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.accord-toggle:hover {
  background: rgba(204, 0, 255, 0.08);
  color: white;
  border-color: var(--border-strong);
}

.accord-toggle.open {
  border-color: var(--purple-bright);
  color: var(--purple-bright);
}

.accord-arrow { transition: transform var(--transition-base); font-size: 9px; }
.accord-toggle.open .accord-arrow { transform: rotate(180deg); }

.accord-content {
  display: none;
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-top: none;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.accord-content.open { display: block; }
.accord-content p + p { margin-top: 10px; }

/* ===== SCHEDULE TABLE ===== */
.sched-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.sched-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: rgba(17, 0, 22, 0.9);
}

.sched-head {
  background: rgba(136, 0, 204, 0.15);
  border-bottom: 1px solid var(--border);
}

.sched-head th {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.sched-head th:first-child { text-align: left; min-width: 220px; }

.sched-head .day-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: white;
  display: block;
  line-height: 1;
}

.sched-head .day-month {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.sched-month-row th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-bright);
  padding: 10px 16px;
  text-align: center;
  background: rgba(204, 0, 255, 0.06);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.sched-row { border-bottom: 1px solid var(--border); }
.sched-row:last-child { border-bottom: none; }

.sched-row td {
  padding: 16px;
  border-right: 1px solid var(--border);
  vertical-align: middle;
  text-align: center;
}

.sched-row td:first-child { text-align: left; }
.sched-row td:last-child { border-right: none; }
.sched-row:hover { background: rgba(204, 0, 255, 0.04); }

.disc-cell { display: flex; align-items: center; gap: 12px; }
.disc-cell-icon { width: 28px; height: 28px; flex-shrink: 0; }
.disc-cell-icon svg { width: 28px; height: 28px; color: var(--purple-bright); }

.disc-cell-name {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.sched-event {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.sched-icon { font-size: 30px; line-height: 1; }

.sched-icon-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ev-arrive { color: #00e5ff; }
.ev-media { color: #39ff14; }
.ev-train { color: #ff9500; }
.ev-comp { color: var(--purple-bright); }
.ev-final { color: var(--pink); }
.ev-depart { color: #888; }

.sched-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.sched-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.sched-legend-item .sched-icon { font-size: 20px; }

/* ===== PARTNERS ===== */
.partners-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: marquee 24s linear infinite;
  flex-shrink: 0;
  min-width: 100%;
}

.partners-track img {
  width: 150px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-base);
}

.partners-track a:hover img { opacity: 0.85; }

/* ===== FOOTER ===== */
.footer-logo img { width: 180px; height: auto; opacity: 0.8; }

.footer-powered {
  color: rgba(204, 0, 255, 0.25);
  font-size: 0.75rem;
}

.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 8px;
}

.footer-contact p,
.footer-contact a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 3px;
}

.footer-contact a:hover { color: var(--purple-bright); }

.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a { color: var(--text-muted); transition: color var(--transition-fast); display: flex; }
.footer-social a:hover { color: var(--purple-bright); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
  cursor: zoom-out;
}
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
