:root {
  --bg: #0f1117;
  --bg-card: #181c26;
  --bg-soft: #1e2433;
  --text: #eef0f4;
  --muted: #9aa3b2;
  --dim: #6b7280;
  --accent: #e53935;
  --accent-2: #ff6b35;
  --border: #2d3548;
  --green: #22c55e;
  --radius: 10px;
  --font: "Inter", system-ui, sans-serif;
  --max: 820px;
  --sidebar: 240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.content-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 0 48px;
}
@media (min-width: 1024px) {
  .content-wrap {
    grid-template-columns: var(--sidebar) 1fr;
    align-items: start;
  }
  .toc-sidebar { position: sticky; top: 96px; }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(15, 17, 23, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.site-header .container {
  max-width: 1320px;
  padding-left: 28px;
  padding-right: 28px;
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px;
}
.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  padding: 8px 0;
}
.logo-img {
  display: block;
  height: 44px;
  width: auto;
}
@media (min-width: 768px) {
  .header-row { min-height: 84px; }
  .logo-img { height: 52px; }
  .site-header .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.header-cta {
  display: flex; align-items: center; gap: 16px;
  margin-left: auto; flex-shrink: 0;
}
@media (min-width: 768px) {
  .header-cta { gap: 20px; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; font-family: inherit; text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-play {
  background: var(--accent); color: #fff;
}
.btn-play:hover {
  background: #d32f2f; color: #fff;
}
.btn-header {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .btn-header {
    padding: 9px 14px;
    font-size: 12px;
  }
  .logo-img { height: 40px; }
  .site-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}

/* Language switcher dropdown */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}
.lang-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 8px; cursor: pointer;
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--text); font-size: 13px; font-weight: 600;
  font-family: inherit; user-select: none;
  transition: border-color 0.15s;
}
.lang-trigger:hover { border-color: var(--accent); }
.lang-trigger .lang-arrow {
  width: 10px; height: 10px; opacity: 0.5;
  transition: transform 0.2s;
}
.lang-switcher.open .lang-trigger { border-color: var(--accent); }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 210px; max-height: 360px; overflow-y: auto;
  background: #1a2035; border: 1px solid var(--border);
  border-radius: 12px; padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 1000;
}
.lang-switcher.open .lang-dropdown { display: block; }

