/* ============================================================
   BWIN.GT — Bespoke stylesheet
   Identity: black #0f0f0f + white #eaeaea + yellow #ffcc00
   Typeface: system-ui stack — no web font latency
   ============================================================ */

/* ---- Reset & tokens ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0f0f0f;
  --white:   #eaeaea;
  --yellow:  #ffcc00;
  --yellow2: #e6b800;
  --grey1:   #1a1a1a;
  --grey2:   #242424;
  --grey3:   #333333;
  --grey4:   #666666;
  --grey5:   #999999;
  --body-bg: #0f0f0f;
  --text:    #eaeaea;
  --text-dim: #aaaaaa;
  --radius:  3px;
  --radius-lg: 6px;
  --fs-xs:   0.72rem;
  --fs-sm:   0.85rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fw-reg:  400;
  --fw-med:  500;
  --fw-bold: 700;
  --fw-black: 900;
  --mono: ui-monospace, "Menlo", "Consolas", monospace;
  --sans: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --transition: 0.18s ease;
  --shadow: 0 2px 12px rgba(0,0,0,0.5);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.6);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow2); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Typography utilities ---- */
.u-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}
.u-dim { color: var(--text-dim); }
.u-mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--yellow);
  height: 62px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Wordmark */
.site-wordmark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-wordmark img,
.site-wordmark svg {
  height: 36px;
  width: auto;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.desktop-nav a {
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: var(--fw-med);
  padding: 8px 12px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--transition), color var(--transition);
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: var(--yellow);
  color: var(--black);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--grey3);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-switch a {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  color: var(--text-dim);
  background: none;
  transition: background var(--transition), color var(--transition);
}
.lang-switch a:hover {
  background: var(--grey2);
  color: var(--white);
}
.lang-switch a.active {
  background: var(--yellow);
  color: var(--black);
}
.lang-switch a + a {
  border-left: 1px solid var(--grey3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-ghost {
  border-color: var(--grey3);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow2);
  border-color: var(--yellow2);
  color: var(--black);
}
.btn-lg {
  padding: 13px 32px;
  font-size: var(--fs-base);
}

/* Burger */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--grey3);
  border-radius: var(--radius);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: var(--grey1);
  border-bottom: 2px solid var(--yellow);
  z-index: 99;
  padding: 16px 20px 20px;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-size: var(--fs-base);
  font-weight: var(--fw-med);
  padding: 11px 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: var(--yellow);
  color: var(--black);
}
.mobile-nav .mobile-nav-divider {
  height: 1px;
  background: var(--grey2);
  margin: 8px 0;
}
.mobile-nav .mobile-lang-switch {
  display: flex;
  gap: 0;
  border: 1px solid var(--grey3);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.mobile-nav .mobile-lang-switch a {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  color: var(--text-dim);
  background: none;
}
.mobile-nav .mobile-lang-switch a.active {
  background: var(--yellow);
  color: var(--black);
}
.mobile-nav .mobile-lang-switch a + a {
  border-left: 1px solid var(--grey3);
}
.mobile-nav .mobile-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mobile-nav .mobile-btns .btn {
  flex: 1;
  min-width: 120px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-banner.webp');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.80) 40%, rgba(15,15,15,0.30) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  max-width: 620px;
  margin-left: max(20px, calc((100vw - 1280px)/2 + 20px));
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-black);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--yellow); }
.hero-desc {
  font-size: var(--fs-md);
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badge {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,204,0,0.12);
  border: 1px solid rgba(255,204,0,0.3);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: var(--fs-xs);
  color: var(--yellow);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   LIVE ODDS TICKER STRIP
   ============================================================ */
.odds-strip {
  background: var(--yellow);
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
}
.odds-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.odds-strip:hover .odds-strip-inner { animation-play-state: paused; }
.odds-match {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.odds-match .teams {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.odds-match .odds {
  display: flex;
  gap: 6px;
}
.odds-match .odds span {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  background: var(--black);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 2px;
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section {
  padding: 64px 20px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section--dark { background: var(--grey1); }
.section--darker { background: var(--grey2); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-title-group { display: flex; flex-direction: column; gap: 6px; }
.section-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: var(--fw-black);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.section-link::after { content: '→'; }

/* ============================================================
   SPORT CARDS (featured odds)
   ============================================================ */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sport-card {
  background: var(--grey2);
  border: 1px solid var(--grey3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.sport-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.sport-card-img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.sport-card-body {
  padding: 16px;
}
.sport-card-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.sport-card-match {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.sport-card-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.odd-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  background: var(--grey3);
  border: 1px solid var(--grey3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.odd-btn:hover {
  background: rgba(255,204,0,0.15);
  border-color: var(--yellow);
}
.odd-btn .odd-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.odd-btn .odd-val {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--yellow);
}

/* ============================================================
   CATEGORY CHIPS (casino filter)
   ============================================================ */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.chip {
  padding: 7px 16px;
  border: 1px solid var(--grey3);
  border-radius: 99px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--grey2);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.chip:hover,
.chip.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* ============================================================
   GAME GRID (casino tiles)
   ============================================================ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 2/1;
  background: var(--grey2);
  cursor: pointer;
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.game-card:hover img { transform: scale(1.06); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,15,15,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-name {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.game-card-play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  font-size: var(--fs-xs);
  font-weight: var(--fw-black);
  padding: 5px 12px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ============================================================
   FEATURE STRIP (3-column icons)
   ============================================================ */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey3);
  border-top: 1px solid var(--grey3);
  border-bottom: 1px solid var(--grey3);
}
.feature-item {
  background: var(--grey1);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; fill: var(--black); }
.feature-text .feat-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-text .feat-desc {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.promo-banner .promo-text .promo-eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 4px;
}
.promo-banner .promo-text .promo-headline {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: var(--fw-black);
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.promo-banner .btn-dark,
.btn-dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
  font-size: var(--fs-base);
  padding: 13px 32px;
  flex-shrink: 0;
}
.promo-banner .btn-dark:hover,
.btn-dark:hover {
  background: var(--grey1);
  border-color: var(--grey1);
  color: var(--yellow);
}

/* ============================================================
   PAYMENT LOGOS
   ============================================================ */
.payment-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.payment-logos img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity var(--transition);
}
.payment-logos img:hover { opacity: 1; }

/* ============================================================
   SEO ARTICLE BLOCK
   ============================================================ */
.seo-section {
  padding: 64px 20px 80px;
  background: var(--grey1);
}
.seo-inner {
  max-width: 860px;
  margin: 0 auto;
}
.seo-article h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: var(--fw-black);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--yellow);
}
.seo-article h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.3;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.seo-article h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: var(--fw-bold);
  color: var(--yellow);
  margin: 28px 0 10px;
  letter-spacing: 0.01em;
}
.seo-article p {
  font-size: var(--fs-base);
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 18px;
}
.seo-article strong { color: var(--white); font-weight: var(--fw-bold); }
.seo-article em { color: var(--white); }
.seo-article a { color: var(--yellow); }
.seo-article a:hover { color: var(--yellow2); text-decoration: underline; }
.seo-article ul,
.seo-article ol {
  margin: 0 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-article ul { list-style: disc; }
.seo-article ol { list-style: decimal; }
.seo-article li {
  font-size: var(--fs-base);
  color: var(--text-dim);
  line-height: 1.65;
}
.seo-article li::marker { color: var(--yellow); }

/* Tables */
.seo-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: var(--fs-sm);
  table-layout: fixed;
}
.seo-article th,
.seo-article td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--grey3);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.seo-article th {
  background: var(--grey2);
  color: var(--yellow);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.seo-article td { color: var(--text-dim); }
.seo-article tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

/* FAQ accordion in article */
.seo-article .faq-item {
  border-top: 1px solid var(--grey3);
}
.seo-article .faq-item:last-child { border-bottom: 1px solid var(--grey3); }
.seo-article .faq-q {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--white);
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  user-select: none;
}
.seo-article .faq-q::after {
  content: '+';
  font-size: var(--fs-xl);
  color: var(--yellow);
  font-weight: var(--fw-reg);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.seo-article .faq-item.open .faq-q::after { transform: rotate(45deg); }
.seo-article .faq-a {
  display: none;
  padding: 0 0 16px;
  color: var(--text-dim);
  font-size: var(--fs-base);
  line-height: 1.7;
}
.seo-article .faq-item.open .faq-a { display: block; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 14px 20px;
  background: var(--grey2);
  border-bottom: 1px solid var(--grey3);
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--fw-med);
}
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span {
  font-size: var(--fs-xs);
  color: var(--grey4);
}
.breadcrumb .crumb-current {
  font-size: var(--fs-xs);
  color: var(--yellow);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--grey1);
  border-top: 2px solid var(--yellow);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: var(--fs-sm);
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-payments { margin-bottom: 28px; }
.footer-payments .footer-col-title { margin-bottom: 14px; }

.footer-bottom {
  border-top: 1px solid var(--grey3);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: var(--fs-xs);
  color: var(--grey5);
  line-height: 1.6;
}
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--grey4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-black);
  color: var(--grey5);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  /* Header: wordmark + burger only */
  .desktop-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero { min-height: 380px; }
  .hero-content {
    padding: 52px 20px;
    margin-left: 20px;
    max-width: 100%;
  }

  /* Feature strip */
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { padding: 20px; }

  /* Promo */
  .promo-banner { padding: 24px; }
}

@media (max-width: 640px) {
  .section { padding: 44px 16px; }
  .sports-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .promo-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .seo-article table { font-size: var(--fs-xs); }
  .seo-article th,
  .seo-article td { padding: 6px 8px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .game-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
