/* ==========================================================================
   Vlad Casino — vlad1.de
   Bespoke stylesheet. Shared byte-identical across root / /at/ / /ch/.
   Dark-navy gothic-elegant identity — refined, not campy.
   ========================================================================== */

:root {
  --navy: #0F1F30;
  --navy-deep: #0A1620;
  --navy-raised: #16293D;
  --navy-line: #1F3247;
  --silver: #C5D7E0;
  --silver-dim: #93A9B6;
  --silver-faint: rgba(197, 215, 224, 0.14);
  --bronze: #C8A86C;
  --bronze-dark: #A6854A;
  --claret: #7A2233;
  --claret-light: #9E3346;
  --white: #FFFFFF;
  --paper: #F4F1EA;

  --ink: #101820;
  --ink-soft: #3B4A56;

  --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: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(10, 22, 32, 0.30);
  --shadow-md: 0 14px 34px rgba(10, 22, 32, 0.42);
  --shadow-bronze: 0 8px 22px rgba(166, 133, 74, 0.30);

  --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.58;
  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(--bronze); 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-deep);
  border-bottom: 1px solid var(--navy-line);
}

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

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 30px;
  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: 600;
  font-size: 0.93rem;
  color: var(--silver);
  letter-spacing: 0.01em;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--silver-faint);
  color: var(--white);
}
.main-nav a.is-current {
  background: var(--navy-raised);
  color: var(--bronze);
  border: 1px solid var(--navy-line);
}

.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: var(--navy-raised);
  border: 1px solid var(--navy-line);
  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.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--silver-dim);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.locale-switch__item:hover,
.locale-switch__item:focus-visible {
  color: var(--white);
}
.locale-switch__item.is-active {
  background: var(--bronze);
  color: var(--navy-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  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, border-color 0.15s ease;
  min-height: 44px;
}
.btn:active { transform: translateY(1px); }

.btn-ghost {
  color: var(--silver);
  border: 1.5px solid var(--navy-line);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--bronze);
  color: var(--bronze);
}

.btn-primary {
  background: linear-gradient(135deg, var(--claret-light) 0%, var(--claret) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(122, 34, 51, 0.38);
}
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 8px 24px rgba(122, 34, 51, 0.5);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-dark) 100%);
  color: var(--navy-deep);
  box-shadow: var(--shadow-bronze);
}
.btn-gold:hover, .btn-gold:focus-visible {
  box-shadow: 0 8px 26px rgba(166, 133, 74, 0.45);
  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: var(--silver-faint); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bronze);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.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 */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 65px;
  background: var(--navy-deep);
  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: 600;
  font-size: 1.05rem;
  color: var(--silver);
  min-height: 44px;
}
.mobile-nav__links a.is-current { background: var(--navy-raised); color: var(--bronze); }
.mobile-nav__links a:not(.is-current):hover { background: var(--silver-faint); }

.mobile-nav__section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  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 — moody dark-navy statement, understated drama
   ========================================================================== */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse 780px 460px at 82% -10%, rgba(197, 215, 224, 0.10), transparent 60%),
    radial-gradient(ellipse 620px 420px at 8% 105%, rgba(122, 34, 51, 0.28), transparent 60%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 55%, #12283C 100%);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,215,224,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,215,224,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 900px 500px at 70% 20%, black, transparent 75%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60%;
  height: 220px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(0,0,0,0.55), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  padding: 60px 24px 68px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero__inner > * {
  min-width: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 168, 108, 0.10);
  border: 1px solid rgba(200, 168, 108, 0.36);
  color: var(--bronze);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-wrap: balance;
  overflow-wrap: break-word;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  color: var(--silver);
}

.hero__lede {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
  margin-bottom: 32px;
}

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

