/* ============================================
   TODOPARATUECOMMERCE — SILVER IVORY LUXURY
   ============================================ */

/* — Custom Properties — */
:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-alt: #eef2f6;
  --border: #d6dde6;
  --accent: #5f6b7a;
  --accent-light: #8b97a8;
  --accent-dim: #47515d;
  --silver: #cfd6df;
  --silver-light: #f7f9fc;
  --silver-dim: #aab4c2;
  --gold: #d4a445;
  --gold-light: #f0cc7a;
  --gold-dim: #a87924;
  --text: #1f252c;
  --muted: #66707d;
  --logo-bg: #1e2530;
  --card-bg: #f1f3f6;
  --radius-lg: 16px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow-xs: 0 1px 4px rgba(31,37,44,0.04);
  --shadow: 0 2px 12px rgba(31,37,44,0.06);
  --shadow-md: 0 4px 20px rgba(31,37,44,0.08);
  --shadow-lg: 0 8px 32px rgba(31,37,44,0.10);
  --transition: 0.25s ease;
  --container: 1140px;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* — Reset — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dim); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* — Layout — */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.narrow-wrap { max-width: 820px; }

/* — Typography — */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 0.85rem; margin-top: 0.5rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.65rem; margin-top: 1.5rem; }
h4 { font-size: 1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 0.9rem; }

/* — Header — */
.site-hdr {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}
.hdr-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
  white-space: nowrap;
  text-decoration: none;
}
.site-logo strong { color: var(--gold-dim); }
.site-logo img { width: 32px; height: 32px; flex-shrink: 0; }

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.main-nav a {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-dim);
  border-bottom-color: var(--gold);
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* — Breadcrumbs — */
.crumbs {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
}
.crumbs ol { display: flex; gap: 0.4rem; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; }
.crumbs li::after { content: " / "; margin-left: 0.4rem; color: var(--silver-dim); }
.crumbs li:last-child::after { display: none; }
.crumbs a { color: var(--gold-dim); }
.crumbs span { color: var(--accent); }

