/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1A4FDB;
  --blue-dark:  #1239B0;
  --blue-light: #EEF3FF;
  --gold:       #F4A000;
  --gold-light: #FEF3DC;
  --green:      #16A34A;
  --green-light:#DCFCE7;
  --bg:         #F4F6FB;
  --card:       #FFFFFF;
  --border:     #E2E8F0;
  --text:       #111827;
  --text-2:     #374151;
  --text-3:     #6B7280;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.07);
  --shadow:     0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --radius:     14px;
  --radius-sm:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header__bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.site-header__logo { grid-column: 1; }
.site-nav { grid-column: 2; justify-content: center; }
.site-header__right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.site-header__logo img { height: 38px; width: auto; }
.site-header__logo { display: flex; align-items: center; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--blue-light);
  color: var(--blue);
  text-decoration: none;
}
.header-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.header-cta:hover { background: var(--blue-dark) !important; }
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { background: var(--blue-light); color: var(--blue); text-decoration: none; }
.mobile-nav .header-cta { margin-top: 8px; display: block; text-align: center; padding: 12px 20px !important; }
.mobile-nav.is-open { display: flex; }

/* ===== HERO ===== */
.hero {
  background-color: #1a0838;
  background-image: url('assets/banners/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  padding: 60px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,8,50,.92) 0%, rgba(14,8,50,.72) 45%, rgba(14,8,50,.15) 100%);
  pointer-events: none;
}
.hero__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 700px;
}
.hero__subtitle { font-size: 17px; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 32px; }
.hero__cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1A1200 !important;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(244,160,0,.4);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(244,160,0,.5); text-decoration: none; }
.hero__note { font-size: 13px; color: rgba(255,255,255,.65); }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 32px;
}
.hero__stat { flex: 1 1 140px; }
.hero__stat-val { font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; }
.hero__stat-lbl { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ===== LAYOUT ===== */
.review-layout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.review-sidebar {
  flex: 0 0 300px;
  position: sticky;
  top: 82px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* --- Sidebar brand --- */
.sidebar-brand { padding: 24px; text-align: center; }
.sidebar-brand__logo { width: 160px; height: auto; margin: 0 auto 16px; }
.sidebar-brand__name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.sidebar-brand__sub { font-size: 13px; color: var(--text-3); margin-bottom: 16px; }
.stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 6px; }
.rating-val { font-size: 13px; color: var(--text-3); }
.sidebar-bonus {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.sidebar-bonus__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sidebar-bonus__val { font-size: 22px; font-weight: 800; color: var(--blue); line-height: 1.2; margin-bottom: 6px; }
.sidebar-bonus__note { font-size: 12px; color: var(--text-3); line-height: 1.5; }
.btn-primary {
  display: block;
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  transition: background .15s, transform .15s;
  margin: 0 24px 20px;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); text-decoration: none; }
.sidebar-facts { padding: 0 24px 20px; }
.sidebar-facts__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.fact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid #F3F4F6;
  gap: 8px;
}
.fact-row:last-child { border-bottom: none; }
.fact-row__key { color: var(--text-3); flex-shrink: 0; }
.fact-row__val { font-weight: 600; color: var(--text); text-align: right; }
.fact-row__val.green { color: var(--green); }
.rating-card { padding: 20px 24px; }
.rating-card__title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.rating-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rating-row__label { font-size: 13px; color: var(--text-2); }
.rating-row__right { display: flex; align-items: center; gap: 8px; }
.rating-bar { width: 80px; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.rating-bar__fill { height: 100%; background: var(--blue); border-radius: 3px; }
.rating-row__score { font-size: 13px; font-weight: 700; color: var(--text); }

/* ===== CONTENT ===== */
.review-content { flex: 1 1 0; min-width: 0; }
.section-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  overflow: hidden;
}
.section-card__head {
  padding: 22px 28px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.section-card__icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section-card__icon svg { color: var(--blue); }
.section-card__title { font-size: 20px; font-weight: 800; color: var(--text); }
.section-card__body {
  padding: 16px 28px 24px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.75;
}
.section-card__body p { margin-bottom: 14px; }
.section-card__body p:last-child { margin-bottom: 0; }
.section-cta { display: flex; justify-content: center; margin-top: 24px; }
.section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 50px;
  transition: background .15s, transform .15s;
}
.section-cta a:hover { background: var(--blue-dark); transform: translateY(-1px); text-decoration: none; }