.hero__meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__meta-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bronze);
}
.hero__meta-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__art-card {
  position: relative;
  background: rgba(197, 215, 224, 0.045);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 26px;
  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;
  border: 1px solid var(--navy-line);
}
.hero__art-badge {
  position: absolute;
  top: -14px;
  right: 22px;
  background: linear-gradient(135deg, var(--claret-light), var(--claret));
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(122, 34, 51, 0.42);
  transform: rotate(-3deg);
  letter-spacing: 0.02em;
}

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

.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 30px 0 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  background: #fff;
  border: 1.5px solid rgba(16, 24, 32, 0.10);
  border-radius: var(--radius-pill);
  font-weight: 600;
  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(--bronze); 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: 56px 0;
}
.section--tint { background: #EAE5DA; }
.section--navy { background: var(--navy-deep); 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: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 8px;
}
.section--navy .section__kicker { color: var(--bronze); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.section--navy .section__title { color: #fff; }
.section__sub {
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 8px;
}
.section--navy .section__sub { color: rgba(255,255,255,0.62); }

.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-deep);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid var(--navy-line);
}
.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(10,22,32,0.94) 0%, rgba(10,22,32,0) 100%);
  padding: 28px 10px 10px;
}
.game-card__name {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  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(--bronze);
  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 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(16,24,32,0.08);
  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(--navy), var(--navy-deep));
  color: #fff;
  margin-bottom: 16px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.feature-card__text {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Promo band */
.promo-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--claret) 130%);
  color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  border: 1px solid var(--navy-line);
}
.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.78);
  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 rgba(16,24,32,0.08);
  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(--bronze);
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.step-card__title { font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.step-card__text { color: var(--ink-soft); font-size: 0.92rem; }

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

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

.breadcrumb {
  padding: 16px 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { margin: 0 8px; color: #a9a290; }

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

.seo-article {
  background: #fff;
  border: 1px solid rgba(16,24,32,0.08);
  border-radius: var(--radius-lg);
  padding: 46px;
  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 rgba(16,24,32,0.08);
}
.seo-article h2:first-of-type { padding-top: 0; border-top: 0; margin-top: 28px; }
.seo-article h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bronze-dark);
  margin: 24px 0 10px;
}
.seo-article p {
  color: #333c44;
  margin-bottom: 14px;
  font-size: 1rem;
}
.seo-article a {
  color: var(--claret);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(122, 34, 51, 0.35);
  text-underline-offset: 2px;
}
.seo-article a:hover { text-decoration-color: var(--claret); }
.seo-article strong { color: var(--navy); font-weight: 700; }
.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: #333c44;
}
.seo-article ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bronze);
}
.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(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  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 rgba(16,24,32,0.12);
  font-size: 0.9rem;
}
.seo-article th, .seo-article td {
  padding: 12px 14px;
  text-align: left;
  overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(16,24,32,0.08);
}
.seo-article thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.seo-article tbody tr:nth-child(even) { background: #F4F1EA; }
.seo-article tbody tr:last-child td { border-bottom: 0; }

/* FAQ accordion (lives inside SEO article) */
.faq-item {
  border-bottom: 1px solid rgba(16,24,32,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(16,24,32,0.08); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 18px 4px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
}
.faq-q__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F4F1EA;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-size: 1.1rem;
  color: var(--bronze-dark);
}
.faq-item.is-open .faq-q__icon {
  transform: rotate(45deg);
  background: var(--bronze);
  color: var(--navy-deep);
}
.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-deep);
  color: rgba(255, 255, 255, 0.72);
  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 var(--navy-line);
}
.site-footer__brand img { height: 26px; margin-bottom: 14px; }
.site-footer__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 34ch;
}
.site-footer__heading {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  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.66); }
.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.42);
  line-height: 1.6;
}
.site-footer__legal strong { color: rgba(255,255,255,0.66); }
.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.42);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bronze);
  color: var(--bronze);
  font-weight: 700;
  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: 40px 0; }
  .seo-article { padding: 24px 16px; border-radius: var(--radius-md); }
  .site-header__inner { padding: 10px 16px; }
  .brand img { height: 26px; }
}

@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); }
}
