@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0d1017;
  --surface: #141927;
  --surface2: #1a2240;
  --surface3: #1e2847;
  --border: #1e2a45;
  --border2: #253055;
  --accent: #3bff7e;
  --accent-hover: #00d26a;
  --accent-dim: rgba(59,255,126,0.12);
  --text: #ffffff;
  --text-muted: #7a8aa8;
  --text-dim: #4a5a78;
  --radius: 8px;
  --radius-lg: 12px;
  --header-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

main { flex: 1; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── BUTTONS ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #051a0c;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  border: 1.5px solid var(--border2);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg {
  padding: 13px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

.btn-xl {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: var(--radius);
}

/* ── HEADER ───────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 34px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.header-nav a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text);
  background: var(--surface2);
}

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

.header-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--surface2);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.header-search-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color .2s;
}
.header-search-btn:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--surface2);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  z-index: 998;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: calc(var(--header-h) + 16px) 20px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--text); background: var(--surface2); }

.mobile-menu .btn {
  margin-top: 12px;
  width: 100%;
}

/* ── HERO ─────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 16px 0;
}

.hero-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,16,23,.92) 0%, rgba(13,16,23,.5) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 32px 40px;
}

.hero-content {
  max-width: 520px;
}

.hero-provider {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-title span { color: var(--accent); }

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── CATEGORIES ───────────────────────────────────────── */

.categories {
  padding: 20px 0 8px;
}

.categories-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.categories-list::-webkit-scrollbar { display: none; }

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
  min-width: 80px;
  text-align: center;
}
.cat-item:hover {
  background: var(--surface2);
  border-color: var(--border2);
  color: var(--text);
}
.cat-item svg, .cat-item .cat-icon {
  font-size: 22px;
  line-height: 1;
}

/* ── PROVIDERS ────────────────────────────────────────── */

.providers-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.providers-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.providers-inner::-webkit-scrollbar { display: none; }

.provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.provider-chip:hover { background: var(--surface3); color: var(--text); }
.provider-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── SECTION HEADER ───────────────────────────────────── */

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  margin-top: 24px;
}

.section-title {
  font-size: 17px;
  font-weight: 700;
}

.section-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.section-more:hover { color: var(--accent); }

/* ── GAME GRID ────────────────────────────────────────── */

.game-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  overflow-x: auto;
}

.game-grid-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.game-grid-scroll::-webkit-scrollbar { display: none; }

.game-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
  flex-shrink: 0;
  width: 140px;
}
.game-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.game-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface2);
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.game-card:hover .game-card-img img { transform: scale(1.05); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,16,23,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #051a0c;
}

.rtp-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,.75);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.game-card-info {
  padding: 8px 10px;
}

.game-card-name {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.game-card-provider {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── FILTER TAGS ──────────────────────────────────────── */

.filter-tags {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
}
.filter-tags::-webkit-scrollbar { display: none; }

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.filter-tag:hover, .filter-tag.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.filter-tag .tag-icon { font-size: 14px; }

/* ── PAGE HERO ────────────────────────────────────────── */

.page-hero {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-bottom: 1px solid var(--border);
  padding: 52px 0 48px;
  text-align: center;
}

.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero h1 span { color: var(--accent); }

.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ── BONUS HERO ───────────────────────────────────────── */

.bonus-hero {
  background: linear-gradient(135deg, #0d1530 0%, #1a1040 50%, #0d1017 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59,255,126,.08) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-amount {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-label {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.bonus-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
}

/* ── FEATURES GRID ────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 32px 0;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: var(--border2); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── STEPS ────────────────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px 0 32px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #051a0c;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── BONUS TIERS ──────────────────────────────────────── */

.bonus-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 0 28px;
}

.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  position: relative;
  transition: border-color .2s;
}
.tier-card:first-child {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(59,255,126,.05) 100%);
}

.tier-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.tier-pct {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.tier-max {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.tier-fs {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── GAME CATEGORIES ──────────────────────────────────── */

.game-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 0 24px;
}

.game-cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.game-cat-card:hover {
  background: var(--surface2);
  border-color: var(--border2);
  transform: translateY(-2px);
}

.game-cat-icon {
  font-size: 36px;
  line-height: 1;
}

.game-cat-name {
  font-size: 15px;
  font-weight: 600;
}

.game-cat-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── TABLES ───────────────────────────────────────────── */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 16px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

thead th {
  background: var(--surface2);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr:hover td { background: var(--surface2); }

td.num { text-align: right; font-weight: 600; }
td.accent { color: var(--accent); font-weight: 700; }

/* ── SEO CONTENT BLOCK ────────────────────────────────── */

.seo-block {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 0;
}

.seo-block .container {
  max-width: 860px;
}

.seo-block h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.seo-block h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.seo-block h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
}

.seo-block p {
  font-size: 15px;
  color: #b0bdd4;
  line-height: 1.75;
  margin-bottom: 16px;
}

.seo-block strong { color: var(--text); font-weight: 600; }

.seo-block ul,
.seo-block ol {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-block ul li,
.seo-block ol li {
  font-size: 14px;
  color: #b0bdd4;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.seo-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.seo-block ol {
  counter-reset: seo-counter;
}

.seo-block ol li {
  counter-increment: seo-counter;
}

.seo-block ol li::before {
  content: counter(seo-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.seo-block .table-wrap {
  margin: 20px 0 24px;
}

.seo-faq {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.seo-cta-block {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--surface2) 0%, rgba(59,255,126,.06) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
}

.seo-cta-block p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
}

.seo-cta-block .btn {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

/* ── STATS BAR ────────────────────────────────────────── */

.stats-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  gap: 0;
  margin: 24px 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── WARNING BANNER ───────────────────────────────────── */

.age-warning {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* ── FOOTER ───────────────────────────────────────────── */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-brand .footer-logo img { height: 32px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-nav-col h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-nav-col ul li a:hover { color: var(--text); }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.payment-badge {
  padding: 5px 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #e53935;
  color: #e53935;
  font-size: 11px;
  font-weight: 700;
  margin-top: 14px;
}

.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ── RESPONSIVE ───────────────────────────────────────── */

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

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-tiers { grid-template-columns: repeat(2, 1fr); }
  .game-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; flex: 0 0 50%; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 640px) {
  .header-actions .btn {
    padding: 7px 12px;
    font-size: 12px;
  }

  .hero-banner { height: 180px; }
  .hero-overlay { padding: 20px; }
  .hero-title { font-size: 20px; }
  .hero-sub { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .bonus-tiers { grid-template-columns: repeat(2, 1fr); }
  .game-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 0 0 100%; }

  .page-hero { padding: 36px 0 32px; }
  .bonus-hero { padding: 40px 0 36px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .header-lang { display: none; }
  .header-search-btn { display: none; }
}
