:root {
  --bg: #0b0d10;
  --bg-soft: #11141a;
  --gold: #d4af37;
  --white: #ffffff;
  --gray: #b5b5b5;
  --accent: #1e90ff;
  --ok: #3ddc97;
  --err: #ff6b6b;
  --radius: 1.2rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #141824 0%, var(--bg) 60%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.offline-banner {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #2a1f00;
  color: var(--gold);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(10px);
  background: rgba(8, 10, 14, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo { border-radius: 50%; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.92rem;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--gold); }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.6rem;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hero {
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  background-color: #0b0d10;
  background-image: linear-gradient(165deg, #1c2333 0%, #121820 52%, #0b0d10 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero[style*="--hero-image"] {
  background-image:
    linear-gradient(165deg, rgba(28, 35, 51, 0.82) 0%, rgba(18, 24, 32, 0.88) 52%, rgba(11, 13, 16, 0.94) 100%),
    var(--hero-image);
}

.hero-bg-video,
.hero-bg-youtube {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
}

.hero--has-video .hero-overlay,
.hero--has-youtube .hero-overlay {
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.35) 0%, rgba(11, 13, 16, 0.72) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.08) 0%, rgba(11, 13, 16, 0.42) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h1 span, .section-title span { color: var(--gold); }

.subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f5d76e);
  color: #000;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); }

