/* =========================================================================
   BetCave — betcaves.de
   Bespoke stylesheet. Shared byte-identical across root / /at/ / /ch/.
   Palette: brown-orange #a84f0d · electric blue #0d6efd · warm beige #d4a786
   ========================================================================= */

:root {
  /* Brand core */
  --bc-brown-900: #1a0d04;
  --bc-brown-800: #2b1608;
  --bc-brown-700: #3a1c08;
  --bc-brown-600: #5c2c0c;
  --bc-brown-500: #a84f0d;
  --bc-brown-400: #c8862f;
  --bc-gold-300: #e8b968;
  --bc-gold-200: #f3c98a;
  --bc-beige-500: #d4a786;
  --bc-beige-300: #ecd9c6;
  --bc-blue-600: #0b57d0;
  --bc-blue-500: #0d6efd;
  --bc-blue-300: #6ea8ff;

  --bc-ink: #1c140d;
  --bc-paper: #fbf6f0;
  --bc-paper-dim: #f2e8dc;
  --bc-line: #e3d2bd;

  --bc-success: #1f9d55;
  --bc-radius-s: 8px;
  --bc-radius-m: 14px;
  --bc-radius-l: 22px;

  --bc-shadow-1: 0 2px 8px rgba(26, 13, 4, 0.10);
  --bc-shadow-2: 0 12px 32px rgba(26, 13, 4, 0.18);
  --bc-shadow-glow: 0 0 0 3px rgba(13, 110, 253, 0.28);

  --bc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --bc-header-h: 72px;
}

/* ---------- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--bc-font);
  color: var(--bc-ink);
  background: var(--bc-paper);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
table { border-collapse: collapse; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Skip link -------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bc-blue-500);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--bc-header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--bc-brown-800) 0%, var(--bc-brown-700) 100%);
  border-bottom: 1px solid rgba(232, 185, 104, 0.25);
  box-shadow: var(--bc-shadow-1);
}
.site-header__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.site-header__logo {
  height: 34px;
  width: auto;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: 18px;
}
.site-header__nav a {
  color: var(--bc-beige-300);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.site-header__nav a:hover,
.site-header__nav a:focus-visible { color: var(--bc-gold-200); }

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

/* ---------- Locale switch (segmented control) --------------------------- */
.locale-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(26, 13, 4, 0.45);
  border: 1px solid rgba(232, 185, 104, 0.3);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.locale-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bc-beige-300);
  transition: background 0.15s ease, color 0.15s ease;
}
.locale-switch__item:hover,
.locale-switch__item:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.locale-switch__item.is-active {
  background: var(--bc-blue-500);
  color: #fff;
}
.mobile-nav .locale-switch {
  width: 100%;
  justify-content: space-between;
  padding: 4px;
}
.mobile-nav .locale-switch__item {
  flex: 1;
  min-height: 44px;
  height: 44px;
  font-size: 14px;
}

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--bc-radius-s);
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  border-color: rgba(236, 217, 198, 0.4);
  color: var(--bc-beige-300);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--bc-gold-200);
  color: var(--bc-gold-200);
}

.btn--primary {
  background: var(--bc-blue-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.35);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--bc-blue-600);
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.45);
}

.btn--hero {
  background: linear-gradient(135deg, var(--bc-gold-200), var(--bc-brown-500));
  color: var(--bc-brown-900);
  padding: 15px 32px;
  font-size: 16.5px;
  box-shadow: 0 10px 26px rgba(168, 79, 13, 0.4);
}
.btn--hero:hover, .btn--hero:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 12px 30px rgba(168, 79, 13, 0.5);
}

.btn--block { width: 100%; }
.btn--lg { padding: 13px 22px; font-size: 15.5px; }