/* ===== BONUS PACKAGE ===== */
.bonus-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.tab-btn.active { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.bonus-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bonus-table th {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
}
.bonus-table th:first-child { border-radius: 8px 0 0 0; }
.bonus-table th:last-child { border-radius: 0 8px 0 0; }
.bonus-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:nth-child(even) td { background: #F9FAFB; }
.bonus-table .percent { font-weight: 700; color: var(--blue); }
.bonus-table .fs { font-weight: 600; color: var(--green); }
.bonus-note {
  margin-top: 14px;
  background: #FEF9EC;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: #92400E;
  line-height: 1.6;
}

/* Promo grid */
.promo-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.promo-card {
  flex: 0 0 calc(33.333% - 10px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.promo-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.promo-card__body { padding: 12px; }
.promo-card__title { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4; }

/* Pros/cons */
.pros-cons { display: flex; gap: 16px; }
.pros-cons__col { flex: 1; }
.pros-cons__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.pros-cons__head.pros { color: var(--green); border-color: var(--green-light); }
.pros-cons__head.cons { color: #DC2626; border-color: #FEE2E2; }
.pros-cons__list { list-style: none; }
.pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid #F3F4F6;
  line-height: 1.5;
}
.pros-cons__list li:last-child { border-bottom: none; }
.pros-list li::before { content: ""; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-top: 7px; flex-shrink: 0; }
.cons-list li::before { content: ""; display: block; width: 6px; height: 6px; border-radius: 50%; background: #DC2626; margin-top: 7px; flex-shrink: 0; }

/* FAQ */
.faq-list { list-style: none; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q .chevron { flex-shrink: 0; transition: transform .3s; color: var(--text-3); }
.faq-item.open .faq-q { background: var(--blue-light); color: var(--blue); }
.faq-item.open .chevron { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  background: var(--blue-light);
}
.faq-item.open .faq-a { display: block; }

/* Games grid */
.games-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.game-card {
  flex: 0 0 calc(20% - 10px);
  text-decoration: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #F9FAFB;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.game-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.game-card__name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 8px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Providers */
.providers-grid { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.provider-card {
  flex: 0 0 calc(16.666% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  transition: border-color .15s, box-shadow .15s;
}
.provider-card:hover { border-color: var(--blue); box-shadow: 0 2px 8px rgba(26,79,219,.12); }
.provider-card__logo {
  width: 100%;
  max-width: 80px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .2s;
}
.provider-card:hover .provider-card__logo { filter: grayscale(0%); }

/* Payments */
.payment-grid { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  transition: border-color .15s;
}
.payment-card:hover { border-color: var(--blue); }
.payment-card img { height: 28px; width: auto; display: block; }

/* Cashback table */
.cashback-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cashback-table th {
  background: #1E3A8A;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.cashback-table th:first-child { border-radius: 8px 0 0 0; }
.cashback-table th:last-child { border-radius: 0 8px 0 0; }
.cashback-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.cashback-table tr:nth-child(even) td { background: #F9FAFB; }
.cashback-table tr:last-child td { border-bottom: none; }
.cashback-table .pct { font-weight: 700; color: var(--blue); }

/* Boost table */
.boost-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.boost-table th {
  background: #0F4C8A;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.boost-table th:first-child { border-radius: 8px 0 0 0; }
.boost-table th:last-child { border-radius: 0 8px 0 0; }
.boost-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.boost-table tr:nth-child(even) td { background: #F9FAFB; }
.boost-table .boost { font-weight: 700; color: var(--green); }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.step__text { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Info box */
.info-box {
  background: var(--blue-light);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: #1E3A8A;
  line-height: 1.65;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.info-box svg { flex-shrink: 0; margin-top: 2px; }

/* Subpage layout */
.page-layout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.page-sidebar {
  flex: 0 0 280px;
  position: sticky;
  top: 82px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-content { flex: 1 1 0; min-width: 0; }

/* TOC */
.toc-card { padding: 20px 22px; }
.toc-card__title { font-size: 12px; font-weight: 700; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 6px; }
.toc-list a {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color .15s;
}
.toc-list a::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.toc-list a:hover { color: var(--blue); text-decoration: none; }
.toc-list a:hover::before { background: var(--blue); }

/* Mini bonus */
.mini-bonus { padding: 18px 20px; text-align: center; }
.mini-bonus__tag {
  display: inline-block;
  background: var(--gold-light);
  color: #92400E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.mini-bonus__val { font-size: 20px; font-weight: 800; color: var(--blue); margin-bottom: 6px; line-height: 1.2; }
.mini-bonus__sub { font-size: 12px; color: var(--text-3); margin-bottom: 14px; }
.btn-sm {
  display: block;
  background: var(--blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 50px;
  text-align: center;
  transition: background .15s;
}
.btn-sm:hover { background: var(--blue-dark); text-decoration: none; }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, #1239B0 0%, #1A4FDB 100%);
  padding: 48px 20px;
  color: #fff;
}
.page-hero__inner { max-width: 1200px; margin: 0 auto; }
.page-hero__title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 10px; }
.page-hero__sub { font-size: 16px; color: rgba(255,255,255,.8); max-width: 520px; }

/* Breadcrumb */
.breadcrumb { background: var(--card); border-bottom: 1px solid var(--border); padding: 12px 20px; }
.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
}
.breadcrumb__inner a { color: var(--blue); }

/* Footer */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,.6);
  padding: 48px 20px 28px;
  margin-top: 60px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 36px; }
.footer-brand { flex: 1 1 220px; }
.footer-brand__logo { height: 36px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand__text { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col { flex: 1 1 160px; }
.footer-col__title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul a:hover { color: #fff; text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 20px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.footer-bottom p { font-size: 12px; line-height: 1.6; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.7; margin-top: 16px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .burger { display: flex; }
  .site-nav { display: none; }
  .site-header__right .header-cta { display: none; }
  .site-header__bar { grid-template-columns: 1fr auto; }
  .hero { padding: 40px 20px; background-position: center center; }
  .hero::before { background: linear-gradient(to bottom, rgba(14,8,50,.88) 0%, rgba(14,8,50,.75) 60%, rgba(14,8,50,.6) 100%); }
  .hero__stats { gap: 14px; }
  .hero__stat { flex: 1 1 120px; }
  .review-layout, .page-layout { flex-direction: column; }
  .review-sidebar, .page-sidebar { position: static; flex: none; width: 100%; }
  .sidebar-brand__logo { width: 120px; }
  .promo-card { flex: 0 0 calc(50% - 7px); }
  .game-card { flex: 0 0 calc(50% - 6px); }
  .provider-card { flex: 0 0 calc(33.333% - 8px); }
  .pros-cons { flex-direction: column; }
  .section-card__body { padding: 12px 18px 20px; }
  .section-card__head { padding: 18px 18px 0; }
  .footer-top { flex-direction: column; gap: 24px; }
  .bonus-tabs { flex-direction: column; }
  .cashback-table, .boost-table { font-size: 12px; }
  .cashback-table td, .cashback-table th,
  .boost-table td, .boost-table th { padding: 7px 10px; }
}

/* ===================== LEGAL PAGES ===================== */
.legal-page { padding: 48px 20px 80px; }
.legal-inner { max-width: 860px; margin: 0 auto; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.legal-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-section h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 16px 0 8px; }
.legal-section p { color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
.legal-section ul, .legal-section ol { padding-left: 20px; color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
.legal-section li { margin-bottom: 6px; }
.legal-section a { color: var(--primary); text-decoration: underline; }
.legal-section a:hover { color: var(--primary-dark, #1240b5); }
.legal-help-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.legal-help-card { flex: 1 1 220px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.legal-help-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin: 0 0 6px; }
.legal-help-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 8px; }
.legal-help-card a { font-size: 0.85rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.legal-warning { background: #fff8e1; border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 16px 20px; margin-bottom: 20px; }
.legal-warning p { color: #5a4000; margin: 0; font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 767px) {
  .legal-page { padding: 32px 16px 60px; }
  .legal-page h1 { font-size: 1.5rem; }
  .legal-section h2 { font-size: 1.05rem; }
}