section { padding: 6rem 1.5rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section-text {
  color: var(--gray);
  max-width: 700px;
  font-size: 1.05rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card, .card {
  background: linear-gradient(180deg, #151a28, #0f121a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.value-card h3 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-card p { color: var(--gray); font-size: 0.95rem; }

.stats {
  background: linear-gradient(180deg, #0f121a, #0b0d10);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat { padding: 2rem; }

.stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: var(--gold);
}

.stat span {
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form.card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 252, 0.96) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 56px rgba(0, 0, 0, 0.34);
  color: #0f172a;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #0f172a;
  border-radius: 0.75rem;
  padding: 0.8rem 0.95rem;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill,
.contact-form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  -webkit-text-fill-color: #0f172a;
  caret-color: #0f172a;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.contact-form select option {
  color: #0f172a;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c9a227;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
}

.contact-form .btn-contact-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.card-inset {
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.9rem;
  padding: 1rem 1.05rem;
  margin-bottom: 1rem;
}

.heimdall-captcha-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.heimdall-captcha-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.heimdall-captcha-question {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.heimdall-captcha-refresh {
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #fff;
  color: #475569;
  border-radius: 0.55rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.heimdall-captcha-refresh:hover {
  border-color: #c9a227;
  color: #0f172a;
}

.heimdall-security {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
}

.heimdall-security-icon {
  color: #9a7b1a;
  flex-shrink: 0;
}

.heimdall-security a {
  color: #9a7b1a;
  font-weight: 600;
  text-decoration: none;
}

.heimdall-security a:hover {
  text-decoration: underline;
}

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

.form-status { margin-top: 0.75rem; font-size: 0.92rem; min-height: 1.4em; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--err); }

.legal-page { padding-top: 4rem; }
.legal-card { margin: 2rem 0; }
.legal-prose h2 {
  font-family: 'Oswald', sans-serif;
  margin: 1.5rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}
.legal-prose p { color: var(--gray); margin-bottom: 0.75rem; }
.legal-prose a { color: var(--gold); }
.legal-prose h2 { margin-top: 1rem; }
.legal-prose ul { margin: 0.5rem 0 0.75rem 1.25rem; color: var(--gray); }
.legal-prose a { color: var(--gold); }
.legal-prose h2 { margin-top: 1rem; }
.legal-prose ul { margin: 0.5rem 0 0.75rem 1.25rem; color: var(--gray); }
.legal-note { margin-top: 1rem; font-size: 0.9rem; color: var(--gray); }

.site-footer {
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  background: #080a0e;
}

.site-footer strong { color: var(--white); }
.site-footer span, .site-footer a { color: var(--gold); }
.footer-links { margin: 0.5rem 0 1rem; }
.footer-links a { color: var(--gray); text-decoration: none; margin: 0 0.35rem; }
.footer-links a:hover { color: var(--gold); }

.btn-xs {
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
}

/* PWA install — footer strip only (no popup overlay) */
.footer-pwa {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(8, 10, 14, 0.95);
  padding: 0.55rem 0;
}

.footer-pwa:not([hidden]) { display: block; }

.footer-pwa-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-pwa-feather {
  display: inline-flex;
  color: var(--gold);
  opacity: 0.85;
  flex-shrink: 0;
}

.footer-pwa-icon {
  flex-shrink: 0;
  border-radius: 0.4rem;
}

.footer-pwa-text {
  flex: 1;
  min-width: 0;
  margin: 0;
  display: grid;
  gap: 0.05rem;
  text-align: left;
}
.footer-pwa-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-pwa-text span {
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.25;
}

.footer-pwa-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
}

#pwa-install-dismiss {
  min-width: 2rem;
  padding: 0.35rem 0.55rem;
  font-size: 1rem;
  line-height: 1;
}

.footer-pwa.is-ios-hint #pwa-install-btn {
  display: none;
}

@media (max-width: 560px) {
  .footer-pwa-row { gap: 0.5rem; }
  .footer-pwa-text span { display: none; }
  .footer-pwa-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }
}

.section-alt { background: linear-gradient(180deg, #0f121a, #0b0d10); }
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.section-header-center { flex-direction: column; align-items: center; text-align: center; }
.section-text-center { margin-inline: auto; }
.section-cta-center { text-align: center; margin-top: 2rem; }
.section-title-sm { font-size: 1.8rem; margin-bottom: 1.5rem; }

.page-hero { padding: 5rem 1.5rem 3rem; }
.page-hero-compact { padding: 4rem 1.5rem 2rem; }
.page-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}
.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.page-title span { color: var(--gold); }
.page-title-article { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.15; }
.page-lead { color: var(--gray); max-width: 720px; font-size: 1.05rem; }

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.match-grid-landing {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1100px) {
  .match-grid-landing { grid-template-columns: repeat(2, 1fr); }
}
.match-card-detailed { padding: 1.75rem; }
.match-card-details-wide {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.match-card-detail-full { grid-column: 1 / -1; }
.match-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.match-squad-preview { margin-top: 1rem; }
.match-squad-preview-sub { margin-top: 0.75rem; }
.match-squad-heading {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.match-player-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.match-player-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.86rem;
}
.match-player-chip.is-captain {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.08);
}
.match-player-pos {
  color: var(--gray);
  font-size: 0.78rem;
}
.match-player-cap {
  font-family: 'Oswald', sans-serif;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}
.match-squad-empty {
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: 0.75rem;
  font-style: italic;
}
.match-grid-landing {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1100px) {
  .match-grid-landing { grid-template-columns: repeat(2, 1fr); }
}
.match-card-detailed { padding: 1.75rem; }
.match-card-details-wide {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.match-card-detail-full { grid-column: 1 / -1; }
.match-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.match-squad-preview { margin-top: 1rem; }
.match-squad-preview-sub { margin-top: 0.75rem; }
.match-squad-heading {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.match-player-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.match-player-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.86rem;
}
.match-player-chip.is-captain {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.08);
}
.match-player-pos {
  color: var(--gray);
  font-size: 0.78rem;
}
.match-player-cap {
  font-family: 'Oswald', sans-serif;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}
.match-squad-empty {
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: 0.75rem;
  font-style: italic;
}
.match-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.match-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}
.match-badge-muted { border-color: rgba(255,255,255,0.12); color: var(--gray); }
.match-score { margin-left: auto; font-family: 'Oswald', sans-serif; color: var(--gold); font-size: 1.2rem; }
.match-card-title { font-family: 'Oswald', sans-serif; font-size: 1.2rem; margin-bottom: 0.35rem; text-transform: uppercase; }
.match-card-title a { color: var(--white); text-decoration: none; }
.match-card-title a:hover { color: var(--gold); }
.match-card-competition { color: var(--gray); font-size: 0.9rem; margin-bottom: 1rem; }
.match-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.88rem;
}
.match-card-details dt { color: var(--gray); }
.match-card-details dd { font-weight: 500; }
.match-result-big {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.team-grid-compact { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.team-grid-players { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.team-card { text-align: center; }
.team-card-player { display: flex; align-items: center; gap: 1rem; text-align: left; }
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #1a2030, #0f121a);
  border: 2px solid rgba(212,175,55,0.35);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.team-avatar-sm { width: 56px; height: 56px; margin: 0; font-size: 1.2rem; flex-shrink: 0; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
.team-role { color: var(--gold); font-size: 0.88rem; margin-top: 0.25rem; }
.team-bio { color: var(--gray); font-size: 0.9rem; margin-top: 0.75rem; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-grid-full { grid-template-columns: 1fr; max-width: 820px; }
.news-card { overflow: hidden; padding: 0; }
.news-cover { display: block; aspect-ratio: 16/9; overflow: hidden; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.news-card:hover .news-cover img { transform: scale(1.03); }
.news-body { padding: 1.5rem; }
.news-body time { color: var(--gray); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.news-body h2, .news-body h3 { font-family: 'Oswald', sans-serif; margin: 0.5rem 0; text-transform: uppercase; font-size: 1.15rem; }
.news-body h2 a, .news-body h3 a { color: var(--white); text-decoration: none; }
.news-body h2 a:hover, .news-body h3 a:hover { color: var(--gold); }
.news-body p { color: var(--gray); font-size: 0.95rem; margin-top: 0.5rem; }
.news-link { display: inline-block; margin-top: 0.75rem; color: var(--gold); text-decoration: none; font-size: 0.92rem; }

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  align-items: center;
}
.sponsor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  min-height: 90px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-decoration: none;
  color: var(--gray);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.sponsor-card:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-2px); }
.sponsor-card img { max-width: 100%; max-height: 48px; object-fit: contain; filter: grayscale(0.2); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.partner-card { text-align: center; }
.partner-logo { max-height: 64px; max-width: 100%; object-fit: contain; margin-bottom: 1rem; }
.partner-cta { margin-top: 2rem; text-align: center; }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.detail-heading {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.detail-list { display: grid; gap: 0.75rem; }
.detail-list div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 0.5rem; }
.detail-list dt { color: var(--gray); }
.detail-muted { color: var(--gray); margin: 0.35rem 0 1rem; }
.prose-card .prose p { color: var(--gray); margin-bottom: 0.75rem; }
.prose-card .prose a { color: var(--gold); }
.prose-card .prose h2, .prose-card .prose h3 { font-family: 'Oswald', sans-serif; margin: 1rem 0 0.5rem; text-transform: uppercase; }

.squad-list ul { list-style: none; display: grid; gap: 0.5rem; }
.squad-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.squad-number {
  font-family: 'Oswald', sans-serif;
  color: var(--gold);
  min-width: 2rem;
  text-align: center;
}
.squad-badge {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

.empty-state { color: var(--gray); text-align: center; }
.section-cta { padding-top: 0; padding-bottom: 4rem; }

.contact-highlights {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
  color: var(--gray);
}
.contact-highlights li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 0.5rem;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
}
.checkbox-label input { width: auto; margin-top: 0.2rem; flex-shrink: 0; accent-color: #c9a227; }
.checkbox-label a { color: #9a7b1a; font-weight: 600; }

.contact-form .form-status { color: #475569; }
.contact-form .form-status.ok { color: #0d7a4d; }
.contact-form .form-status.err { color: #b91c1c; }

.article-cover { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; }
.article-cover img { width: 100%; display: block; }
.article-content { margin-top: 0; }
.article-back { margin-top: 1.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
.footer-heading {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-nav ul, .footer-legal ul { list-style: none; display: grid; gap: 0.35rem; }
.footer-nav a, .footer-legal a, .footer-brand a { color: var(--gray); text-decoration: none; }
.footer-nav a:hover, .footer-legal a:hover, .footer-brand a:hover { color: var(--gold); }
.footer-tagline { margin: 0.35rem 0 0.75rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.social-links a { color: var(--gray); text-decoration: none; font-size: 0.9rem; }
.social-links a:hover { color: var(--gold); }
.footer-copy { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 10, 14, 0.97);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    display: none;
  }
  .nav-inner { position: relative; }
  .site-nav.is-open .nav-menu { display: flex; }
  .nav-links { flex-direction: column; gap: 0.75rem; }
  .nav-cta { width: 100%; justify-content: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .subtitle { font-size: 1rem; }
  .match-card-details { grid-template-columns: 1fr; }
}

.print-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.print-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.print-modal[hidden] { display: none !important; }
body.print-modal-open .print-modal {
  opacity: 1;
  pointer-events: auto;
}
body.print-modal-closing .print-modal { opacity: 0; }
.print-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.print-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 640px);
  max-height: 90vh;
  overflow: auto;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #171c25 0%, #12161d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.32s ease, opacity 0.32s ease;
}
body.print-modal-open .print-modal-dialog {
  transform: translateY(0) scale(1);
}
body.print-modal-closing .print-modal-dialog {
  transform: translateY(6px) scale(0.98);
  opacity: 0.7;
}
.print-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e8edf5;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.print-modal-close:hover,
.print-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}
.print-modal-title {
  margin: 0 2rem 0.35rem 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
}
.print-modal-lead {
  margin: 0 0 1rem;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.45;
}
.print-modal-section + .print-modal-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.print-modal-section h3 {
  margin: 0 0 0.55rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--gold);
}
.print-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.print-modal-link {
  display: grid;
  gap: 0.15rem;
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.print-modal-link:hover,
.print-modal-link:focus-visible {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
  outline: none;
}
.print-modal-link-btn {
  font: inherit;
  cursor: pointer;
}
.print-modal-link-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.print-modal-link-desc {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.35;
}
.print-modal-status {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  color: var(--gold);
}