/* ---------- Burger --------------------------------------------------- */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: var(--bc-radius-s);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.burger:hover { background: rgba(255, 255, 255, 0.06); }
.burger__box {
  position: relative;
  width: 22px;
  height: 16px;
}
.burger__box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--bc-gold-200);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { top: 7px; }
.burger__box span:nth-child(3) { top: 14px; }
.burger[aria-expanded="true"] .burger__box span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__box span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ---------- Mobile nav drawer ----------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: var(--bc-header-h) 0 0 0;
  background: var(--bc-brown-800);
  z-index: 99;
  display: none;
  flex-direction: column;
  gap: 22px;
  padding: 24px 20px 32px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav__links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--bc-beige-300);
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid rgba(232, 185, 104, 0.14);
}
.mobile-nav__links a:hover { color: var(--bc-gold-200); }
.mobile-nav__label {
  color: rgba(236, 217, 198, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 4px 0 2px;
}
.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.mobile-nav__actions .btn { min-height: 48px; }

/* ---------- Hero ------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(13, 110, 253, 0.30), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(232, 185, 104, 0.22), transparent 46%),
    linear-gradient(160deg, var(--bc-brown-700) 0%, var(--bc-brown-800) 45%, var(--bc-brown-900) 100%);
  color: #fff;
  padding: 56px 0 64px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 42%, rgba(232, 185, 104, 0.07) 43%, rgba(232, 185, 104, 0.07) 44%, transparent 45%),
    linear-gradient(115deg, transparent 62%, rgba(13, 110, 253, 0.10) 63%, rgba(13, 110, 253, 0.10) 64%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 110, 253, 0.18);
  border: 1px solid rgba(13, 110, 253, 0.4);
  color: var(--bc-blue-300);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}
.hero__title {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: #fff;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--bc-gold-200), var(--bc-blue-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: 17px;
  color: var(--bc-beige-300);
  max-width: 54ch;
  margin: 0 0 28px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero__fineprint {
  font-size: 12.5px;
  color: rgba(236, 217, 198, 0.6);
}
.hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--bc-gold-200);
  margin: 0;
}
.hero__stat-label {
  font-size: 12.5px;
  color: rgba(236, 217, 198, 0.65);
  margin: 2px 0 0;
}

/* Hero visual: CSS-built cave/vault panel, no raster photo */
.hero__art {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--bc-radius-l);
  background:
    radial-gradient(circle at 30% 20%, rgba(13, 110, 253, 0.35), transparent 55%),
    linear-gradient(160deg, var(--bc-brown-600), var(--bc-brown-900));
  border: 1px solid rgba(232, 185, 104, 0.25);
  box-shadow: var(--bc-shadow-2);
  overflow: hidden;
}
.hero__art::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6%;
  width: 82%;
  height: 70%;
  transform: translateX(-50%);
  background: linear-gradient(160deg, var(--bc-gold-200), var(--bc-brown-500) 55%, var(--bc-brown-700));
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  opacity: 0.9;
}
.hero__art::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: 30%;
  height: 34%;
  transform: translateX(-50%);
  background: var(--bc-blue-500);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  opacity: 0.85;
}
.hero__art-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}
.hero__art-chip {
  background: rgba(26, 13, 4, 0.55);
  border: 1px solid rgba(232, 185, 104, 0.3);
  color: var(--bc-gold-200);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.hero__art-foot {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  background: rgba(26, 13, 4, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--bc-radius-m);
  padding: 12px 16px;
  color: #fff;
}
.hero__art-foot-title { font-size: 13.5px; font-weight: 700; margin: 0 0 2px; }
.hero__art-foot-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin: 0; }

