:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface2: #edf2f9;
  --border: #d7deea;
  --accent: #dc143c;
  --accent2: #b1122f;
  --text: #162033;
  --muted: #667085;
  --navy: #0b1829;
  --navy2: #152238;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(22,32,51,0.07);
  --shadow-lg: 0 8px 32px rgba(22,32,51,0.10);
  --transition: 0.25s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1160px;
  --max-narrow: 800px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent2); }
a:focus-visible, button:focus-visible, details summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}
ul, ol { list-style: none; }
.bound { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.narrow-content { max-width: var(--max-narrow); }

/* ===== HEADER ===== */
.site-hdr {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(22,32,51,0.04);
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo-link { display: flex; align-items: center; }
.logo-txt {
  font-size: 1.15rem; color: var(--text); letter-spacing: -0.02em;
  font-weight: 400;
}
.logo-txt strong { font-weight: 800; color: var(--accent); }
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: none; background: transparent;
  cursor: pointer; position: relative; z-index: 110;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

.site-nav {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--surface); z-index: 105;
  padding: 80px 24px 40px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.08);
  transition: right 0.3s ease;
  overflow-y: auto;
}
.site-nav.open { right: 0; }
.nav-list li { margin-bottom: 4px; }
.nav-link {
  display: block; padding: 12px 16px; border-radius: var(--radius-sm);
  font-weight: 500; color: var(--text); font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover, .nav-link.active { background: var(--bg); color: var(--accent); }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(11,24,41,0.4);
  z-index: 102; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.visible { opacity: 1; pointer-events: all; }

@media(min-width:900px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static; width: auto; height: auto;
    padding: 0; box-shadow: none; background: transparent;
    overflow: visible;
  }
  .nav-list { display: flex; gap: 4px; }
  .nav-list li { margin-bottom: 0; }
  .nav-link { padding: 8px 14px; font-size: 0.88rem; }
}

