/* ==========================================================================
   Bison Casino — bison1.de
   Bespoke stylesheet. Shared byte-identical across root / /at/ / /ch/.
   ========================================================================== */

:root {
  --teal: #20716b;
  --teal-dark: #164e4a;
  --teal-light: #2e948c;
  --crimson: #fc3c6a;
  --crimson-dark: #d42553;
  --gold: #ffd36c;
  --gold-dark: #e8b53f;
  --navy: #1a2640;
  --navy-light: #24335a;
  --violet: #5352ed;

  --ink: #101a2e;
  --paper: #fffaf0;
  --paper-dim: #f4ede0;
  --line: rgba(16, 26, 46, 0.12);
  --line-soft: rgba(16, 26, 46, 0.08);

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(16, 26, 46, 0.10);
  --shadow-md: 0 10px 30px rgba(16, 26, 46, 0.16);
  --shadow-gold: 0 6px 20px rgba(232, 181, 63, 0.35);

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, div, span, p, a, ul, ol, li, table, thead, tbody, tr, th, td,
h1, h2, h3, header, footer, nav, section, article, figure, figcaption, button, form, input, label {
  margin: 0; padding: 0; border: 0; font: inherit; vertical-align: baseline;
}
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 2px; }

.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;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  color: #f2efe6;
  letter-spacing: 0.01em;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 211, 108, 0.14);
  color: var(--gold);
}
.main-nav a.is-current {
  background: var(--teal);
  color: #fff;
}

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

/* Locale switch — reused desktop header + mobile menu */
.locale-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}
.locale-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #cfd6e6;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.locale-switch__item:hover,
.locale-switch__item:focus-visible {
  color: #fff;
}
.locale-switch__item.is-active {
  background: var(--gold);
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  min-height: 44px;
}
.btn:active { transform: translateY(1px); }

.btn-ghost {
  color: #f2efe6;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-primary {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(252, 60, 106, 0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 8px 24px rgba(252, 60, 106, 0.48);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  box-shadow: 0 8px 26px rgba(232, 181, 63, 0.48);
  transform: translateY(-1px);
}

.btn-block { width: 100%; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.burger:hover { background: rgba(255, 255, 255, 0.08); }
.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 69px;
  background: var(--navy);
  z-index: 99;
  padding: 20px 24px 32px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-nav__links a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  color: #f2efe6;
  min-height: 44px;
}
.mobile-nav__links a.is-current { background: var(--teal); color: #fff; }
.mobile-nav__links a:not(.is-current):hover { background: rgba(255, 255, 255, 0.08); }

.mobile-nav__section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b93ab;
  margin: 18px 0 10px;
  padding: 0 16px;
}

.mobile-nav .locale-switch {
  margin: 0 16px 20px;
  width: calc(100% - 32px);
  justify-content: space-between;
}
.mobile-nav .locale-switch__item { flex: 1; min-height: 44px; }

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(255, 211, 108, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(252, 60, 106, 0.30), transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, var(--teal-dark) 68%, var(--teal) 100%);
  color: #fff;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 56px 24px 64px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 211, 108, 0.14);
  border: 1px solid rgba(255, 211, 108, 0.4);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__lede {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__meta-value {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
}
.hero__meta-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.02em;
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__art-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 380px;
}
.hero__art-card img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero__art-badge {
  position: absolute;
  top: -14px;
  right: 22px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(252, 60, 106, 0.4);
  transform: rotate(-4deg);
}

/* ==========================================================================
   Category chips
   ========================================================================== */

.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 28px 0 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.chip:hover { border-color: var(--teal); transform: translateY(-1px); }
.chip img { width: 26px; height: 26px; border-radius: 50%; }
.chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ==========================================================================
   Sections / Game grid
   ========================================================================== */

