/* =========================================================
   Frumzi — frumzis.de
   Bespoke stylesheet. Deep purple + electric blue nightlife.
   Shared byte-for-byte across DE / AT / CH.
   ========================================================= */

:root {
  --ink: #0b0833;
  --ink-2: #0e1147;
  --ink-3: #15134f;
  --blue: #2962ff;
  --blue-light: #6f93ff;
  --blue-glow: rgba(41, 98, 255, 0.55);
  --white: #ffffff;
  --paper: #ffffff;
  --fog: #f4f5fb;
  --mist: #e8e9f5;
  --line: #dedff0;
  --text: #1a1830;
  --text-soft: #514f6e;
  --text-faint: #83819c;
  --gold: #ffb020;
  --green: #16c784;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 30px -14px rgba(11, 8, 51, 0.35);
  --shadow-pop: 0 18px 44px -16px rgba(11, 8, 51, 0.45);
  --container: 1180px;
  --header-h: 76px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
p { margin: 0 0 1em; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

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

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__logo {
  width: 116px;
  height: 19px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: auto;
  margin-left: 40px;
}
.main-nav__link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 2px;
  position: relative;
  transition: color 0.15s ease;
}
.main-nav__link:hover,
.main-nav__link.is-current {
  color: var(--white);
}
.main-nav__link.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* Locale switch (shared component: 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.12);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}
.locale-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
}
.locale-switch__item:hover {
  color: var(--white);
}
.locale-switch__item.is-active {
  background: var(--blue);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 11px 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 22px -8px var(--blue-glow);
}
.btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 26px -6px var(--blue-glow);
}
.btn--block { width: 100%; }
.btn--lg {
  padding: 15px 30px;
  font-size: 16px;
}

/* Burger — hidden on desktop */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.burger__box {
  width: 20px;
  height: 14px;
  position: relative;
}
.burger__line {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: 10px 1px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.burger__line:nth-child(1) { top: 0; }
.burger__line:nth-child(2) { top: 6px; }
.burger__line:nth-child(3) { top: 12px; }
.burger.is-open .burger__line:nth-child(1) { top: 6px; transform: rotate(45deg); }
.burger.is-open .burger__line:nth-child(2) { opacity: 0; }
.burger.is-open .burger__line:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--ink);
  z-index: 199;
  overflow-y: auto;
  padding: 22px 24px 40px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
}
.mobile-nav__link {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav__link.is-current { color: var(--blue-light); }
.mobile-nav__section-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 18px 0 10px;
}
.mobile-nav .locale-switch { width: 100%; margin-bottom: 20px; }
.mobile-nav .locale-switch__item { flex: 1; min-height: 44px; }
.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav__actions .btn { min-height: 48px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 82% -10%, #1c2f8f 0%, var(--ink-2) 42%, var(--ink) 78%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.5) 0, transparent 60%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.35) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(255,255,255,0.4) 0, transparent 60%),
    radial-gradient(1px 1px at 80% 55%, rgba(255,255,255,0.3) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 92% 80%, rgba(255,255,255,0.35) 0, transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -160px;
  right: -220px;
  width: 900px;
  height: 620px;
  object-fit: contain;
  opacity: 0.85;
  pointer-events: none;
  filter: blur(0.5px);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 76px 24px 90px;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: 32px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin: 0 0 22px;
}
.hero__eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 199, 132, 0.25);
}
.hero__title {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--blue-light);
}
.hero__lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero__fineprint {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
.hero__stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero__stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}
.hero__stat-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* Hero visual: stacked game tiles */
.hero__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__tile-group {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__tile {
  position: absolute;
  width: 148px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__tile img { width: 100%; height: 100%; object-fit: cover; }
.hero__tile--1 { top: 8%; left: 4%; width: 156px; transform: rotate(-6deg); z-index: 3; }
.hero__tile--2 { top: 0; left: 40%; width: 168px; transform: rotate(3deg); z-index: 4; }
.hero__tile--3 { top: 18%; right: 2%; width: 150px; transform: rotate(8deg); z-index: 2; }
.hero__tile--4 { bottom: 4%; left: 20%; width: 150px; transform: rotate(-4deg); z-index: 2; }
.hero__badge {
  position: absolute;
  bottom: 6%;
  right: 10%;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-pop);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6f93ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
}
.hero__badge-text strong { display: block; font-size: 13.5px; }
.hero__badge-text span { font-size: 11.5px; color: var(--text-soft); }

/* =========================================================
   SECTIONS — shared
   ========================================================= */
.section {
  padding: 68px 0;
}
.section--tint {
  background: var(--fog);
}
.section__head {
  max-width: 640px;
  margin: 0 0 38px;
}
.section__kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
}
.section__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.section__desc {
  font-size: 15.5px;
  color: var(--text-soft);
  margin: 0;
}
.section__foot {
  margin-top: 32px;
  text-align: center;
}

/* Category chips */
.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-soft);
}
.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.chip__icon { font-size: 15px; line-height: 1; }