/* ===== HERO ===== */
.hero-wrap {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 45%, #1a2d4a 100%);
  padding: 72px 0 64px;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(220,20,60,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(220,20,60,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-heading {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800; color: #fff; line-height: 1.2;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-lead {
  color: rgba(255,255,255,0.82);
  max-width: 680px; margin: 0 auto 32px;
  font-size: 1.05rem; line-height: 1.7;
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 14px 32px; border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}
.cta-primary:hover {
  color: #fff;
  box-shadow: 0 8px 28px rgba(220,20,60,0.30);
  transform: translateY(-2px);
}
.cta-primary:active { transform: translateY(0); }

/* ===== BREADCRUMBS ===== */
.crumbs { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 0; }
.crumbs-list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--muted); }
.crumbs-list li { display: flex; align-items: center; gap: 6px; }
.crumbs-list li + li::before { content: '›'; color: var(--border); font-weight: 600; }
.crumbs-list a { color: var(--muted); }
.crumbs-list a:hover { color: var(--accent); }
.crumbs-list [aria-current] { color: var(--text); font-weight: 600; }

/* ===== PAGE HERO SMALL ===== */
.page-hero-sm {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 48px 0 40px; text-align: center;
}
.page-hero-sm h1 { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; }

/* ===== SECTIONS ALTERNATION ===== */
.showcase-panel { background: var(--bg); padding: 56px 0; }
.eval-section { background: var(--surface); padding: 56px 0; }
.review-hub { background: var(--bg); padding: 56px 0; }
.legal-info { background: var(--surface); padding: 56px 0; }
.steps-flow { background: var(--bg); padding: 56px 0; }
.bonus-compare { background: var(--surface); padding: 56px 0; }
.pay-compare { background: var(--bg); padding: 56px 0; }
.mobile-info { background: var(--surface); padding: 56px 0; }
.final-take { background: var(--bg); padding: 56px 0; }
.qa-panel { background: var(--surface); padding: 56px 0; }
.content-body { background: var(--surface); padding: 48px 0 56px; }

.sec-title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 20px; letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ===== SHOWCASE GRID ===== */
.showcase-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.casino-entry {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.casino-entry:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.rank-marker {
  position: absolute; top: -1px; left: -1px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #fff;
  border-radius: var(--radius) 0 var(--radius-sm) 0;
  z-index: 2;
}
.rank-gold { background: var(--accent); }
.rank-silver { background: #c7ccd6; color: var(--text); }
.rank-bronze { background: #b76e3b; }
.rank-std { background: var(--muted); }

.brand-col { min-height: 48px; display: flex; align-items: center; justify-content: center; }
.brand-col img { max-height: 40px; width: auto; object-fit: contain; }

.offer-col { flex: 1; }
.offer-tag {
  display: inline-block; background: var(--surface2);
  color: var(--accent); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 8px;
}
.offer-val { display: block; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.35; }
.offer-txt { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.action-col { width: 100%; }
.action-col .cta-primary { display: block; text-align: center; width: 100%; padding: 14px; }

@media(min-width:768px) {
  .casino-entry {
    flex-direction: row; text-align: left; align-items: center;
    padding: 20px 24px 20px 56px; gap: 24px;
  }
  .brand-col { width: 140px; flex-shrink: 0; }
  .action-col { width: auto; flex-shrink: 0; }
  .action-col .cta-primary { width: auto; min-width: 160px; }
}

/* ===== EVAL GRID ===== */
.eval-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; margin-top: 28px;
}
.eval-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
}
.eval-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.eval-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.eval-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

@media(min-width:600px) { .eval-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:900px) { .eval-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== REVIEW HUB ===== */
.review-intro { color: var(--muted); margin-bottom: 36px; font-size: 1rem; max-width: 800px; }
.review-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  margin-bottom: 24px; box-shadow: var(--shadow);
}
.review-item h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700; color: var(--text);
  margin-bottom: 16px; line-height: 1.35;
}
.review-item > p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; margin-bottom: 20px; }
.review-item > .cta-primary { margin-top: 20px; }

.merits-wrap {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; margin-bottom: 8px;
}
@media(min-width:600px) { .merits-wrap { grid-template-columns: 1fr 1fr; } }
.merit-plus, .merit-minus {
  border-radius: var(--radius-sm); padding: 20px;
}
.merit-plus { background: #eefbf2; border: 1px solid #c8ecd4; }
.merit-minus { background: #fef2f2; border: 1px solid #f5d0d0; }
.merit-plus h4, .merit-minus h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.merit-plus h4 { color: #1a7a3a; }
.merit-minus h4 { color: #b91c1c; }
.merit-plus ul, .merit-minus ul { display: flex; flex-direction: column; gap: 8px; }
.merit-plus li, .merit-minus li { font-size: 0.88rem; color: var(--text); padding-left: 22px; position: relative; line-height: 1.5; }
.merit-plus li::before { content: '✓'; position: absolute; left: 0; color: #1a7a3a; font-weight: 700; }
.merit-minus li::before { content: '✗'; position: absolute; left: 0; color: #b91c1c; font-weight: 700; }

/* ===== LEGAL INFO ===== */
.legal-info p { max-width: 800px; color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

/* ===== STEPS FLOW ===== */
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin-top: 28px;
}
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center; position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

@media(min-width:600px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:960px) { .steps-grid { grid-template-columns: repeat(5, 1fr); } }

/* ===== DATA TABLES ===== */
.tbl-scroll { overflow-x: auto; margin-top: 24px; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.data-tbl {
  width: 100%; border-collapse: collapse; min-width: 640px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.88rem;
}
.data-tbl th {
  background: var(--navy); color: #fff; font-weight: 700;
  padding: 14px 16px; text-align: left; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap;
}
.data-tbl td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle;
}
.data-tbl tbody tr:last-child td { border-bottom: none; }
.data-tbl tbody tr:nth-child(even) { background: var(--surface2); }
.data-tbl tbody tr:hover { background: #e8eef7; }

/* ===== MOBILE INFO & FINAL TAKE ===== */
.mobile-info p, .final-take p {
  max-width: 800px; color: var(--muted); font-size: 0.95rem; line-height: 1.75;
}

/* ===== FAQ ===== */
.qa-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.qa-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow var(--transition);
}
.qa-item[open] { box-shadow: var(--shadow); }
.qa-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; color: var(--text);
  list-style: none; gap: 12px;
  transition: background var(--transition);
}
.qa-question::-webkit-details-marker { display: none; }
.qa-question::after {
  content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--accent);
  flex-shrink: 0; transition: transform 0.2s ease;
}
.qa-item[open] .qa-question::after { content: '−'; }
.qa-question:hover { background: var(--surface2); }
.qa-answer { padding: 0 20px 20px; }
.qa-answer p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTENT BODY (subpages) ===== */
.content-body h2 { font-size: 1.4rem; font-weight: 700; margin: 36px 0 14px; color: var(--text); }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; color: var(--text); }
.content-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 14px; }
.content-body ul, .content-body ol {
  padding-left: 24px; margin-bottom: 16px;
  list-style: disc;
}
.content-body ol { list-style: decimal; }
.content-body li { color: var(--muted); font-size: 0.93rem; line-height: 1.65; margin-bottom: 6px; }
.content-body li strong { color: var(--text); }

/* ===== AUTHOR PROFILE ===== */
.author-profile {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; margin-bottom: 36px; text-align: center;
}
.author-photo-wrap {
  width: 160px; height: 160px; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--accent);
  flex-shrink: 0;
}
.author-photo { width: 100%; height: 100%; object-fit: cover; }
.author-bio h2 { margin-top: 0; }

@media(min-width:640px) {
  .author-profile { flex-direction: row; text-align: left; align-items: flex-start; }
}

/* ===== FOOTER ===== */
.site-ftr {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding-top: 48px;
}
.ftr-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; padding-bottom: 40px;
}
.ftr-brand .logo-txt { color: #fff; }
.ftr-tagline { font-size: 0.85rem; margin-top: 8px; color: rgba(255,255,255,0.55); }
.ftr-nav h4, .ftr-links h4 {
  color: #fff; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 12px; font-weight: 700;
}
.ftr-nav ul, .ftr-links ul { display: flex; flex-direction: column; gap: 8px; }
.ftr-nav a, .ftr-links a {
  color: rgba(255,255,255,0.6); font-size: 0.88rem;
  transition: color var(--transition);
}
.ftr-nav a:hover, .ftr-links a:hover { color: #fff; }

.ftr-responsibility {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08);
}
.age-badge {
  display: flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800;
  font-size: 0.82rem; flex-shrink: 0;
}
.ftr-responsibility p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
}
.ftr-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

@media(min-width:640px) {
  .ftr-inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .ftr-responsibility { grid-column: 1 / -1; }
}
@media(min-width:900px) {
  .ftr-inner { grid-template-columns: 1.6fr 1fr 1fr 1.6fr; }
  .ftr-responsibility { grid-column: auto; }
}

/* ===== SECTION FADE-IN ===== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== BONUS / PAY COMPARE ===== */
.bonus-compare > .bound > p,
.pay-compare > .bound > p {
  max-width: 800px; color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 4px;
}