.section {
  padding: 52px 0;
}
.section--tint { background: var(--paper-dim); }
.section--navy { background: var(--navy); color: #fff; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section__kicker {
  display: block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 8px;
}
.section--navy .section__kicker { color: var(--gold); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section__sub {
  color: #5a5548;
  max-width: 60ch;
  margin-top: 8px;
}
.section--navy .section__sub { color: rgba(255,255,255,0.72); }

.game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.game-card:hover, .game-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(16,26,46,0.92) 0%, rgba(16,26,46,0) 100%);
  padding: 26px 10px 10px;
}
.game-card__name {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game-card__play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.game-card:hover .game-card__play,
.game-card:focus-visible .game-card__play { opacity: 1; transform: scale(1); }
.game-card__play svg { width: 13px; height: 13px; }

/* Feature / highlight cards (sportsbook, promos, trust) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  margin-bottom: 16px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card__title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feature-card__text {
  color: #55503f;
  font-size: 0.94rem;
}

/* Promo band */
.promo-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--crimson) 0%, var(--violet) 100%);
  color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.promo-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 8px;
  max-width: 34ch;
}
.promo-band__text {
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
}
.promo-band__cta { flex-shrink: 0; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}
.step-card__title { font-weight: 800; margin-bottom: 6px; }
.step-card__text { color: #55503f; font-size: 0.92rem; }

/* Payment strip */
.pay-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pay-pill {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
  padding: 16px 0;
  font-size: 0.86rem;
  color: #6b6656;
}
.breadcrumb a { color: var(--teal-dark); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { margin: 0 8px; color: #b6afa0; }

/* ==========================================================================
   SEO article block — only place headings live
   ========================================================================== */

.seo-article {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 44px;
  max-width: 880px;
  margin: 0 auto;
}
.seo-article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.seo-article h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 38px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.seo-article h2:first-of-type { padding-top: 0; border-top: 0; margin-top: 28px; }
.seo-article h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 24px 0 10px;
}
.seo-article p {
  color: #383424;
  margin-bottom: 14px;
  font-size: 1rem;
}
.seo-article a {
  color: var(--crimson-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(252, 60, 106, 0.35);
  text-underline-offset: 2px;
}
.seo-article a:hover { text-decoration-color: var(--crimson-dark); }
.seo-article strong { color: var(--navy); font-weight: 800; }
.seo-article ul, .seo-article ol {
  margin: 0 0 16px;
  padding-left: 0;
}
.seo-article ul li, .seo-article ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #383424;
}
.seo-article ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-dark);
}
.seo-article ol {
  counter-reset: seo-ol;
}
.seo-article ol li { counter-increment: seo-ol; }
.seo-article ol li::before {
  content: counter(seo-ol);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive SEO tables (payment tables etc.) */
.seo-article table {
  table-layout: fixed;
  width: 100%;
  margin: 20px 0 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}
.seo-article th, .seo-article td {
  padding: 12px 14px;
  text-align: left;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line-soft);
}
.seo-article thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.seo-article tbody tr:nth-child(even) { background: var(--paper-dim); }
.seo-article tbody tr:last-child td { border-bottom: 0; }

/* FAQ accordion (lives inside SEO article, built from h3/p pairs via .faq wrapper) */
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 18px 4px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy);
}
.faq-q__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-size: 1.1rem;
  color: var(--teal-dark);
}
.faq-item.is-open .faq-q__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.is-open .faq-a { max-height: 600px; }
.faq-a p { padding: 0 4px 18px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 60px;
}
.site-footer__top {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__brand img { height: 38px; margin-bottom: 14px; }
.site-footer__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
}
.site-footer__heading {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.site-footer__links a:hover { color: #fff; }

.site-footer__bottom {
  padding: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__legal {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.site-footer__legal strong { color: rgba(255,255,255,0.72); }
.site-footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1.2fr repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav,
  .header-actions .locale-switch,
  .header-actions .btn-ghost,
  .header-actions .btn-primary {
    display: none;
  }
  .burger { display: flex; }
  .header-actions { gap: 0; }

  .hero__inner { grid-template-columns: 1fr; padding: 40px 20px 44px; }
  .hero__art { order: -1; }
  .hero__art-card { max-width: 340px; }
  .hero__lede { max-width: none; }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .promo-band { padding: 30px 24px; }
  .seo-article { padding: 30px 22px; }
}

@media (max-width: 640px) {
  .wrap, .hero__inner { padding-left: 16px; padding-right: 16px; }
  .game-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .promo-band { flex-direction: column; align-items: flex-start; }
  .section { padding: 38px 0; }
  .seo-article { padding: 24px 16px; border-radius: var(--radius-md); }
  .site-header__inner { padding: 10px 16px; }
  .brand img { height: 36px; }
}

@media (max-width: 560px) {
  .seo-article table { font-size: 0.78rem; }
  .seo-article th, .seo-article td { padding: 8px 8px; }
  .hero__meta { gap: 14px; }
  .hero__actions .btn { flex: 1 1 auto; }
}

@media (max-width: 400px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
}
