:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: #111412;
  --panel-soft: #171c18;
  --surface: #f3f4ef;
  --surface-strong: #e8ece3;
  --text: #f7f9f6;
  --text-strong: #ffffff;
  --text-dark: #121712;
  --muted: rgba(247, 249, 246, 0.76);
  --muted-dark: #566259;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(9, 18, 11, 0.1);
  --sports: #00a826;
  --sports-light: #00cc2c;
  --casino: #0054a4;
  --casino-light: #0f67bd;
  --accent: #e0f848;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.bw-remix {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 168, 38, 0.18), transparent 32%),
    linear-gradient(180deg, #030303 0%, #080a08 22%, #111612 44%, #eff1ea 44%, #eceee7 100%);
  font-family: Interface, Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 18px;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 12px), var(--content-max));
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.site-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-brand img {
  width: 154px;
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.82);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.action-button:hover,
.action-button:focus-visible {
  transform: translateY(-1px);
}

.action-button--primary {
  background: var(--sports);
  color: #fff;
}

.action-button--primary:hover,
.action-button--primary:focus-visible {
  background: var(--sports-light);
}

.action-button--secondary {
  border: 1px solid var(--sports);
  background: #fff;
  color: var(--sports);
}

.action-button--secondary:hover,
.action-button--secondary:focus-visible {
  background: var(--sports);
  color: #fff;
}

.hero-stage {
  position: relative;
  width: min(calc(100% - 36px), var(--content-max));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: var(--shadow);
}

.hero-stage__image,
.hero-stage__wash {
  position: absolute;
  inset: 0;
}

.hero-stage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-stage__wash {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.76) 36%, rgba(0, 0, 0, 0.34) 68%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-stage__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 400px);
  gap: 28px;
  min-height: inherit;
  padding: clamp(30px, 6vw, 64px);
  align-items: end;
}

.hero-stage__copy {
  display: grid;
  gap: 18px;
  align-self: center;
  max-width: 760px;
}

.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-stage__eyebrow {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-stage__brand {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-stage__headline {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 900;
  text-wrap: balance;
}

.hero-stage__details {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.hero-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.offer-cta,
.offer-terms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
}

.offer-cta {
  background: var(--sports);
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.offer-cta:hover,
.offer-cta:focus-visible {
  background: var(--sports-light);
  transform: translateY(-1px);
}

.offer-terms {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.offer-terms:hover,
.offer-terms:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-stage__terms {
  margin: 0;
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.7;
}

.offer-panel {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: stretch;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 20, 18, 0.84) 0%, rgba(8, 10, 9, 0.76) 100%);
  backdrop-filter: blur(14px);
}

.offer-panel__header h2,
.section-head h2,
.footer-card__heading h2,
.sponsor-spotlight__copy h3 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  color: inherit;
}

.offer-list {
  display: grid;
  gap: 12px;
}

.offer-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.offer-card:hover,
.offer-card:focus-visible {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.offer-card.is-active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.offer-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card__meta span:last-child {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.offer-card__title {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.15;
}

.offer-card__details {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.45;
}

.offer-card[data-brand="casino"].is-active,
.offer-cta[data-brand="casino"] {
  background: rgba(0, 84, 164, 0.22);
  border-color: rgba(24, 124, 219, 0.48);
}

.offer-cta[data-brand="casino"] {
  background: var(--casino);
}

.offer-cta[data-brand="casino"]:hover,
.offer-cta[data-brand="casino"]:focus-visible {
  background: var(--casino-light);
}

.sponsorships {
  width: min(calc(100% - 36px), var(--content-max));
  margin: 38px auto 0;
  padding: clamp(28px, 5vw, 48px);
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(0, 168, 38, 0.12), transparent 24%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-strong) 100%);
  box-shadow: 0 30px 90px rgba(7, 14, 8, 0.08);
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.6;
}

.sponsorships__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.95fr);
  gap: 24px;
  margin-top: 28px;
}

.sponsor-spotlight,
.footer-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(10, 18, 10, 0.08);
}

.sponsor-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  min-height: 380px;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(145deg, #0f1510 0%, #121212 100%);
  color: var(--text);
}

.sponsor-spotlight__copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.sponsor-spotlight__copy p:last-of-type {
  margin: 0;
  color: rgba(247, 249, 246, 0.76);
  line-height: 1.72;
}

.sponsor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  color: #101010;
  font-weight: 900;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.sponsor-link:hover,
.sponsor-link:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
}

.sponsor-spotlight__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(224, 248, 72, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  min-height: 260px;
}

.sponsor-spotlight__media img {
  width: min(100%, 320px);
  max-height: 260px;
  object-fit: contain;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.sponsor-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 156px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.2);
}

.sponsor-card.is-active {
  background: #fff;
  border-color: rgba(0, 168, 38, 0.38);
  box-shadow: inset 0 0 0 1px rgba(0, 168, 38, 0.18);
}

.sponsor-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.sponsor-card__thumb img {
  max-height: 64px;
  object-fit: contain;
}

.sponsor-card__name {
  margin: 0;
  color: var(--text-dark);
  font-weight: 900;
  line-height: 1.2;
}

