:root {
  --brand: #a70625;
  --brand-2: #cf102f;
  --gold: #d8aa42;
  --ink: #110407;
  --deep: #23070d;
  --paper: #ffffff;
  --soft: #f5f3f0;
  --muted: #746a6c;
  --shadow: 0 22px 55px rgba(38, 5, 12, .18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.75;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--brand);
  color: #fff;
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark, .footer-mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}
.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}
.brand-mark img, .footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text {
  display: grid;
  font-weight: 800;
  line-height: 1.25;
}
.brand-text small {
  font-size: 11px;
  font-weight: 400;
  opacity: .78;
}
.main-nav {
  display: flex;
  align-items: stretch;
  gap: 4px;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: rgba(255,255,255,.94);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover, .nav-link:focus-visible, .nav-link.active {
  background: rgba(0,0,0,.12);
  color: #fff;
}
.chevron { font-size: 12px; opacity: .75; }
.dropdown {
  position: absolute;
  inset-inline-end: 0;
  top: 100%;
  min-width: 235px;
  padding: 14px;
  background: #92041f;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.dropdown a:hover, .dropdown a:focus-visible {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-link, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--brand-2);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.shop-link {
  min-height: 44px;
  padding: 0 16px;
  background: var(--gold);
  color: #2b1302;
}
.btn.gold { background: var(--gold); color: #2b1302; }
.btn.ghost { background: transparent; border-color: rgba(255,255,255,.26); }
.btn.dark { background: var(--ink); }
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.12);
  cursor: pointer;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 680px;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16,3,8,.55), rgba(16,3,8,.9) 70%),
    linear-gradient(0deg, rgba(16,3,8,.92), rgba(16,3,8,.18) 54%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 25%, rgba(216,170,66,.18), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(207,16,47,.26), transparent 34%);
}
.hero-inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  padding: 76px 0 48px;
}
.hero-side { display: grid; gap: 18px; }
.mini-news {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  background: rgba(96,2,20,.9);
  border: 1px solid rgba(255,255,255,.1);
}
.mini-news strong {
  display: block;
  font-size: 17px;
  line-height: 1.45;
}
.mini-news time {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
.hero-copy {
  max-width: 760px;
  justify-self: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
}
.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.16;
  font-weight: 900;
}
.hero-copy p {
  max-width: 620px;
  margin: 22px 0 30px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.media-name {
  display: inline-flex;
  min-height: 32px;
  padding: 5px 10px;
  color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
  direction: ltr;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section { padding: 84px 0; }
.section.tight { padding: 58px 0; }
.section.dark {
  color: #fff;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.16) 0 24%, transparent 25%),
    radial-gradient(circle at 72% 45%, rgba(255,255,255,.13) 0 27%, transparent 28%),
    var(--deep);
}
.section.soft { background: var(--soft); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 34px;
}
.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.15;
  font-weight: 900;
}
.section-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.dark .section-subtitle { color: rgba(255,255,255,.72); }

.matches-grid, .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.match-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
}
.match-card h3, .content-card h3, .player-card h3, .service-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}
.club-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
}
.score {
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  color: var(--brand-2);
}
.meta {
  color: var(--muted);
  font-size: 14px;
}
.media-box {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255,255,255,.92);
  background: linear-gradient(135deg, rgba(167,6,37,.9), rgba(35,7,13,.92)), #631020;
  text-align: center;
  direction: ltr;
  font-size: 13px;
  font-weight: 700;
  padding: 18px;
}
.media-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.media-box.loaded img {
  display: block;
}
.media-box.loaded span {
  position: absolute;
  inset-inline-start: 10px;
  bottom: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(0,0,0,.55);
  font-size: 11px;
}
.media-box.tall { min-height: 300px; }
.media-box.light {
  color: var(--ink);
  background: #f1ecec;
}
.media-box::before {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.media-box span {
  position: relative;
  z-index: 1;
}
.content-card {
  display: grid;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.content-card-body {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.content-card .tag {
  color: var(--brand-2);
  font-weight: 900;
  margin-bottom: 8px;
}
.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.player-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9e3e4;
}
.player-card .media-box { min-height: 330px; }
.player-info { padding: 22px; }
.player-info p {
  margin: 4px 0 0;
  color: var(--muted);
}
.card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  background: var(--brand-2);
  color: #fff;
  font-weight: 800;
}
.explore-card {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}
.explore-card .media-box {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,2,7,.88), rgba(20,2,7,.15));
}
.explore-copy {
  position: relative;
  z-index: 1;
  padding: 28px;
}
.explore-copy p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.78);
}
.explore-copy h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #050505;
  color: #fff;
}
.newsletter-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 460px;
  padding: 60px;
}
.newsletter-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15;
}
.newsletter-copy p {
  max-width: 520px;
  margin: 16px 0 28px;
  color: rgba(255,255,255,.76);
}

