/* =====================================================
   BETON Casino — спільні стилі для всіх сторінок
   ===================================================== */

:root {
  --black: #0A0A0A;
  --black-2: #131313;
  --black-3: #1A1A1A;
  --concrete: #2A2A2A;
  --concrete-light: #3A3A3A;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --border-yellow: rgba(232, 255, 0, 0.4);
  --text: #FFFFFF;
  --text-muted: #888888;
  --text-dim: #555555;
  --yellow: #E8FF00;
  --yellow-dim: rgba(232, 255, 0, 0.1);
  --yellow-hover: #F2FF4D;
  --warn: #FF6B35;
  --purple: #7B47E7;
  --purple-hover: #8F5FFF;
  --purple-deep: #5B2BCC;
  --green: #4ADE80;
  --red: #FF5A5A;
  --display: 'Anton', Impact, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --container: 1280px;
  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* =========== TOP STRIP =========== */
.top-strip {
  background: var(--yellow);
  color: var(--black);
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.top-strip__track { display: flex; animation: scroll 40s linear infinite; width: max-content; }
.top-strip__item { padding: 0 28px; border-right: 1px solid rgba(0,0,0,0.2); white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.top-strip__item::before { content: '◢'; font-size: 8px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========== HEADER =========== */
.header {
  position: sticky; top: 0; z-index: 100; height: 72px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.logo {
  font-family: var(--display); font-size: 38px; letter-spacing: 0.04em; line-height: 1;
  display: flex; align-items: center; gap: 0; text-transform: uppercase; position: relative;
}
.logo__mark { color: var(--text); position: relative; padding: 0 4px; }
.logo__mark::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 4px; background: var(--yellow);
}
.logo__dot { width: 8px; height: 8px; background: var(--yellow); margin-left: 8px; display: inline-block; }
.nav {
  display: flex; gap: 36px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-family: var(--sans);
}
.nav a { transition: color 0.2s; padding: 4px 0; }
.nav a:hover, .nav a.is-active { color: var(--yellow); }
.header__actions { display: flex; gap: 8px; align-items: center; }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius); font-size: 13px; font-weight: 700;
  font-family: var(--sans); letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.15s ease; white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn--ghost { color: var(--text); border-color: var(--border-strong); background: transparent; }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--primary { background: var(--yellow); color: var(--black); font-weight: 800; }
.btn--primary:hover {
  background: var(--yellow-hover); transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--black-3);
}
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--block { width: 100%; }

/* =========== PAGE HERO (для внутрішніх сторінок) =========== */
.page-hero {
  position: relative; padding: 80px 0 60px; border-bottom: 1px solid var(--border); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px; background-position: center; pointer-events: none; z-index: 0;
}
.breadcrumbs {
  font-family: var(--mono); font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px; position: relative; z-index: 2;
}
.breadcrumbs a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs .sep { color: var(--text-dim); }
.breadcrumbs .current { color: var(--yellow); }
.page-hero h1 {
  font-family: var(--display); font-size: clamp(56px, 8vw, 110px);
  line-height: 0.96; letter-spacing: 0.005em; text-transform: uppercase;
  margin-bottom: 24px; position: relative; z-index: 2;
}
.page-hero h1 .yellow-block {
  display: inline-block; background: var(--yellow); color: var(--black);
  padding: 0 18px 4px; margin: 0 4px;
}
.page-hero h1 .stroke { -webkit-text-stroke: 2px var(--yellow); color: transparent; }
.page-hero h1 .yellow { color: var(--yellow); }
.page-hero__sub {
  font-size: 18px; color: var(--text-muted); max-width: 720px;
  line-height: 1.55; position: relative; z-index: 2;
}

/* =========== HERO (для головної) =========== */
.hero { position: relative; padding: 80px 0 80px; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px; background-position: center; pointer-events: none; z-index: 0;
}
.hero__corner {
  position: absolute; font-family: var(--mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; z-index: 5;
}
.hero__corner--tl { top: 24px; left: 24px; }
.hero__corner--tr { top: 24px; right: 24px; }
.hero__corner--bl { bottom: 24px; left: 24px; }
.hero__corner--br { bottom: 24px; right: 24px; }
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 32px;
  font-weight: 700; background: var(--black); border: 1px solid var(--border-yellow); padding: 8px 14px;
}
.hero__tag .dot { width: 7px; height: 7px; background: var(--yellow); animation: blink 1.4s infinite; }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--display); font-size: clamp(72px, 11vw, 160px);
  line-height: 0.92; letter-spacing: 0.005em; margin-bottom: 32px; text-transform: uppercase;
}
.hero h1 .yellow-block {
  display: inline-block; background: var(--yellow); color: var(--black);
  padding: 0 20px 4px; margin: 0 6px;
}
.hero h1 .stroke { -webkit-text-stroke: 2px var(--yellow); color: transparent; }
.hero__sub {
  font-size: 18px; color: var(--text-muted); max-width: 520px;
  margin-bottom: 40px; line-height: 1.55;
}
.hero__sub strong { color: var(--text); font-weight: 600; }
.hero__cta { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.hero__trust {
  display: flex; gap: 0; font-family: var(--mono); font-size: 11px;
  color: var(--text-muted); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; border: 1px solid var(--border);
}
.hero__trust span {
  display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-right: 1px solid var(--border);
}
.hero__trust span:last-child { border-right: none; }
.hero__trust span::before { content: ''; width: 6px; height: 6px; background: var(--yellow); }

/* =========== LIVE PANEL =========== */
.hero__panel { background: var(--black-2); border: 1px solid var(--border-strong); padding: 0; position: relative; }
.hero__panel-header {
  padding: 16px 24px; background: var(--yellow); color: var(--black);
  font-family: var(--mono); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  display: flex; justify-content: space-between; align-items: center;
}
.hero__panel-header .dot { width: 8px; height: 8px; background: var(--black); animation: blink 1.4s infinite; }
.hero__panel-body { padding: 8px 24px 24px; }
.live-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0; border-bottom: 1px dashed var(--border);
}
.live-stat:last-child { border-bottom: none; }
.live-stat__label {
  font-family: var(--mono); font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.live-stat__value {
  font-family: var(--display); font-size: 28px; letter-spacing: 0.02em;
  color: var(--text); font-variant-numeric: tabular-nums; text-transform: uppercase;
}
.live-stat__value .accent { color: var(--yellow); margin-right: 6px; }

/* =========== TICKER =========== */
.ticker { border-bottom: 1px solid var(--border); background: var(--black-2); overflow: hidden; position: relative; z-index: 2; }
.ticker__label {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  background: var(--yellow); color: var(--black); padding: 8px 16px;
  font-family: var(--mono); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em; z-index: 3;
  display: flex; align-items: center; gap: 8px;
}
.ticker__label .dot { width: 7px; height: 7px; background: var(--black); animation: blink 1.4s infinite; }
.ticker__track { display: flex; animation: scroll 50s linear infinite; width: max-content; padding-left: 130px; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: flex; align-items: center; gap: 14px; padding: 18px 28px;
  border-right: 1px solid var(--border); white-space: nowrap;
}
.ticker__name { color: var(--text-muted); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.ticker__value { font-family: var(--display); font-size: 22px; color: var(--yellow); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }

/* =========== SECTIONS =========== */
section { position: relative; z-index: 2; }
.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 24px; border-bottom: 1px solid var(--border); padding-bottom: 32px;
}
.section__eyebrow {
  font-family: var(--mono); font-size: 11px; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 18px;
  font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.section__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--yellow); }