.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px; cursor: pointer;
  color: var(--text); text-decoration: none; font-size: 14px;
  transition: background 0.12s;
}
.lang-option:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.lang-option.lang-active {
  background: #00c2a8; color: #fff;
}
.lang-option.lang-active:hover { background: #00a891; }
.lang-option.lang-disabled {
  opacity: 0.38; pointer-events: none; cursor: default;
}
.lang-flag { font-size: 18px; line-height: 1; flex-shrink: 0; }
.lang-name { font-weight: 500; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* Hero */
.hero {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--border);
}
.hero-layout {
  display: grid;
  gap: 20px;
  align-items: center;
}
.hero-badge {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--green); background: rgba(34, 197, 94, 0.12);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.12; margin: 0 0 14px; font-weight: 800;
}
.hero-lead {
  font-size: 17px; color: var(--muted); max-width: 640px; margin: 0 0 22px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-art-wrap {
  position: relative;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.hero-art {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
}
.hero-art-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  align-content: center;
  justify-items: center;
  gap: 12px;
  background:
    radial-gradient(80% 90% at 30% 20%, rgba(62, 76, 120, 0.24), rgba(0, 0, 0, 0) 70%),
    linear-gradient(160deg, #0c1018 0%, #101827 60%, #1a1323 100%);
}
.hero-art-fallback img {
  width: min(72%, 360px);
  opacity: 0.9;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
}
.hero-art-fallback p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero-art-wrap.is-missing .hero-art-fallback {
  display: grid;
}
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-pill {
  font-size: 12px; color: var(--muted);
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 999px;
}
.trust-pill strong { color: var(--text); }
@media (min-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 26px;
  }
}
@media (max-width: 979px) {
  .hero-art-wrap {
    max-width: 760px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 22px;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Aviator Demo game */
.demo-game { padding: 28px 0 8px; }
.demo-shell {
  background: #11131a;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  max-width: 980px;
  margin: 0 auto;
}

/* topbar */
.demo-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 4px 6px 12px; border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.demo-brand {
  font-size: 22px; font-weight: 800; font-style: italic;
  color: var(--accent); letter-spacing: -0.02em;
}
.demo-balance { margin-left: auto; font-size: 13px; color: var(--muted); }
.demo-balance strong { color: var(--green); font-size: 16px; }
.demo-real {
  background: #ffd400; color: #1a1200; font-weight: 800;
  font-size: 13px; padding: 8px 16px; border-radius: 8px;
  text-decoration: none; white-space: nowrap;
}
.demo-real:hover { background: #ffdf33; }

/* main layout */
.demo-main { display: flex; gap: 12px; align-items: stretch; }
.demo-stage { flex: 1; min-width: 0; display: flex; flex-direction: column; }

/* bets list */
.demo-bets {
  width: 270px; flex-shrink: 0;
  background: #0d0f15; border: 1px solid var(--border);
  border-radius: 10px; padding: 8px; display: flex; flex-direction: column;
}
.demo-bets-tabs { display: flex; gap: 4px; background: #060709; border-radius: 999px; padding: 3px; }
.demo-bets-tabs button {
  flex: 1; border: none; background: transparent; cursor: pointer;
  color: var(--muted); font-size: 12px; font-weight: 600;
  padding: 6px 4px; border-radius: 999px; font-family: inherit;
}
.demo-bets-tabs button.active { background: #2a2f3d; color: var(--text); }
.demo-bets-sub {
  display: flex; align-items: center; justify-content: space-between;
  margin: 10px 2px 4px; font-size: 12px; color: var(--muted);
}
.demo-bets-total { text-align: right; line-height: 1.1; }
.demo-bets-total span { color: var(--green); font-weight: 700; font-size: 14px; }
.demo-bets-total small { display: block; font-size: 9px; color: var(--dim); }
.demo-bets-bar { height: 4px; background: #060709; border-radius: 999px; overflow: hidden; margin: 0 2px 8px; }
.demo-bets-bar i { display: block; height: 100%; width: 0; background: var(--green); transition: width 0.3s; }
.demo-bets-head {
  display: grid; grid-template-columns: 1.4fr 0.9fr 0.7fr 0.9fr;
  gap: 4px; font-size: 10px; color: var(--dim); text-transform: uppercase;
  padding: 4px 6px; letter-spacing: 0.04em;
}
.demo-bets-list { overflow-y: auto; flex: 1 1 0; min-height: 0; max-height: none; display: flex; flex-direction: column; gap: 3px; }
.demo-bets-list::-webkit-scrollbar { width: 5px; }
.demo-bets-list::-webkit-scrollbar-thumb { background: #2a2f3d; border-radius: 999px; }
.bet-row {
  display: grid; grid-template-columns: 1.4fr 0.9fr 0.7fr 0.9fr;
  gap: 4px; align-items: center; font-size: 12px;
  padding: 6px; border-radius: 7px; background: #14171f;
}
.bet-row.win { background: rgba(34,197,94,0.10); border: 1px solid rgba(34,197,94,0.25); }
.bet-row .bp { display: flex; align-items: center; gap: 6px; min-width: 0; }
.bet-row .bp i {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #f0a500, #e30b35);
}
.bet-row .bp span { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bet-row .bamt { color: var(--text); }
.bet-row .bx { color: var(--dim); font-weight: 700; }
.bet-row.win .bx {
  color: #fff; background: #8b5cf6; border-radius: 999px;
  text-align: center; padding: 1px 0; font-size: 11px;
}
.bet-row .bwin { color: var(--dim); text-align: right; }
.bet-row.win .bwin { color: var(--green); font-weight: 700; }

/* history strip */
.demo-history { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; min-height: 24px; }
.demo-history span { font-size: 12px; font-weight: 700; padding: 2px 9px; border-radius: 999px; background: #14171f; }
.demo-history span.low { color: #1ba6f0; }
.demo-history span.mid { color: #9b5cf6; }
.demo-history span.high { color: #d6219f; }

/* canvas stage */
.demo-canvas-wrap {
  position: relative; border-radius: 14px; overflow: hidden;
  background: #0b0b10; aspect-ratio: 16 / 9; border: 2px solid #f0a500;
}
#demoCanvas { display: block; width: 100%; height: 100%; }
.demo-funmode {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 3;
  padding: 4px 26px 6px; font-size: 13px; font-weight: 800; letter-spacing: 0.12em;
  color: #1a1200; background: linear-gradient(180deg, #ffc62e, #f0a500);
  border-radius: 0 0 10px 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.demo-multiplier {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%, -50%);
  font-size: clamp(40px, 8vw, 72px); font-weight: 800; color: #fff;
  text-shadow: 0 3px 28px rgba(0,0,0,0.6); letter-spacing: -0.02em;
  pointer-events: none; z-index: 2;
}
.demo-multiplier.crashed { color: var(--accent); }
.demo-status {
  position: absolute; bottom: 12px; left: 0; right: 0; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.7); pointer-events: none; z-index: 2;
}

/* bet panels */
.demo-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.demo-panel { background: #0d0f15; border: 1px solid var(--border); border-radius: 10px; padding: 10px; }
.demo-panel-tabs {
  display: flex; gap: 4px; background: #060709; border-radius: 999px;
  padding: 3px; width: 70%; margin: 0 auto 10px;
}
.demo-panel-tabs button {
  flex: 1; border: none; background: transparent; cursor: pointer;
  color: var(--muted); font-size: 12px; font-weight: 600;
  padding: 5px 4px; border-radius: 999px; font-family: inherit;
}
.demo-panel-tabs button.active { background: #2a2f3d; color: var(--text); }
.demo-panel-body { display: flex; flex-direction: column; gap: 8px; }
.demo-bet-row { display: flex; align-items: center; gap: 6px; }
.demo-step {
  width: 34px; height: 38px; border-radius: 8px; background: var(--bg-soft);
  color: var(--text); border: 1px solid var(--border); font-size: 18px; cursor: pointer;
}
.demo-step:hover { background: var(--border); }
.demo-bet-input {
  flex: 1; width: 100%; height: 38px; text-align: center; background: var(--bg-soft);
  color: var(--text); border: 1px solid var(--border); border-radius: 8px;
  font-size: 16px; font-weight: 700; font-family: inherit;
}
.demo-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.demo-quick button {
  height: 30px; border-radius: 7px; background: var(--bg-soft); color: var(--muted);
  border: 1px solid var(--border); font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit;
}
.demo-quick button:hover { color: var(--text); background: var(--border); }
.demo-action {
  height: 52px; border: none; border-radius: 10px; cursor: pointer;
  font-size: 16px; font-weight: 800; font-family: inherit; line-height: 1.1;
  background: var(--green); color: #08130b; transition: background 0.15s, color 0.15s;
}
.demo-action.cashout { background: #ffb300; color: #1a1200; }
.demo-action.queued { background: var(--accent); color: #fff; }
.demo-action.disabled { background: var(--bg-soft); color: var(--dim); cursor: not-allowed; }
.demo-action small { display: block; font-size: 12px; font-weight: 600; opacity: 0.85; }

.demo-note { margin: 12px 0 4px; font-size: 12px; color: var(--dim); text-align: center; }

@media (max-width: 760px) {
  .demo-main { flex-direction: column; }
  .demo-bets { width: 100%; order: 2; }
  .demo-bets-list { flex: 0 0 auto; max-height: 220px; }
  .demo-stage { order: 1; }
}
@media (max-width: 460px) {
  .demo-panels { grid-template-columns: 1fr; }
}

/* TOC */
.toc-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}
.toc-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--dim); margin: 0 0 12px;
}
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-list li { margin-bottom: 6px; }
.toc-list a {
  font-size: 13px; color: var(--muted); display: block; padding: 4px 0;
  border-left: 2px solid transparent; padding-left: 10px;
}
.toc-list a:hover { color: var(--accent); border-left-color: var(--accent); }

/* Article sections */
.article section {
  margin-bottom: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.article section:last-child { border-bottom: none; }
.article h2 {
  font-size: 22px; font-weight: 700; margin: 0 0 16px;
  scroll-margin-top: 96px;
}
.article h3 {
  font-size: 17px; font-weight: 600; margin: 24px 0 10px;
}
.article p { color: var(--muted); margin: 0 0 14px; }
.article ul, .article ol { color: var(--muted); margin: 0 0 16px; padding-left: 22px; }
.article li { margin-bottom: 8px; }

.site-note {
  margin: 20px 0 18px;
  padding: 16px 18px 16px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(229, 57, 53, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.site-note p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}

.cta-inline {
  margin: 24px 0; padding: 20px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); text-align: center;
}
.cta-inline p { margin: 0 0 14px; font-size: 15px; color: var(--text); }

/* Feature grid (5 blocks - universal pattern) */
.feature-grid {
  display: grid; gap: 14px; margin-top: 16px;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
}
.feature-card .feat-icon {
  width: 46px; height: 46px;
  background: rgba(229, 57, 53, 0.1);
  border: 1px solid rgba(229, 57, 53, 0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-card .feat-icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 0 0 8px; font-size: 15px; }
.feature-card p { margin: 0; font-size: 14px; }

/* Compare table */
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0;
}
.compare-table th, .compare-table td {
  border: 1px solid var(--border); padding: 12px 14px; text-align: left;
}
.compare-table th { background: var(--bg-soft); color: var(--text); font-weight: 600; }
.compare-table td { color: var(--muted); }
.compare-table td:first-child { font-weight: 500; color: var(--text); width: 36%; }

/* Pros/cons columns */
.two-col { display: grid; gap: 16px; }
@media (min-width: 640px) { .two-col { grid-template-columns: 1fr 1fr; } }
.pros-box, .cons-box {
  padding: 18px; border-radius: var(--radius); border: 1px solid var(--border);
}
.pros-box { background: rgba(34, 197, 94, 0.06); }
.cons-box { background: rgba(229, 57, 53, 0.06); }
.pros-box h3, .cons-box h3 { margin-top: 0; font-size: 16px; }

/* Steps */
/* Float images with text wrap */
.float-img {
  float: right;
  width: 300px;
  max-width: 42%;
  margin: 0 0 20px 28px;
}
.float-img--mobile {
  width: 200px;
  max-width: 36%;
}
section::after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 600px) {
  .float-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
    display: block;
  }
}

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step; position: relative;
  padding: 0 0 20px 44px; color: var(--muted);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps li strong { color: var(--text); }

/* Casino cards */
.casino-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .casino-grid { grid-template-columns: 1fr 1fr; } }
.casino-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 18px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.casino-logo-wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.casino-logo {
  height: 44px; width: auto; max-width: 120px;
  border-radius: 6px; object-fit: contain;
}
.casino-logo--light {
  background: #f5f5f5; padding: 4px 8px;
}
.casino-rating { font-size: 13px; color: #fbbf24; white-space: nowrap; }
.casino-bonus { font-size: 13px; color: var(--muted); margin: 0; }
.casino-card .btn { width: 100%; margin-top: auto; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: var(--bg-card);
  border: none; color: var(--text); font-size: 15px; font-weight: 600;
  padding: 16px 18px; cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; gap: 12px;
}
.faq-q::after { content: "+"; color: var(--dim); font-size: 18px; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  display: none; padding: 0 18px 16px; font-size: 14px; color: var(--muted);
  background: var(--bg-card);
}
.faq-item.open .faq-a { display: block; }

/* Content mobile tuning (article only) */
@media (max-width: 1023px) {
  .container.content-wrap {
    display: block;
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .toc-sidebar {
    display: none;
  }

  .article {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .container.content-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .article section {
    margin-bottom: 26px;
    padding-bottom: 26px;
  }

  .article h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .article h3 {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 8px;
  }

  .article p {
    margin-bottom: 12px;
    overflow-wrap: anywhere;
  }

  .article ul,
  .article ol {
    padding-left: 18px;
    margin-bottom: 14px;
  }

  .article li {
    margin-bottom: 6px;
    overflow-wrap: anywhere;
  }

  .cta-inline {
    padding: 14px;
    margin: 16px 0;
  }

  .cta-inline p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .feature-card,
  .casino-card,
  .pros-box,
  .cons-box,
  .rg-block {
    padding: 14px;
  }

  .compare-table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 8px;
    white-space: nowrap;
  }

  .compare-table td:first-child {
    width: auto;
  }

  .steps li {
    padding: 0 0 14px 38px;
  }

  .steps li::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .faq-q {
    font-size: 14px;
    padding: 14px 14px;
  }

  .faq-a {
    font-size: 14px;
    padding: 0 14px 14px;
  }

  .cta-inline .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container.content-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .article h2 {
    font-size: 19px;
  }

  .article p,
  .article li {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0; font-size: 13px; color: var(--dim);
}
.footer-grid {
  display: grid; gap: 28px; margin-bottom: 28px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr; } }
.footer-grid h4 { color: var(--text); font-size: 14px; margin: 0 0 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--muted); font-size: 13px; }
.rg-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; margin-bottom: 24px;
}
.rg-block p { margin: 0 0 10px; line-height: 1.55; }

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .casino-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr 1fr; }
}