/* ---------- Section shell ---------------------------------------------- */
.section { padding: 64px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--bc-paper-dim); }
.section--dark {
  background: linear-gradient(160deg, var(--bc-brown-800), var(--bc-brown-900));
  color: #fff;
}
.section__head {
  max-width: 640px;
  margin: 0 0 36px;
}
.section__kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--bc-brown-500);
  margin: 0 0 10px;
}
.section--dark .section__kicker { color: var(--bc-gold-200); }
.section__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--bc-ink);
}
.section--dark .section__title { color: #fff; }
.section__lede {
  font-size: 15.5px;
  color: #5b4a3c;
  margin: 0;
}
.section--dark .section__lede { color: rgba(255,255,255,0.7); }

/* ---------- Category chips ---------------------------------------------- */
.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--bc-line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--bc-brown-600);
}
.chip--active {
  background: var(--bc-brown-500);
  border-color: var(--bc-brown-500);
  color: #fff;
}
.chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bc-blue-500);
}
.chip--active .chip__dot { background: var(--bc-gold-200); }

/* ---------- Game grid ---------------------------------------------------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.game-card {
  position: relative;
  border-radius: var(--bc-radius-m);
  overflow: hidden;
  background: var(--bc-brown-800);
  aspect-ratio: 3 / 4;
  box-shadow: var(--bc-shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--bc-shadow-2); }
.game-card__art {
  position: absolute;
  inset: 0;
}
.game-card:nth-child(4n+1) .game-card__art { background: linear-gradient(150deg, var(--bc-brown-500), var(--bc-brown-800)); }
.game-card:nth-child(4n+2) .game-card__art { background: linear-gradient(150deg, var(--bc-blue-500), var(--bc-brown-900)); }
.game-card:nth-child(4n+3) .game-card__art { background: linear-gradient(150deg, var(--bc-gold-300), var(--bc-brown-700)); }
.game-card:nth-child(4n+4) .game-card__art { background: linear-gradient(150deg, var(--bc-beige-500), var(--bc-brown-800)); }
.game-card__glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.game-card__glyph svg { width: 46%; height: 46%; }
.game-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(26, 13, 4, 0.55);
  color: var(--bc-gold-200);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 2;
}
.game-card__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent);
}
.game-card__name {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 2px;
}
.game-card__meta {
  color: rgba(255,255,255,0.68);
  font-size: 11.5px;
  margin: 0;
}

/* ---------- Sport strip -------------------------------------------------- */
.sport-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sport-card {
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-m);
  padding: 22px;
  box-shadow: var(--bc-shadow-1);
}
.sport-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--bc-radius-s);
  background: linear-gradient(150deg, var(--bc-blue-500), var(--bc-blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sport-card__icon svg { width: 24px; height: 24px; }
.sport-card__title { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--bc-ink); }
.sport-card__text { font-size: 13.5px; color: #5b4a3c; margin: 0; }

/* ---------- Feature grid (why-us) ---------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 185, 104, 0.18);
  border-radius: var(--bc-radius-m);
  padding: 22px;
}
.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232, 185, 104, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card__title { font-size: 15.5px; font-weight: 700; margin: 0 0 6px; color: #fff; }
.feature-card__text { font-size: 13.5px; color: rgba(255,255,255,0.68); margin: 0; }

/* ---------- Steps ---------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-m);
  padding: 22px 20px 20px;
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bc-brown-500);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}
.step-card__title { font-size: 14.5px; font-weight: 700; margin: 0 0 6px; }
.step-card__text { font-size: 13px; color: #5b4a3c; margin: 0; }

/* ---------- Payment strip -------------------------------------------- */
.pay-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-s);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--bc-brown-600);
}
.pay-pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bc-blue-500);
}