.editorial {
  width: min(calc(100% - 36px), var(--content-max));
  margin: 0 auto 34px;
  padding: 34px;
  border: 1px solid rgba(12, 25, 14, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(0, 168, 38, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(237, 241, 232, 0.98) 100%);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.section-head--editorial {
  margin-bottom: 0;
}

.section-head--editorial .section-kicker,
.editorial-fact__label {
  color: var(--sports);
}

.section-head--editorial h2 {
  color: var(--text-dark);
}

.editorial-intro {
  max-width: 1040px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.85;
}

.editorial-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.editorial-fact,
.editorial-card {
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.editorial-fact {
  padding: 22px;
}

.editorial-fact__label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-fact strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.35;
}

.editorial-fact p {
  margin: 12px 0 0;
  color: #394539;
  line-height: 1.78;
}

.editorial-fact p span {
  font-weight: 900;
  color: var(--text-dark);
}

.editorial-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.editorial-card {
  padding: 26px;
}

.editorial-card--full {
  grid-column: 1 / -1;
}

.editorial-card h3 {
  margin: 0 0 16px;
  color: var(--text-dark);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.12;
}

.editorial-card p {
  margin: 0 0 14px;
  color: #303c31;
  line-height: 1.84;
}

.editorial-card p:last-child {
  margin-bottom: 0;
}

.editorial-list {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #303c31;
}

.editorial-list li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.editorial-list li:last-child {
  margin-bottom: 0;
}

.editorial-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.editorial-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(9, 24, 11, 0.04);
  color: #2d392d;
  font-size: 0.92rem;
  font-weight: 800;
}

.editorial-summary-lead {
  font-size: 1.05rem;
  line-height: 1.88;
}

.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 22px 0 18px;
}

.rating-chip {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0, 168, 38, 0.08) 0%, rgba(224, 248, 72, 0.1) 100%);
}

.rating-chip span {
  color: var(--sports);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rating-chip strong {
  color: var(--text-dark);
  font-size: 1.28rem;
  line-height: 1.15;
}

.editorial-summary-note {
  color: #425042;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.faq-item h4 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 1.06rem;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: #303c31;
  line-height: 1.75;
}

.site-footer {
  width: min(calc(100% - 36px), var(--content-max));
  margin: 38px auto 46px;
  display: grid;
  gap: 18px;
}

.footer-card {
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(180deg, #121513 0%, #0b0e0c 100%);
  color: var(--text);
}

.footer-card__heading .section-kicker {
  color: rgba(255, 255, 255, 0.45);
}

.footer-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-link-chip:hover,
.footer-link-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.footer-sponsor-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.footer-sponsor-item {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-sponsor-item img {
  max-height: 52px;
  object-fit: contain;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-brand img {
  width: 100%;
  max-width: 168px;
}

.footer-disclaimer {
  display: grid;
  gap: 12px;
}

.footer-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.footer-disclaimer a {
  color: #fff;
  text-decoration: underline;
}

.footer-card--trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-trust-group {
  display: grid;
  gap: 18px;
}

.logo-grid {
  display: grid;
  gap: 12px;
}

.logo-grid--trust {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-grid--payments {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 98px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.logo-tile img {
  max-height: 56px;
  object-fit: contain;
}

.footer-card--bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  align-items: end;
}

.footer-bottom-group {
  display: grid;
  gap: 14px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-row .logo-tile {
  min-width: 110px;
}

.logo-row--social .logo-tile {
  min-width: 84px;
  min-height: 84px;
}

.logo-row--social .logo-tile img {
  max-height: 28px;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.95rem;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-shell[hidden] {
  display: none;
}

.modal-shell__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.modal-card--login {
  width: min(520px, 100%);
}

.modal-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 0;
}

.modal-card__header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.modal-card__body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.modal-offer-label {
  margin: 0;
  color: var(--sports);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-card__body p {
  margin: 0;
  line-height: 1.75;
}

.modal-close {
  min-width: 88px;
  min-height: 42px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-weight: 900;
}

.login-form {
  display: grid;
  gap: 14px;
}

.login-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.login-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #cfd8cc;
  border-radius: 16px;
  background: #f7f8f4;
}

.login-submit {
  margin-top: 8px;
}

.login-helper {
  display: grid;
  gap: 10px;
  color: #425044;
}

.login-helper a {
  color: var(--sports);
  font-weight: 900;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .hero-stage__content,
  .sponsorships__layout,
  .editorial-layout,
  .footer-brand-block,
  .footer-card--trust,
  .footer-card--bottom,
  .sponsor-spotlight {
    grid-template-columns: 1fr;
  }

  .editorial-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-sponsor-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__link {
    text-transform: none;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .site-header__actions {
    order: 2;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-stage__content {
    min-height: 0;
  }

  .offer-panel {
    margin-top: 22px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px;
  }

  .site-header__inner,
  .hero-stage,
  .sponsorships,
  .editorial,
  .site-footer {
    width: min(calc(100% - 20px), var(--content-max));
  }

  .site-header__inner {
    padding: 14px;
    gap: 12px;
  }

  .site-brand img {
    width: 118px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .action-button {
    min-width: 84px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero-stage__content {
    padding: 22px;
  }

  .editorial {
    padding: 22px;
  }

  .hero-stage__headline {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .hero-stage__details,
  .hero-stage__terms,
  .section-head p:last-child,
  .editorial-intro,
  .sponsor-spotlight__copy p:last-of-type,
  .footer-disclaimer p {
    font-size: 0.96rem;
  }

  .editorial-facts {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .editorial-fact {
    padding: 20px;
    border-radius: 24px;
  }

  .offer-cta,
  .offer-terms {
    width: 100%;
  }

  .sponsor-grid,
  .logo-grid--trust,
  .logo-grid--payments,
  .footer-sponsor-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-row .logo-tile {
    min-width: calc(50% - 6px);
  }

  .footer-card {
    padding: 20px;
  }

  .modal-card__header,
  .modal-card__body {
    padding: 18px;
  }
}