.sponsors { display: grid; gap: 52px; }
.sponsor-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 38px;
  align-items: start;
  padding-top: 26px;
  border-top: 1px solid #ded8da;
}
.sponsor-row h3 {
  margin: 0;
  font-size: 18px;
}
.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.sponsor-logo {
  min-height: 70px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ebe5e6;
  font-weight: 900;
}

.page-hero {
  color: #fff;
  background: linear-gradient(90deg, rgba(35,7,13,.76), rgba(35,7,13,.96)), var(--deep);
  padding: 82px 0;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.12;
  font-weight: 900;
}
.page-hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.panel {
  padding: 34px;
  background: #fff;
  border: 1px solid #e9e3e4;
}
.panel h2 {
  margin: 0 0 14px;
  font-size: 30px;
}
.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.list li {
  padding: 14px 16px;
  background: var(--soft);
  border-right: 4px solid var(--brand-2);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 210px;
  padding: 26px;
  background: #fff;
  border: 1px solid #e9e3e4;
}
.service-card p { color: var(--muted); }

.site-footer {
  color: #fff;
  background: var(--deep);
  padding: 62px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 42px;
}
.footer-mark {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin-bottom: 18px;
}
.footer-col h3 {
  margin: 0 0 16px;
  font-size: 22px;
}
.footer-col p, .footer-col a { color: rgba(255,255,255,.72); }
.footer-links { display: grid; gap: 10px; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.12);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .container { width: min(100% - 36px, var(--container)); }
  .header-inner { gap: 14px; }
  .nav-link {
    padding: 0 9px;
    font-size: 14px;
  }
  .hero-inner {
    grid-template-columns: 320px 1fr;
    gap: 38px;
  }
  .players-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; }
  .header-inner {
    min-height: 68px;
    justify-content: space-between;
  }
  .brand-mark {
    width: 54px;
    height: 54px;
  }
  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    max-height: calc(100vh - 68px);
    display: none;
    overflow: auto;
    padding: 16px 18px 28px;
    background: #85031c;
    flex-direction: column;
    align-items: stretch;
  }
  body.menu-open .main-nav { display: flex; }
  .nav-link {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .dropdown {
    position: static;
    min-width: 0;
    padding: 0 14px 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }
  .shop-link { display: none; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 74px 0 40px;
  }
  .hero-side {
    order: 2;
    grid-template-columns: repeat(3, 1fr);
  }
  .mini-news { grid-template-columns: 1fr; }
  .matches-grid, .cards-grid, .newsletter, .two-col { grid-template-columns: 1fr; }
  .sponsor-row { grid-template-columns: 1fr; }
  .sponsor-logos { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-text { display: none; }
  .hero-title { font-size: 34px; }
  .hero-copy p, .page-hero p { font-size: 16px; }
  .hero-side, .players-grid, .service-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .section-head { display: grid; gap: 8px; }
  .match-card {
    min-height: 320px;
    padding: 22px;
  }
  .content-card-body, .newsletter-copy, .panel { padding: 24px; }
  .newsletter-copy { min-height: 360px; }
  .sponsor-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-top, .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .header-actions { gap: 6px; }
  .icon-button {
    width: 40px;
    height: 40px;
  }
  .hero-copy { justify-self: stretch; }
  .hero-title, .section-title, .page-hero h1 { font-size: 31px; }
  .mini-news strong, .match-card h3, .content-card h3, .service-card h3 { font-size: 18px; }
  .club-row { grid-template-columns: 56px 1fr; }
  .score { font-size: 32px; }
  .sponsor-logos { grid-template-columns: 1fr; }
}