/* Game grid */
.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(--ink);
  box-shadow: var(--shadow-card);
  aspect-ratio: 2 / 3;
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.game-card:hover img { transform: scale(1.06); }
.game-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 12px 12px;
  background: linear-gradient(180deg, rgba(11,8,51,0) 0%, rgba(11,8,51,0.92) 78%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.game-card__name {
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
}
.game-card__play {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Feature grid (why-us / trust) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.feature-card__desc {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}

/* Bonus / promo band */
.promo-band {
  position: relative;
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 60%, #22207a 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 46px 40px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}
.promo-band::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.promo-band__title {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  margin: 0 0 12px;
}
.promo-band__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px;
  max-width: 460px;
}
.promo-band__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promo-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.promo-step__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-step__text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.promo-step__text span { font-size: 13px; color: rgba(255, 255, 255, 0.65); }

/* Payment strip */
.pay-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 26px 0;
}
.pay-pill {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-soft);
}

/* Steps (register) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
}
.step-card__num {
  font-size: 34px;
  font-weight: 800;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 14px;
}
.step-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.step-card__desc {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0;
}

/* Responsible gaming */
.responsible-band {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.responsible-band__badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}
.responsible-band__text {
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.responsible-band__text strong { color: var(--white); }

/* =========================================================
   BREADCRUMB (interior pages)
   ========================================================= */
.breadcrumb {
  padding: 18px 0;
  font-size: 13px;
  color: var(--text-faint);
}
.breadcrumb a { color: var(--text-soft); font-weight: 600; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb__sep { margin: 0 6px; color: var(--text-faint); }
.breadcrumb__current { color: var(--text); font-weight: 600; }

/* Page intro (interior hero, no h1 duplicate here — h1 lives in article) */
.page-intro {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--white);
  padding: 30px 0 54px;
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-intro .breadcrumb { color: rgba(255,255,255,0.55); position: relative; z-index: 1; }
.page-intro .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-intro .breadcrumb__current { color: var(--white); }
.page-intro__eyebrow {
  position: relative;
  z-index: 1;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin: 14px 0 8px;
}
.page-intro__lead {
  position: relative;
  z-index: 1;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0;
}

/* =========================================================
   SEO ARTICLE BLOCK
   ========================================================= */
.seo-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 54px 0 30px;
}
.seo-article h1 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 22px;
}
.seo-article h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 16px;
  letter-spacing: -0.005em;
}
.seo-article h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
}
.seo-article p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0 0 16px;
}
.seo-article a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(41, 98, 255, 0.35);
  text-underline-offset: 2px;
}
.seo-article a:hover { text-decoration-color: var(--blue); }
.seo-article strong { color: var(--ink); }
.seo-article ul, .seo-article ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.seo-article li { margin-bottom: 8px; }
.seo-article ol { padding-left: 24px; }

/* Responsive SEO tables */
.seo-article table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 22px 0 26px;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.seo-article th,
.seo-article td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
  vertical-align: top;
}
.seo-article thead th {
  background: var(--ink);
  color: var(--white);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.seo-article tbody tr:last-child td { border-bottom: none; }
.seo-article tbody tr:nth-child(even) { background: var(--fog); }

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* FAQ accordion (lives inside seo-article via h3 pattern, but styled block variant on index) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--fog);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item__a-inner {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}
.faq-item.is-open .faq-item__a { max-height: 600px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand__logo {
  width: 108px;
  height: 18px;
  margin-bottom: 16px;
}
.footer-brand__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
  margin: 0 0 18px;
}
.footer-col__title {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
}
.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col__links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col__links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom__legal {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 760px;
}
.footer-bottom__legal strong { color: rgba(255, 255, 255, 0.65); }
.footer-age {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 13px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 340px; margin-top: 20px; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 60px; }

  .main-nav,
  .header-actions .locale-switch,
  .header-actions .btn {
    display: none;
  }
  .site-header__inner { padding: 0 16px; }
  .brand__logo { width: 100px; height: 16px; }
  .burger { display: flex; }
  .header-actions { gap: 10px; }

  .hero__inner { padding: 44px 16px 56px; }
  .hero__title { font-size: clamp(28px, 8vw, 38px); }
  .hero__lead { font-size: 15.5px; }
  .hero__ctas { gap: 12px; }
  .hero__visual { height: 280px; }
  .hero__tile { width: 118px; }
  .hero__tile--1 { width: 122px; }
  .hero__tile--2 { width: 132px; }
  .hero__badge { padding: 10px 12px; }

  .wrap { padding: 0 16px; }
  .section { padding: 46px 0; }
  .game-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .promo-band { padding: 30px 20px; }
  .responsible-band { flex-direction: column; text-align: center; padding: 26px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .seo-article { padding: 38px 0 20px; }
  .seo-article h2 { font-size: 20px; }
  .seo-article table { font-size: 13px; }
  .seo-article th, .seo-article td { padding: 9px 10px; }
}

@media (max-width: 560px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 20px; }
  .seo-article table { font-size: 12px; }
  .seo-article th, .seo-article td { padding: 7px 8px; }
  .promo-step { padding: 12px 14px; }
}

@media (max-width: 400px) {
  .hero__visual { height: 240px; }
  .hero__tile { width: 100px; }
  .hero__tile--1 { width: 104px; }
  .hero__tile--2 { width: 112px; }
  .hero__badge { padding: 8px 10px; bottom: 2%; right: 4%; }
  .hero__badge-text strong { font-size: 12px; }
  .hero__badge-text span { font-size: 10.5px; }
}