.section__title {
  font-family: var(--display); font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96; letter-spacing: 0.005em; max-width: 800px; text-transform: uppercase;
}
.section__title .yellow { color: var(--yellow); }
.section__title .stroke { -webkit-text-stroke: 1.5px var(--yellow); color: transparent; }
.section__link {
  font-size: 12px; color: var(--text-muted); font-weight: 700; font-family: var(--mono);
  text-transform: uppercase; letter-spacing: 0.12em;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  transition: all 0.2s; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.section__link:hover { color: var(--yellow); border-color: var(--yellow); }

/* =========== USP =========== */
.usp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.usp__item { padding: 40px 32px; position: relative; border-right: 1px solid var(--border); transition: background 0.25s; }
.usp__item:last-child { border-right: none; }
.usp__item:hover { background: var(--black-2); }
.usp__item-num { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--text-dim); margin-bottom: 32px; letter-spacing: 0.12em; }
.usp__icon-wrap { width: 48px; height: 48px; background: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.usp__icon { width: 26px; height: 26px; stroke: var(--black); stroke-width: 2.2; fill: none; }
.usp__title { font-family: var(--display); font-size: 32px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; line-height: 1; }
.usp__num { font-family: var(--display); font-size: 22px; color: var(--yellow); margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.usp__desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* =========== CATEGORIES =========== */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cat {
  position: relative; background: var(--black-2); border: 1px solid var(--border);
  padding: 28px; overflow: hidden; transition: all 0.2s ease; cursor: pointer;
  min-height: 240px; display: flex; flex-direction: column; justify-content: space-between;
}
.cat:hover { border-color: var(--yellow); background: var(--black-3); }
.cat:hover .cat__bg { opacity: 0.6; }
.cat__bg { position: absolute; inset: 0; opacity: 0.35; transition: opacity 0.3s; }
.cat__num { font-family: var(--mono); font-size: 10px; color: var(--text-dim); letter-spacing: 0.16em; font-weight: 700; position: relative; z-index: 2; }
.cat__name { font-family: var(--display); font-size: 36px; letter-spacing: 0.02em; position: relative; z-index: 2; text-transform: uppercase; color: var(--text); line-height: 1; }
.cat__count {
  font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--text-muted);
  position: relative; z-index: 2; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; text-transform: uppercase; letter-spacing: 0.08em;
}
.cat:hover .cat__count { color: var(--yellow); }
.cat__count .arrow { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.25s; flex-shrink: 0; }
.cat:hover .cat__count .arrow { transform: translateX(4px); }

/* =========== TOP GAMES =========== */
.games { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.game { background: var(--black-2); border: 1px solid var(--border); overflow: hidden; transition: all 0.18s; position: relative; }
.game:hover { border-color: var(--yellow); transform: translateY(-2px); }
.game__art { aspect-ratio: 1; position: relative; overflow: hidden; }
.game__art svg { width: 100%; height: 100%; display: block; }
.game__info { padding: 14px 16px 16px; border-top: 1px solid var(--border); }
.game__name { font-size: 14px; font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game__provider { font-family: var(--mono); font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.game__live { position: absolute; top: 10px; left: 10px; background: var(--black); border: 1px solid var(--yellow); padding: 5px 10px; font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--yellow); display: flex; align-items: center; gap: 6px; }
.game__live .dot { width: 5px; height: 5px; background: var(--yellow); animation: blink 1.4s infinite; }
.game__rank { position: absolute; top: 8px; right: 12px; font-family: var(--display); font-size: 36px; color: var(--yellow); line-height: 1; text-shadow: 2px 2px 0 var(--black); }

/* =========== BONUS =========== */
.bonus {
  background: var(--yellow); color: var(--black); padding: 64px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden; border: 2px solid var(--yellow);
}
.bonus::before {
  content: '+100%'; position: absolute; right: -20px; bottom: -100px;
  font-family: var(--display); font-size: 420px; line-height: 0.8;
  color: var(--black); opacity: 0.08; pointer-events: none; text-transform: uppercase;
}
.bonus::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(-45deg, var(--black) 0, var(--black) 14px, transparent 14px, transparent 28px);
}
.bonus__eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 800; color: var(--black);
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 22px;
  position: relative; z-index: 2; display: flex; align-items: center; gap: 10px;
}
.bonus__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--black); }
.bonus__title { font-family: var(--display); font-size: clamp(48px, 6vw, 82px); line-height: 0.94; letter-spacing: 0.005em; margin-bottom: 22px; position: relative; z-index: 2; text-transform: uppercase; }
.bonus__title .stroke { -webkit-text-stroke: 2px var(--black); color: transparent; }
.bonus__desc { color: rgba(0, 0, 0, 0.78); margin-bottom: 28px; max-width: 480px; font-size: 16px; position: relative; z-index: 2; font-weight: 500; }
.bonus__terms { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--black); display: flex; gap: 18px; flex-wrap: wrap; position: relative; z-index: 2; text-transform: uppercase; letter-spacing: 0.08em; }
.bonus__terms span { display: flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--black); color: var(--yellow); }
.bonus__calc { background: var(--black); color: var(--text); padding: 28px; position: relative; z-index: 2; border: 2px solid var(--black); }
.bonus__calc-label { font-family: var(--mono); font-size: 11px; font-weight: 800; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.bonus__calc-label::before { content: ''; width: 16px; height: 1px; background: var(--yellow); }
.bonus__calc-input { display: flex; align-items: baseline; border-bottom: 2px solid var(--yellow); padding-bottom: 12px; margin-bottom: 24px; }
.bonus__calc-input input { background: none; border: none; color: var(--text); font-family: var(--display); font-size: 44px; width: 100%; outline: none; letter-spacing: 0.02em; text-transform: uppercase; }
.bonus__calc-input span { font-family: var(--display); font-size: 28px; color: var(--yellow); letter-spacing: 0.02em; }
.bonus__calc-result { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.bonus__calc-result-label { font-family: var(--mono); font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.bonus__calc-result-value { font-family: var(--display); font-size: 28px; color: var(--yellow); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }

/* =========== STEPS =========== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); }
.step { padding: 40px 32px; position: relative; border-right: 1px solid var(--border); transition: background 0.25s; }
.step:last-child { border-right: none; }
.step:hover { background: var(--black-2); }
.step__num { font-family: var(--display); font-size: 96px; color: var(--yellow); line-height: 0.85; margin-bottom: 24px; letter-spacing: 0.02em; }
.step__title { font-family: var(--display); font-size: 26px; margin-bottom: 10px; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1; }
.step__desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* =========== FAQ =========== */
.faq__wrap { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; width: 100%; text-align: left; font-family: var(--display); font-size: 28px; letter-spacing: 0.02em; color: var(--text); padding: 28px 0; text-transform: uppercase; transition: color 0.2s; }
.faq__q:hover { color: var(--yellow); }
.faq__icon { width: 32px; height: 32px; flex-shrink: 0; margin-left: 24px; stroke: var(--yellow); stroke-width: 2.5; fill: none; transition: transform 0.3s; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 720px; }
.faq__item.is-open .faq__a { max-height: 600px; padding-bottom: 28px; }

/* =========== CTA STRIP =========== */
.cta-strip { background: var(--black-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; text-align: center; position: relative; z-index: 2; }
.cta-strip__title { font-family: var(--display); font-size: clamp(56px, 8vw, 120px); line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 32px; text-transform: uppercase; }
.cta-strip__title .yellow { color: var(--yellow); }
.cta-strip__sub { color: var(--text-muted); font-size: 16px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* =========== FOOTER =========== */
.footer { border-top: 1px solid var(--border); background: var(--black); padding: 60px 0 28px; position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__about { max-width: 340px; }
.footer__about .logo { margin-bottom: 20px; }
.footer__about p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--yellow); margin-bottom: 20px; font-weight: 700; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a { color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer__col a:hover { color: var(--yellow); }
.footer__legal { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.footer__legal .badges { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.badge { font-family: var(--mono); font-size: 10px; font-weight: 700; padding: 6px 10px; border: 1px solid var(--border-strong); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.badge.yellow { color: var(--black); background: var(--yellow); border-color: var(--yellow); }
.badge.warn { color: var(--warn); border-color: var(--warn); }

/* =========== RG STRIP =========== */
.rg-strip { background: var(--black-2); border-top: 1px solid var(--border); padding: 16px 0; text-align: center; font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.rg-strip .warn { color: var(--warn); }
.rg-strip a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

/* =========== MOBILE TABS =========== */
.mobile-tabs { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10, 10, 10, 0.96); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-top: 1px solid var(--border-strong); z-index: 100; padding: 8px 0 max(8px, env(safe-area-inset-bottom)); }
.mobile-tabs__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.tab-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 0; font-size: 10px; font-weight: 700; color: var(--text-muted); font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.tab-btn svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }
.tab-btn.active { color: var(--yellow); }

/* =========== ANIMATIONS =========== */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* =========== INTERNAL PAGES BLOCKS =========== */

/* Two-col layout (login, app, etc.) */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }

/* Auth tabs (login page) */
.auth { background: var(--black-2); border: 1px solid var(--border-strong); }
.auth__tabs { display: grid; grid-template-columns: 1fr 1fr; }
.auth__tab { padding: 20px; background: transparent; color: var(--text-muted); font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 2px solid var(--border); transition: all 0.2s; cursor: pointer; }
.auth__tab.is-active { color: var(--yellow); border-color: var(--yellow); background: var(--black-3); }
.auth__form { padding: 32px; }
.auth__methods { display: flex; gap: 8px; margin-bottom: 24px; }
.auth__method { flex: 1; padding: 12px; background: var(--black); border: 1px solid var(--border); font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.auth__method.is-active { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.auth__method:hover:not(.is-active) { border-color: var(--text-muted); color: var(--text); }
.field { margin-bottom: 18px; }
.field__label { display: block; font-family: var(--mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; font-weight: 600; }
.field__input { width: 100%; padding: 14px 16px; background: var(--black); border: 1px solid var(--border-strong); color: var(--text); font-family: var(--sans); font-size: 15px; transition: border 0.2s; }
.field__input:focus { outline: none; border-color: var(--yellow); }
.field__hint { font-family: var(--mono); font-size: 10px; color: var(--text-dim); margin-top: 6px; letter-spacing: 0.08em; }
.auth__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-family: var(--mono); font-size: 11px; }
.auth__row label { color: var(--text-muted); display: flex; align-items: center; gap: 8px; cursor: pointer; }
.auth__row a { color: var(--yellow); }
.auth__divider { display: flex; align-items: center; gap: 14px; margin: 28px 0; font-family: var(--mono); font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; }
.auth__divider::before, .auth__divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth__social { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.auth__social-btn { padding: 12px; background: var(--black); border: 1px solid var(--border); color: var(--text); font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; transition: all 0.2s; }
.auth__social-btn:hover { border-color: var(--yellow); color: var(--yellow); }

/* Info cards */
.info-card { background: var(--black-2); border: 1px solid var(--border); padding: 28px; margin-bottom: 16px; }
.info-card__title { font-family: var(--display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; }
.info-card__desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Accordion (used for "Не можу увійти", FAQ short) */
.accordion { border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; width: 100%; text-align: left; font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--text); padding: 18px 0; transition: color 0.2s; }
.accordion__q:hover { color: var(--yellow); }
.accordion__icon { width: 20px; height: 20px; flex-shrink: 0; margin-left: 24px; stroke: var(--yellow); stroke-width: 2.5; fill: none; transition: transform 0.3s; }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.accordion__item.is-open .accordion__a { max-height: 500px; padding-bottom: 18px; }

/* Bonus list (bonuses page) */
.bonus-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 48px; }
.bonus-card { background: var(--black-2); border: 1px solid var(--border); padding: 28px; position: relative; transition: all 0.2s; display: flex; flex-direction: column; }
.bonus-card:hover { border-color: var(--yellow); }
.bonus-card--feature { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.bonus-card__tag { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); margin-bottom: 16px; }
.bonus-card--feature .bonus-card__tag { color: var(--black); }
.bonus-card__title { font-family: var(--display); font-size: 36px; line-height: 1; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; }
.bonus-card__desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.bonus-card--feature .bonus-card__desc { color: rgba(0,0,0,0.78); }
.bonus-card__terms { font-family: var(--mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; padding: 14px 0; border-top: 1px solid var(--border); display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.bonus-card--feature .bonus-card__terms { color: rgba(0,0,0,0.7); border-color: rgba(0,0,0,0.18); }
.bonus-card__terms span::before { content: '◢ '; }

/* Stat blocks (review/app pages) */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); margin-bottom: 32px; }
.stat-cell { padding: 28px; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-cell__label { font-family: var(--mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; font-weight: 600; }
.stat-cell__value { font-family: var(--display); font-size: 40px; color: var(--yellow); letter-spacing: 0.02em; line-height: 1; }
.stat-cell__sub { font-family: var(--mono); font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }

/* Pros and cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); }
.proscons__col { padding: 32px; border-right: 1px solid var(--border); }
.proscons__col:last-child { border-right: none; }
.proscons__label { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 24px; }
.proscons__col--pro .proscons__label { color: var(--green); }
.proscons__col--con .proscons__label { color: var(--warn); }
.proscons ul { list-style: none; }
.proscons li { padding: 12px 0; font-size: 15px; color: var(--text); display: flex; gap: 12px; align-items: flex-start; border-bottom: 1px dashed var(--border); }
.proscons li:last-child { border-bottom: none; }
.proscons__col--pro li::before { content: '+'; color: var(--green); font-family: var(--display); font-size: 22px; line-height: 1; flex-shrink: 0; }
.proscons__col--con li::before { content: '−'; color: var(--warn); font-family: var(--display); font-size: 22px; line-height: 1; flex-shrink: 0; }

/* Criteria block (review) */
.criterion { padding: 32px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 100px 1fr 200px; gap: 32px; align-items: start; }
.criterion__num { font-family: var(--display); font-size: 56px; color: var(--yellow); line-height: 0.9; }
.criterion__title { font-family: var(--display); font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; }
.criterion__desc { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.criterion__score { font-family: var(--display); font-size: 64px; color: var(--yellow); line-height: 0.9; text-align: right; letter-spacing: 0.02em; }
.criterion__score-label { font-family: var(--mono); font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; text-align: right; margin-top: 6px; }

/* App download blocks */
.app-download { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.app-card { background: var(--black-2); border: 1px solid var(--border); padding: 32px; transition: all 0.2s; }
.app-card:hover { border-color: var(--yellow); }
.app-card__platform { font-family: var(--mono); font-size: 11px; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px; font-weight: 700; }
.app-card__title { font-family: var(--display); font-size: 32px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 18px; }
.app-card__meta { font-family: var(--mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 16px; }
.app-card__meta span::before { content: '◢ '; color: var(--yellow); }

/* Author block */
.author { display: flex; gap: 20px; align-items: center; padding: 24px; background: var(--black-2); border: 1px solid var(--border); margin-bottom: 32px; }
.author__avatar { width: 64px; height: 64px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 28px; color: var(--black); flex-shrink: 0; }
.author__name { font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 4px; }
.author__role { font-family: var(--mono); font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.author__bio { font-size: 13px; color: var(--text-muted); }

/* Prose styling for long content */
.prose h2 { font-family: var(--display); font-size: clamp(36px, 4vw, 56px); text-transform: uppercase; letter-spacing: 0.02em; margin: 56px 0 24px; line-height: 1; }
.prose h2 .yellow { color: var(--yellow); }
.prose h3 { font-family: var(--display); font-size: 28px; text-transform: uppercase; letter-spacing: 0.02em; margin: 40px 0 16px; }
.prose p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 18px; max-width: 760px; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 20px 24px; color: var(--text-muted); max-width: 760px; }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .games { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .nav, .header__actions .btn--ghost { display: none; }
  .hero, .page-hero { padding: 56px 0 56px; }
  .hero__inner, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .hero__corner { display: none; }
  .hero__trust { flex-wrap: wrap; }
  .hero__trust span { border-right: none; border-bottom: 1px solid var(--border); }
  .section { padding: 64px 0; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .usp, .cats, .steps, .bonus-list, .app-download, .proscons { grid-template-columns: 1fr 1fr; }
  .usp__item, .step, .proscons__col { border-right: none; border-bottom: 1px solid var(--border); }
  .usp__item:nth-child(odd), .step:nth-child(odd) { border-right: 1px solid var(--border); }
  .steps, .app-download, .bonus-list { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: none; }
  .games { grid-template-columns: repeat(2, 1fr); }
  .bonus { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .bonus::before { font-size: 240px; right: -10px; bottom: -50px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .mobile-tabs { display: block; }
  body { padding-bottom: 70px; }
  .ticker__label { display: none; }
  .ticker__track { padding-left: 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .criterion { grid-template-columns: 1fr; gap: 12px; }
  .criterion__score, .criterion__score-label { text-align: left; }
}
@media (max-width: 480px) {
  .usp, .cats { grid-template-columns: 1fr; }
  .usp__item, .step { border-right: none !important; }
  .container { padding: 0 18px; }
  .hero h1 { font-size: 64px; }
  .page-hero h1 { font-size: 52px; }
  .cta-strip__title { font-size: 48px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
}


/* =========== REAL LOGO =========== */
.logo__svg { height: 32px; width: auto; display: block; }
@media (max-width: 768px) { .logo__svg { height: 26px; } }

/* =========== REAL IMAGE BANNERS =========== */
.hero-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.banner-block { position: relative; z-index: 2; margin: 32px 0; border: 1px solid var(--border); overflow: hidden; }
.banner-block img { width: 100%; height: auto; display: block; }
.banner-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; position: relative; z-index: 2; }
.banner-pair img { width: 100%; height: auto; display: block; border: 1px solid var(--border); }
@media (max-width: 768px) { .banner-pair { grid-template-columns: 1fr; } }

/* Real screenshots for app/login/register */
.screenshot-frame { background: var(--black-2); border: 1px solid var(--border-strong); padding: 4px; margin: 24px 0; position: relative; z-index: 2; }
.screenshot-frame img { width: 100%; height: auto; display: block; }
.screenshot-caption { font-family: var(--mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; padding: 12px 8px 6px; }

/* Bonus tier grid (with images) */
.bonus-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 32px 0; }
.bonus-tier { background: var(--black-2); border: 1px solid var(--border); padding: 24px; text-align: center; position: relative; transition: all 0.2s; }
.bonus-tier:hover { border-color: var(--yellow); transform: translateY(-2px); }
.bonus-tier__deposit { font-family: var(--mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.bonus-tier__amount { font-family: var(--display); font-size: 36px; color: var(--yellow); line-height: 1; letter-spacing: 0.02em; margin-bottom: 14px; }
.bonus-tier__meta { font-family: var(--mono); font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.bonus-tier__meta div { padding: 6px 0; border-top: 1px dashed var(--border); }
.bonus-tier__meta div:first-child { border-top: none; }
.bonus-tier__meta strong { color: var(--yellow); }
@media (max-width: 768px) { .bonus-tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .bonus-tiers { grid-template-columns: 1fr; } }


/* =========== SEO CONTENT (longread) =========== */
.seo-content { padding: 80px 0 40px; background: var(--black); position: relative; z-index: 2; border-top: 1px solid var(--border); }
.seo-content__wrap { max-width: 880px; margin: 0 auto; }
.seo-content__eyebrow { font-family: var(--mono); font-size: 11px; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 18px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.seo-content__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--yellow); }
.seo-content h2 { font-family: var(--display); font-size: clamp(32px, 4vw, 48px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; margin: 48px 0 18px; }
.seo-content h2:first-of-type { margin-top: 0; }
.seo-content h2 .yellow { color: var(--yellow); }
.seo-content h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; margin: 36px 0 14px; color: var(--text); }
.seo-content p { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin-bottom: 18px; }
.seo-content p strong { color: var(--text); font-weight: 600; }
.seo-content ul, .seo-content ol { margin: 0 0 22px 24px; color: var(--text-muted); }
.seo-content li { margin-bottom: 10px; line-height: 1.7; }
.seo-content li strong { color: var(--text); }
.seo-content a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.seo-content table { width: 100%; border-collapse: collapse; margin: 24px 0; border: 1px solid var(--border); }
.seo-content table th { background: var(--black-2); padding: 14px 18px; text-align: left; font-family: var(--mono); font-size: 11px; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; border-bottom: 1px solid var(--border); }
.seo-content table td { padding: 14px 18px; border-bottom: 1px dashed var(--border); color: var(--text-muted); font-size: 14px; }
.seo-content table tr:last-child td { border-bottom: none; }
.seo-content blockquote { border-left: 3px solid var(--yellow); padding: 12px 0 12px 24px; margin: 24px 0; color: var(--text); font-size: 17px; font-style: italic; }


/* ============================================
   PROSE COMPONENTS — графічні блоки для SEO-тексту
   ============================================ */

/* Stat-grid: великі факти-цифри */
.seo-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin: 32px 0; }
.seo-stat { background: var(--black-2); padding: 28px 20px; text-align: center; }
.seo-stat__num { font-family: var(--display); font-size: 44px; color: var(--yellow); line-height: 1; margin-bottom: 8px; letter-spacing: 0.02em; }
.seo-stat__label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); }
@media (max-width: 768px) { .seo-stats { grid-template-columns: 1fr 1fr; } }

/* Callout blocks — інфо / попередження / підказки */
.callout { position: relative; padding: 22px 28px 22px 64px; margin: 28px 0; background: var(--black-2); border-left: 4px solid var(--yellow); }
.callout::before { content: '◢'; position: absolute; left: 24px; top: 22px; color: var(--yellow); font-size: 18px; font-weight: 700; }
.callout--warn { border-left-color: var(--warn); }
.callout--warn::before { color: var(--warn); content: '!'; font-family: var(--display); font-size: 26px; line-height: 1; }
.callout--tip { border-left-color: var(--green); }
.callout--tip::before { color: var(--green); content: '✓'; font-size: 22px; }
.callout--purple { border-left-color: var(--purple); }
.callout--purple::before { color: var(--purple-hover); content: '◆'; }
.callout__title { font-family: var(--display); font-size: 20px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; line-height: 1.1; }
.callout p { margin-bottom: 0; }
.callout p + p { margin-top: 10px; }

/* Step-cards (нумеровані кроки) */
.step-cards { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 28px 0; counter-reset: stp; }
.step-card { background: var(--black-2); border: 1px solid var(--border); padding: 22px 24px 22px 80px; position: relative; counter-increment: stp; transition: border-color 0.2s; }
.step-card:hover { border-color: var(--border-strong); }
.step-card::before { content: counter(stp, decimal-leading-zero); position: absolute; left: 20px; top: 18px; font-family: var(--display); font-size: 36px; color: var(--yellow); line-height: 1; letter-spacing: 0.02em; }
.step-card__title { font-family: var(--display); font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 6px; line-height: 1.1; }
.step-card p { margin: 0; font-size: 14px; }

/* Compare grid (порівняння — переваги/недоліки) */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.compare-col { background: var(--black-2); border: 1px solid var(--border); padding: 24px 26px; }
.compare-col--win { border-color: rgba(74, 222, 128, 0.4); }
.compare-col--lose { border-color: rgba(255, 107, 53, 0.4); }
.compare-col__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.compare-col--win .compare-col__label { color: var(--green); }
.compare-col--win .compare-col__label::before { content: '+'; width: 18px; height: 18px; background: var(--green); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.compare-col--lose .compare-col__label { color: var(--warn); }
.compare-col--lose .compare-col__label::before { content: '−'; width: 18px; height: 18px; background: var(--warn); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-col li { padding: 10px 0; border-bottom: 1px dashed var(--border); color: var(--text); font-size: 14px; line-height: 1.5; }
.compare-col li:last-child { border-bottom: none; }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } }

/* Timeline */
.timeline { position: relative; padding: 0 0 0 36px; margin: 28px 0; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline__item { position: relative; padding-bottom: 28px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before { content: ''; position: absolute; left: -32px; top: 4px; width: 18px; height: 18px; border: 3px solid var(--black); background: var(--yellow); border-radius: 50%; box-sizing: border-box; }
.timeline__date { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--yellow); font-weight: 700; margin-bottom: 4px; }
.timeline__title { font-family: var(--display); font-size: 20px; text-transform: uppercase; margin-bottom: 6px; line-height: 1.1; }
.timeline__desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* Code block */
.code-block { background: var(--black-3); border: 1px solid var(--border-strong); border-left: 4px solid var(--yellow); padding: 18px 22px; font-family: var(--mono); font-size: 13px; color: var(--yellow); margin: 22px 0; overflow-x: auto; line-height: 1.6; }
.code-block__lang { display: block; color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px; font-weight: 700; }
.code-block code { color: var(--yellow); word-break: break-all; }

/* Features grid (іконка + заголовок + опис) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 28px 0; }
.feature-card { background: var(--black-2); border: 1px solid var(--border); padding: 22px 24px; transition: all 0.2s; }
.feature-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.feature-card__num { font-family: var(--display); font-size: 32px; color: var(--yellow); line-height: 1; margin-bottom: 14px; letter-spacing: 0.02em; }
.feature-card__icon { width: 40px; height: 40px; background: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-family: var(--display); font-size: 22px; color: var(--black); line-height: 1; }
.feature-card__title { font-family: var(--display); font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; line-height: 1.1; }
.feature-card__desc { color: var(--text-muted); font-size: 13px; margin: 0; line-height: 1.6; }

/* Review quote (відгуки гравців) */
.review-quote { background: var(--black-2); border: 1px solid var(--border); padding: 24px 28px; margin: 16px 0; position: relative; border-left: 4px solid var(--yellow); }
.review-quote__rating { font-family: var(--mono); font-size: 11px; color: var(--yellow); margin-bottom: 12px; letter-spacing: 0.12em; font-weight: 700; }
.review-quote__text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-quote__author { font-family: var(--mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; padding-top: 12px; border-top: 1px dashed var(--border); }
.review-quote__author strong { color: var(--yellow); font-weight: 700; }

/* Tip-list з галочкою */
.tip-list { list-style: none; padding: 0; margin: 22px 0; background: var(--black-2); border: 1px solid var(--border); padding: 4px 24px; }
.tip-list li { padding: 14px 0 14px 32px; position: relative; border-bottom: 1px dashed var(--border); color: var(--text); font-size: 14px; line-height: 1.6; }
.tip-list li:last-child { border-bottom: none; }
.tip-list li::before { content: '✓'; position: absolute; left: 0; top: 14px; color: var(--yellow); font-weight: 800; font-size: 16px; }

/* Бейджі і чіпси */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 22px 0; }
.chip { padding: 8px 14px; background: var(--black-2); border: 1px solid var(--border); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); font-weight: 700; }
.chip--yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.chip--purple { background: var(--purple); color: white; border-color: var(--purple); }
.chip--ghost { background: transparent; }

/* VIP-progress: рівні з прогрес-баром */
.vip-levels { display: flex; flex-direction: column; gap: 8px; margin: 28px 0; }
.vip-level { background: var(--black-2); border: 1px solid var(--border); padding: 18px 24px; display: grid; grid-template-columns: 130px 1fr 100px 120px; gap: 20px; align-items: center; transition: all 0.2s; }
.vip-level:hover { border-color: var(--border-strong); }
.vip-level--platinum { border-color: var(--yellow); }
.vip-level__name { font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; }
.vip-level--platinum .vip-level__name { color: var(--yellow); }
.vip-level__turn { font-family: var(--mono); font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }
.vip-level__turn strong { color: var(--text); }
.vip-level__bar { height: 6px; background: var(--black-3); position: relative; overflow: hidden; }
.vip-level__bar-fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--yellow); }
.vip-level__back { font-family: var(--display); font-size: 32px; color: var(--yellow); text-align: right; letter-spacing: 0.02em; line-height: 1; }
@media (max-width: 768px) { .vip-level { grid-template-columns: 1fr 1fr; } .vip-level__bar { grid-column: 1 / 3; } }

/* Fact-card (виноска з фактом) */
.fact-card { background: var(--black-2); border: 1px solid var(--border-yellow); padding: 28px; margin: 28px 0; }
.fact-card__head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; gap: 16px; flex-wrap: wrap; }
.fact-card__title { font-family: var(--display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; }
.fact-card__tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--yellow); font-weight: 700; padding: 4px 10px; border: 1px solid var(--border-yellow); }
.fact-card p { margin-bottom: 8px; font-size: 14px; }
.fact-card p:last-child { margin-bottom: 0; }
.fact-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 24px; font-size: 14px; }
.fact-card dt { font-family: var(--mono); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; padding-top: 2px; }
.fact-card dd { color: var(--text); }
.fact-card dd strong { color: var(--yellow); }

/* Comparison side-by-side */
.split-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.split-info__col { background: var(--black-2); border: 1px solid var(--border); padding: 22px 26px; }
.split-info__col-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--yellow); font-weight: 700; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.split-info__col h4 { font-family: var(--display); font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; margin: 14px 0 8px; line-height: 1.1; }
.split-info__col p { font-size: 14px; margin: 0 0 10px; }
.split-info__col ul { font-size: 13px; padding-left: 18px; margin: 8px 0; }
@media (max-width: 768px) { .split-info { grid-template-columns: 1fr; } }

/* SEO-content надбудови */
.seo-content .prose-section { margin: 56px 0; padding-top: 56px; border-top: 1px solid var(--border); }
.seo-content .prose-section:first-of-type { padding-top: 0; border-top: none; }
.seo-content .lead { font-size: 18px; line-height: 1.65; color: var(--text); margin-bottom: 28px; padding: 20px 24px; background: var(--black-2); border-left: 3px solid var(--yellow); }
.seo-content .lead strong { color: var(--yellow); }

/* Інтрактивна таблиця провайдерів-логотипів */
.providers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; margin: 24px 0; }
.provider-card { background: var(--black-2); border: 1px solid var(--border); padding: 18px 20px; transition: all 0.2s; }
.provider-card:hover { border-color: var(--yellow); }
.provider-card__name { font-family: var(--display); font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; line-height: 1.1; }
.provider-card__games { font-family: var(--mono); font-size: 10px; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; font-weight: 700; }
.provider-card__desc { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }


/* ============================================
   STICKY CTA — плаваюча кнопка внизу екрану
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid var(--black);
  box-shadow: 6px 6px 0 var(--black), 0 12px 40px rgba(232, 255, 0, 0.4);
  transition: all 0.2s;
  white-space: nowrap;
  animation: stickyPulse 2.5s ease-in-out infinite;
}
.sticky-cta:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 6px 6px 0 var(--black), 0 16px 50px rgba(232, 255, 0, 0.6);
}
.sticky-cta__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: var(--purple);
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.sticky-cta__bonus {
  background: var(--purple);
  color: white;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 4px;
}

@keyframes stickyPulse {
  0%, 100% { box-shadow: 6px 6px 0 var(--black), 0 12px 40px rgba(232, 255, 0, 0.4); }
  50% { box-shadow: 6px 6px 0 var(--black), 0 16px 60px rgba(232, 255, 0, 0.8); }
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 80px; /* щоб не перекривала мобільну нав */
    padding: 14px 24px;
    font-size: 15px;
    gap: 10px;
  }
  .sticky-cta__icon { width: 24px; height: 24px; font-size: 16px; }
  .sticky-cta__bonus { padding: 3px 8px; font-size: 10px; }
}

/* Lang switcher */
.lang-switch { display: flex; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.lang-switch a {
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  background: var(--black-2);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.15s;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.is-active { background: var(--yellow); color: var(--black); }
@media (max-width: 768px) {
  .lang-switch a { padding: 5px 9px; font-size: 10px; }
}
