/* ── Language toggle ─────────────────────────────────────────── */
[data-lang="cyr"] .lat { display: none !important; }
[data-lang="lat"] .cyr { display: none !important; }

/* ── Base ────────────────────────────────────────────────────── */
body { font-family: 'Inter', sans-serif; background: #f1f5f9; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero-bg {
  background:
    linear-gradient(to right, #0a1628 45%, rgba(10,22,40,0.55) 70%, transparent 100%),
    url('https://images.pexels.com/photos/5741303/pexels-photo-5741303.jpeg?auto=compress&cs=tinysrgb&w=1600')
    center/cover no-repeat;
}
@media (max-width: 768px) {
  .hero-bg {
    background:
      linear-gradient(to bottom, #0a1628 55%, rgba(10,22,40,0.85)),
      url('https://images.pexels.com/photos/5741303/pexels-photo-5741303.jpeg?auto=compress&cs=tinysrgb&w=900')
      center/cover no-repeat;
  }
}

/* ── Nav scroll ──────────────────────────────────────────────── */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #dc2626;
  transition: .25s;
}
.nav-link:hover::after { width: 100%; }

/* ── Cards ───────────────────────────────────────────────────── */
.card      { background: #fff;    border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.08); overflow: hidden; }
.card-dark { background: #0f2040; border-radius: 12px; overflow: hidden; }

/* ── Quick action hover ──────────────────────────────────────── */
.quick-item         { transition: .2s; border-radius: 10px; }
.quick-item:hover   { background: #f0f7ff; transform: translateY(-2px); }

/* ── Sponsor strip ───────────────────────────────────────────── */
.sponsor-pill       { background: #152c5e; border-radius: 10px; padding: 10px 16px; display: flex; align-items: center; justify-content: center; transition: .3s; }
.sponsor-pill:hover { background: #1e3f87; }
.sponsor-pill img          { filter: grayscale(1); opacity: .7; transition: .3s; height: 26px; width: auto; object-fit: contain; }
.sponsor-pill:hover img    { filter: none; opacity: 1; }
.sponsor-pill-lg img       { height: 48px; }
.sponsor-pill-sm img       { height: 20px; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-thumb { background: #1e3a6e; border-radius: 3px; }

/* ── Competition card overlay ────────────────────────────────── */
.comp-card          { position: relative; border-radius: 12px; overflow: hidden; min-height: 200px; }
.comp-card img      { width: 100%; height: 100%; object-fit: cover; display: block; }
.comp-overlay       { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,13,28,.85) 50%, rgba(6,13,28,.25)); }

/* ── Mobile menu ─────────────────────────────────────────────── */
#mobile-menu      { display: none; }
#mobile-menu.open { display: block; }