/* — Sections — */
.section-base {
  padding: 3rem 0;
  background: var(--bg);
}
.section-alt {
  padding: 3rem 0;
  background: var(--surface-alt);
}
.hero-block {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-lead {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* — Buttons — */
.btn-gold {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.btn-gold:hover {
  box-shadow: 0 8px 28px rgba(212,164,69,0.22);
  transform: translateY(-1px);
  color: #fff;
}
.btn-sm {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: box-shadow var(--transition);
  white-space: nowrap;
}
.btn-sm:hover {
  box-shadow: 0 4px 16px rgba(95,107,122,0.18);
  color: #fff;
}

/* — Pill Badge — */
.pill-badge {
  display: inline-block;
  background: rgba(212,164,69,0.10);
  color: var(--gold-dim);
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* — Showcase — */
.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.showcase-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 130px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.showcase-row:hover { box-shadow: var(--shadow-md); }

.pos-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.showcase-brand {
  background: var(--logo-bg);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.15);
  min-height: 52px;
}
.showcase-brand img { max-height: 34px; width: auto; }
.showcase-info { min-width: 0; }
.bonus-name {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.bonus-val {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-dim);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.showcase-info p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* — Data Tables — */
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 1.25rem; }
.data-tbl {
  min-width: 600px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.data-tbl thead {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
}
.data-tbl th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.data-tbl td {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-tbl tbody tr:nth-child(even) { background: var(--surface-alt); }
.data-tbl tbody tr:nth-child(odd) { background: var(--surface); }
.data-tbl tbody tr:last-child td { border-bottom: none; }

/* — Review Cards — */
.review-entry {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 2rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.review-entry:hover { box-shadow: var(--shadow-md); }
.review-pos {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(212,164,69,0.3);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--silver-light);
}
.review-logo {
  background: var(--logo-bg);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.15);
  flex-shrink: 0;
  min-width: 120px;
  min-height: 50px;
}
.review-logo img { max-height: 36px; width: auto; }
.review-head h3 { margin: 0; font-size: clamp(1.05rem, 2.5vw, 1.3rem); }
.review-body { padding: 1.5rem; }

/* Review Bonus Highlight */
.review-bonus {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: rgba(212,164,69,0.07);
  border: 1px solid rgba(212,164,69,0.18);
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}
.bonus-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.review-bonus strong {
  font-size: 0.92rem;
  color: var(--gold-dim);
}

/* Pros / Cons */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
.pros-box, .cons-box {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.pros-box { background: rgba(76,175,80,0.04); border-color: rgba(76,175,80,0.2); }
.cons-box { background: rgba(244,67,54,0.04); border-color: rgba(244,67,54,0.2); }
.pros-box h4 { color: #388e3c; font-size: 0.88rem; }
.cons-box h4 { color: #d32f2f; font-size: 0.88rem; }
.pros-box ul, .cons-box ul { padding-left: 0; }
.pros-box li, .cons-box li {
  font-size: 0.86rem;
  padding: 0.25rem 0;
  padding-left: 0.75rem;
  position: relative;
  color: var(--text);
  line-height: 1.5;
}
.pros-box li::before { content: "✓ "; color: #388e3c; font-weight: 700; }
.cons-box li::before { content: "✗ "; color: #d32f2f; font-weight: 700; }

/* Specs Table */
.specs-tbl {
  margin: 1.25rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.specs-tbl tr:nth-child(even) { background: var(--surface-alt); }
.specs-tbl td {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.specs-tbl tr:last-child td { border-bottom: none; }
.specs-tbl td:first-child {
  font-weight: 600;
  color: var(--accent);
  width: 130px;
  white-space: nowrap;
}

/* Review Extra */
.review-extra {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
}
.review-extra p { margin: 0; font-size: 0.88rem; color: var(--muted); }
.review-body > .btn-gold { margin: 1rem 0; }

/* — Criteria Cards — */
.criteria-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.criteria-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.criteria-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.criteria-card strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; }
.criteria-card p { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* — Bonus Type Cards — */
.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.bonus-type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.bt-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.bonus-type-card strong { display: block; margin-bottom: 0.3rem; font-size: 0.95rem; }
.bonus-type-card p { margin: 0; font-size: 0.85rem; color: var(--gold-dim); font-weight: 600; }

/* — Game Category Cards — */
.game-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.game-cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.game-cat-card:hover { box-shadow: var(--shadow); }
.gc-icon { font-size: 1.6rem; display: block; margin-bottom: 0.4rem; }
.game-cat-card strong { display: block; font-size: 0.88rem; margin-bottom: 0.3rem; }
.rtp-pill {
  display: inline-block;
  background: rgba(212,164,69,0.10);
  color: var(--gold-dim);
  padding: 0.12rem 0.55rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.game-cat-card p { margin: 0; font-size: 0.78rem; color: var(--muted); }

/* — Steps — */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xs);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.step-card strong { display: block; margin-bottom: 0.25rem; }
.step-card p { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* — Payment Details — */
.pay-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.pay-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
}
.pay-detail h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.pay-detail p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.pay-icon { font-size: 1.15rem; }

/* — Mobile Features — */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.mf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.mf-card span { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.mf-card strong { display: block; margin-bottom: 0.25rem; font-size: 0.9rem; }
.mf-card p { margin: 0; font-size: 0.8rem; color: var(--muted); }

/* — Trust Badges — */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-xs);
}
.trust-badge span { font-size: 1.2rem; }
.trust-badge strong { font-size: 0.85rem; }

/* — Verdict Box — */
.verdict-box {
  background: linear-gradient(135deg, rgba(212,164,69,0.08), rgba(212,164,69,0.03));
  border: 1px solid rgba(212,164,69,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}
.verdict-box h3 {
  color: var(--gold-dim);
  margin-top: 0;
}

/* — FAQ — */
.faq-list { margin-top: 1rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  color: var(--text);
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--gold-dim); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}
.faq-answer p { margin: 0; }

/* — Footer — */
.site-ftr {
  background: var(--text);
  color: var(--silver);
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
}
.ftr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ftr-title {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.ftr-col ul li { margin-bottom: 0.4rem; }
.ftr-col a {
  color: var(--silver-dim);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.ftr-col a:hover { color: var(--gold-light); }
.ftr-disclaimer {
  font-size: 0.82rem;
  color: var(--silver-dim);
  line-height: 1.55;
}
.ftr-bottom {
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--silver-dim);
}
.ftr-bottom p { margin-bottom: 0.3rem; }

/* — Scroll Top Button — */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,164,69,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, box-shadow var(--transition);
  z-index: 90;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { box-shadow: 0 6px 24px rgba(212,164,69,0.4); }

/* — Page Content (subpages) — */
.page-content { min-height: 60vh; }
.page-content h2 { margin-top: 2rem; }
.page-content ul, .page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* — Author Profile — */
.author-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.author-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  object-fit: cover;
}
.author-role {
  color: var(--gold-dim);
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

/* — Compact Table — */
.compact-tbl td, .compact-tbl th { font-size: 0.82rem; padding: 0.55rem 0.75rem; }

/* ============================
   RESPONSIVE DESIGN
   ============================ */

@media (max-width: 1023px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 105;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.35s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0.5rem; }
  .main-nav a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .burger-btn { display: flex; }
}

@media (max-width: 767px) {
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
    padding-top: 3rem;
    text-align: center;
  }
  .showcase-row .pos-badge {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .showcase-brand { margin: 0 auto; max-width: 160px; }
  .showcase-row .btn-gold { width: 100%; }

  .review-head {
    flex-direction: column;
    text-align: center;
    padding: 3.5rem 1rem 1rem;
  }
  .review-body { padding: 1rem; }
  .review-grid { grid-template-columns: 1fr; }

  .criteria-cards { grid-template-columns: repeat(2, 1fr); }
  .bonus-types-grid { grid-template-columns: 1fr 1fr; }
  .game-cats { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .pay-details-grid { grid-template-columns: 1fr; }
  .mobile-features { grid-template-columns: 1fr 1fr; }

  .trust-badges { justify-content: center; }

  .hero-block { padding: 2.5rem 0 2rem; }
  .section-base, .section-alt { padding: 2rem 0; }

  .author-profile {
    flex-direction: column;
    text-align: center;
  }
  .author-avatar { width: 100px; height: 100px; }

  .data-tbl { min-width: 520px; }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
}

@media (max-width: 440px) {
  .criteria-cards,
  .bonus-types-grid,
  .game-cats,
  .steps-row,
  .mobile-features { grid-template-columns: 1fr; }

  .hdr-wrap { padding: 0 0.75rem; }
  .wrap { padding: 0 0.85rem; }
  .site-logo span { font-size: 0.92rem; }
}