/* ---------- SEO article block -------------------------------------------- */
.article {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-l);
  padding: 40px 44px 46px;
  box-shadow: var(--bc-shadow-1);
}
.article h1 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--bc-ink);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.article h2 {
  font-size: 21px;
  font-weight: 800;
  color: var(--bc-brown-600);
  margin: 34px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--bc-line);
}
.article h2:first-of-type { border-top: none; padding-top: 0; margin-top: 8px; }
.article h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--bc-ink);
  margin: 22px 0 10px;
}
.article p {
  font-size: 15px;
  color: #3c2f24;
  margin: 0 0 14px;
}
.article ul, .article ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.article li { font-size: 15px; color: #3c2f24; margin-bottom: 8px; }
.article strong { color: var(--bc-brown-600); }

.article table {
  width: 100%;
  table-layout: fixed;
  margin: 8px 0 20px;
  font-size: 14px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-s);
  overflow: hidden;
}
.article th, .article td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--bc-line);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.article th {
  background: var(--bc-paper-dim);
  color: var(--bc-brown-600);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.article tr:last-child td { border-bottom: none; }
.article tr:nth-child(even) td { background: rgba(212, 167, 134, 0.08); }

/* FAQ accordion inside article (h3 question + p answer, enhanced by JS-free <details>) */
.article details {
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-s);
  padding: 4px 16px;
  margin: 0 0 10px;
  background: var(--bc-paper-dim);
}
.article details summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  font-size: 15px;
  color: var(--bc-ink);
  list-style: none;
}
.article details summary::-webkit-details-marker { display: none; }
.article details summary::after {
  content: "+";
  float: right;
  font-size: 18px;
  color: var(--bc-brown-500);
}
.article details[open] summary::after { content: "\2212"; }
.article details p { padding-bottom: 12px; }

/* ---------- Trust / responsible gaming strip -------------------------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card {
  text-align: center;
  padding: 18px 12px;
}
.trust-card__icon {
  width: 46px; height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.trust-card__icon svg { width: 24px; height: 24px; }
.trust-card__title { font-size: 13.5px; font-weight: 700; margin: 0; color: var(--bc-ink); }

/* ---------- Breadcrumb ------------------------------------------------ */
.breadcrumb {
  padding: 18px 0 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 12.5px;
  color: #7a6653;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: #b6a48e;
}
.breadcrumb a { color: #7a6653; font-weight: 600; }
.breadcrumb a:hover { color: var(--bc-brown-500); }
.breadcrumb li[aria-current] { color: var(--bc-brown-600); font-weight: 700; }

/* ---------- Footer ------------------------------------------------------ */
.site-footer {
  background: var(--bc-brown-900);
  color: rgba(236, 217, 198, 0.75);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand__logo { height: 30px; margin-bottom: 14px; }
.footer-brand__text {
  font-size: 13.5px;
  color: rgba(236, 217, 198, 0.6);
  max-width: 30ch;
  margin: 0 0 18px;
}
.footer-col__title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bc-gold-200);
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(236, 217, 198, 0.72);
  padding: 5px 0;
}
.footer-col a:hover { color: #fff; }

.footer-locale {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid rgba(232, 185, 104, 0.15);
  border-bottom: 1px solid rgba(232, 185, 104, 0.15);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-locale__label {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(236, 217, 198, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(236, 217, 198, 0.5);
}
.footer-legal p { margin: 0 0 10px; }
.footer-legal strong { color: rgba(236, 217, 198, 0.75); }
.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(232, 185, 104, 0.25);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(236, 217, 198, 0.7);
}

/* ---------- Utility ------------------------------------------------------ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  /* Mobile header: wordmark + burger ONLY */
  .site-header__nav,
  .site-header__actions .locale-switch,
  .site-header__actions .btn { display: none; }
  .burger { display: inline-flex; }
  .site-header__actions { gap: 0; }
}

@media (max-width: 720px) {
  .sport-strip { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .article { padding: 28px 20px 32px; }
}

@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .hero { padding: 40px 0 44px; }
  .section { padding: 44px 0; }
}

@media (max-width: 560px) {
  .article table { font-size: 12px; }
  .article th, .article td { padding: 7px 8px; }
  .article { padding: 22px 14px 26px; }
  .article h1 { font-size: 22px; }
  .article h2 { font-size: 18px; }
}

@media (max-width: 420px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .container { padding: 0 16px; }
}
