/* ===== TOKENS ===== */
:root {
  --bg:       #0b0e17;
  --bg2:      #111523;
  --bg3:      #181d2e;
  --border:   #252d42;
  --border2:  #2e3a56;
  --gold:     #f5a623;
  --gold-d:   #d48c18;
  --gold-l:   rgba(245,166,35,.12);
  --green:    #22c55e;
  --green-d:  #16a34a;
  --green-l:  rgba(34,197,94,.12);
  --tx:       #eef2ff;
  --mu:       #7886a8;
  --mu2:      #4a5578;
  --max:      1280px;
  --r:        10px;
  --rl:       16px;
  --nh:       100px;
  --fn:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--fn);
  font-size: 17px;
  line-height: 1.7;
  color: var(--tx);
  background: var(--bg);
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
code {
  font-family: monospace;
  font-size: 13px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 7px;
  color: var(--gold);
  word-break: break-all;
  overflow-wrap: anywhere;
}
h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.4px;
}
h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 10px;
}
h3:first-child { margin-top: 0; }

/* ===== LAYOUT ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.page { padding-top: calc(var(--nh) + 40px); padding-bottom: 100px; }
.sec  { margin-bottom: 72px; }
.grid2 {
  display: grid;
  grid-template-columns: 1fr 264px;
  gap: 48px;
  align-items: start;
}
.sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 64px 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nh);
  background: rgba(11,14,23,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
}
.nav-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 64px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { display: block; height: 78px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mu);
  border-radius: var(--r);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-links > li > a:hover,
.nav-links > li.cur > a {
  color: #fff;
  background: var(--bg3);
}
.nav-links > li > a.hd::after { content: '▾'; font-size: 12px; opacity: .75; letter-spacing: -1px; margin-left: 6px; }
.drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--rl);
  box-shadow: 0 20px 48px rgba(0,0,0,.6);
  min-width: 185px;
  padding: 6px;
  padding-top: 14px;
  list-style: none;
}
.nav-links > li:hover .drop { display: block; }
.drop li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mu);
  border-radius: var(--r);
}
.drop li a:hover { background: var(--bg3); color: #fff; }
.nav-ctas { display: flex; gap: 8px; margin-left: auto; }
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 22px;
  color: var(--tx);
  margin-left: auto;
}
.mmenu {
  display: none;
  position: fixed;
  top: var(--nh);
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - var(--nh));
  overflow-y: auto;
}
.mmenu.open { display: flex; }
.mmenu a {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--mu);
  border-radius: var(--r);
  font-weight: 500;
}
.mmenu a:hover { background: var(--bg3); color: #fff; }
.mm-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mu2);
  padding: 14px 14px 2px;
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity .15s, transform .12s, box-shadow .15s;
  white-space: nowrap;
  font-family: var(--fn);
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn:hover { opacity: .92; transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); opacity: 1; }

/* Green — demo / play */
.btn-p {
  background: linear-gradient(135deg, #28d968 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(34,197,94,.35);
}
.btn-p:hover { box-shadow: 0 8px 32px rgba(34,197,94,.5); }

/* Gold — real money CTA */
.btn-au {
  background: linear-gradient(135deg,
    #ffe259 0%,
    #f5a623 40%,
    #e8820c 75%,
    #c45e00 100%);
  color: #1a0a00;
  font-weight: 800;
  box-shadow:
    0 4px 24px rgba(245,166,35,.45),
    0 1px 0 rgba(255,255,255,.25) inset;
  text-shadow: 0 1px 0 rgba(255,200,50,.3);
}
.btn-au::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,.28) 50%,
    transparent 80%
  );
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0%   { left: -100%; }
  30%  { left: 120%; }
  100% { left: 120%; }
}
.btn-au:hover {
  box-shadow:
    0 8px 36px rgba(245,166,35,.65),
    0 1px 0 rgba(255,255,255,.25) inset;
  transform: translateY(-3px);
}

/* Outline */
.btn-o {
  background: transparent;
  color: var(--tx);
  border: 1.5px solid var(--border2);
}
.btn-o:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-l);
}

/* Ghost */
.btn-ghost {
  background: var(--bg3);
  color: var(--tx);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border2); color: #fff; }
.btn-lg { padding: 17px 38px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }

/* ===== CALCULATOR ===== */
.calc-wrap {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--rl);
  padding: 32px;
  margin: 40px 0;
}
.calc-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: .85;
}
.calc-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.calc-desc {
  font-size: 14px;
  color: var(--mu);
  margin-bottom: 24px;
  max-width: 600px;
}
.calc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .calc-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.calc-input-group {
  display: flex;
  flex-direction: column;
}
.calc-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-bottom: 16px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(34,197,94,.5);
  transition: box-shadow .2s;
}
.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(34,197,94,.8);
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(34,197,94,.5);
  transition: box-shadow .2s;
}
.calc-slider::-moz-range-thumb:hover {
  box-shadow: 0 0 20px rgba(34,197,94,.8);
}
.calc-range-info {
  font-size: 12px;
  color: var(--mu);
  margin-top: 8px;
}
.calc-value-display {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-result {
  background: linear-gradient(135deg, rgba(34,197,94,.1) 0%, rgba(34,197,94,.05) 100%);
  border: 2px solid var(--green);
  border-radius: var(--rl);
  padding: 24px;
}
.calc-result-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: .85;
}
.calc-result-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 20px;
}
.calc-result-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc-stat {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.calc-stat-label {
  font-size: 12px;
  color: var(--mu);
  margin-bottom: 4px;
}
.calc-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}
.calc-note {
  font-size: 12px;
  color: var(--mu);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== BREADCRUMB ===== */
.bc {
  font-size: 13px;
  color: var(--mu);
  margin-bottom: 22px;
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}
.bc a { color: var(--mu); }
.bc a:hover { color: var(--gold); }
.sep-bc { color: var(--mu2); }

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nh) + 72px) 0 64px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-60%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse,
    rgba(245,166,35,.07) 0%,
    rgba(34,197,94,.04) 40%,
    transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: start;
  position: relative;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: .85;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.6px;
}
.hero-sub {
  font-size: 18px;
  color: var(--mu);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.pill {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 14px;
  color: var(--mu);
}
.pill strong { color: var(--tx); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-img {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--mu2);
  font-size: 11px;
  text-align: center;
  padding: 16px;
  flex-shrink: 0;
}
.hero-img .ph-icon { font-size: 36px; opacity: .15; }

/* ===== QUICK CARDS ===== */
.qgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.qcard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 18px 20px;
  transition: border-color .15s;
}
.qcard:hover { border-color: var(--border2); }
.ql {
  font-size: 11px;
  color: var(--mu);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}
.qv { font-size: 18px; font-weight: 700; color: var(--gold); }

/* ===== DATA TABLE ===== */
.dtbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dtbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  word-break: normal;
  overflow-wrap: normal;
}
.dtbl th {
  background: var(--bg3);
  color: var(--mu);
  font-weight: 700;
  text-align: left;
  padding: 11px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
}
.dtbl td { padding: 11px 18px; border-top: 1px solid var(--border); }
.dtbl tr:nth-child(even) td { background: var(--bg2); }
.dtbl td:first-child { color: var(--mu); font-size: 14px; width: 42%; }
.dtbl td:last-child { color: var(--tx); font-weight: 500; }

/* ===== FEATURE ITEMS ===== */
.feature-item { margin-bottom: 52px; }
.feature-item:last-child { margin-bottom: 0; }
.feature-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.f-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--gold-l);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-hd h3 { font-size: 21px; font-weight: 700; color: #fff; margin: 0; }
.feature-item p { font-size: 16px; color: var(--mu); line-height: 1.8; }

/* ===== FEATURE GRID (small) ===== */
.fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
.fcard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 22px;
  transition: border-color .15s;
}
.fcard:hover { border-color: var(--border2); }
.fcard .fi { font-size: 28px; margin-bottom: 12px; }
.fcard h3  { font-size: 15px; margin: 0 0 7px; color: #fff; }
.fcard p   { font-size: 14px; color: var(--mu); margin: 0; line-height: 1.7; }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 22px 24px;
  transition: border-color .15s;
}
.step:hover { border-color: var(--border2); }
.sn {
  min-width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #0b0e17;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.step h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: #fff; }
.step p  { font-size: 15px; color: var(--mu); margin: 0; line-height: 1.75; }

/* ===== DEMO BOX ===== */
.demo-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 18px;
}
.demo-ph {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 48px;
}
.demo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/forrest-arrow-1.avif');
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.4);
  transform: scale(1.05);
  z-index: 0;
}
.demo-ph > * { position: relative; z-index: 1; }
.demo-ph .d-icon { font-size: 64px; opacity: .15; }
.demo-ph p { color: #9ca3af; font-size: 16px; margin: 0; max-width: 320px; line-height: 1.6; }
.demo-box iframe { width: 100%; height: 580px; border: none; display: block; }

/* ===== CASINO LIST ===== */
.clist { display: flex; flex-direction: column; gap: 12px; }
.ccard {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 20px 24px;
  transition: border-color .15s;
}
.ccard:hover { border-color: var(--border2); }
.clogo {
  width: 60px; height: 42px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: -.3px;
}
.cinfo { flex: 1; min-width: 0; }
.cinfo h3 { font-size: 16px; margin: 0 0 4px; font-weight: 700; color: #fff; }
.cinfo p  { font-size: 14px; color: var(--mu); margin: 0; }
.cbadge {
  font-size: 11px;
  background: var(--gold-l);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,.25);
  border-radius: 5px;
  padding: 4px 10px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 10px; }
.fitem {
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: border-color .15s;
}
.fitem[open] { border-color: var(--border2); }
.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  background: var(--bg2);
  gap: 12px;
  user-select: none;
  list-style: none;
  color: var(--tx);
  transition: background .15s;
}
.fitem[open] > .fq { background: var(--bg3); color: #fff; }
.fq::marker, .fq::-webkit-details-marker { display: none; }
.fq::after {
  content: '▾';
  font-size: 12px;
  color: var(--mu);
  transition: transform .2s;
  flex-shrink: 0;
}
details[open] > .fq::after { transform: rotate(180deg); color: var(--gold); }
.fa {
  padding: 18px 22px 22px;
  font-size: 15px;
  color: var(--mu);
  border-top: 1px solid var(--border);
  background: var(--bg);
  line-height: 1.75;
}
.fa p { margin-bottom: 8px; }

/* ===== NOTICES ===== */
.notice {
  background: rgba(245,166,35,.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: 15px;
  margin: 24px 0;
  color: var(--tx);
}
.ibox {
  background: rgba(34,197,94,.07);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: 15px;
  margin: 24px 0;
  color: var(--tx);
}
.strat-tip {
  background: rgba(34,197,94,.07);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: 15px;
  margin: 20px 0;
  color: var(--tx);
}
.strat-tip strong { color: var(--green); }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-ph {
  background: var(--bg2);
  border: 1.5px dashed var(--border2);
  border-radius: var(--rl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 28px;
  margin: 32px 0;
  text-align: center;
  min-height: 240px;
}
.img-ph .ph-icon { font-size: 48px; opacity: .12; }
.img-ph .ph-label { font-size: 15px; font-weight: 600; color: var(--mu); }
.img-ph .ph-sub { font-size: 13px; color: var(--mu2); line-height: 1.6; }

/* ===== AUTHOR BOX ===== */
.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  margin-bottom: 48px;
}
.author-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,.3);
  overflow: hidden;
  flex-shrink: 0;
}
.author-name    { font-size: 15px; font-weight: 700; color: var(--tx); }
.author-role    { font-size: 13px; color: var(--mu); }
.author-role a  { text-decoration: underline; }
.author-updated { font-size: 12px; color: var(--mu2); margin-top: 3px; }

/* ===== ASIDE ===== */
.toc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 24px;
  position: sticky;
  top: calc(var(--nh) + 16px);
}
.toc-ttl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--mu2);
  margin-bottom: 16px;
}
.toc ol {
  list-style: none;
  counter-reset: t;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.toc ol li {
  counter-increment: t;
  display: flex;
  gap: 8px;
  font-size: 14px;
}
.toc ol li::before { content: counter(t)'.'; color: var(--mu2); flex-shrink: 0; }
.toc ol li a { color: var(--mu); font-size: 14px; }
.toc ol li a:hover { color: var(--gold); }
.aside-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aside-cta .btn { justify-content: center; width: 100%; }

/* ===== RATING ===== */
.rating-box {
  background: var(--gold-l);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--rl);
  padding: 20px;
  text-align: center;
  margin-bottom: 14px;
}
.rating-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.rating-label {
  font-size: 11px;
  color: var(--mu);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.rating-stars { font-size: 22px; color: var(--gold); margin: 10px 0 4px; }

/* ===== ASIDE ART ===== */
.aside-art {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--mu2);
  font-size: 11px;
  text-align: center;
  padding: 16px;
  margin-bottom: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 20px rgba(245,166,35,.15);
}
.aside-art .ph-icon { font-size: 34px; opacity: .12; }

/* ===== LEAD TEXT ===== */
.lead {
  font-size: 18px;
  color: var(--tx);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

/* ===== PROS / CONS ===== */
.pcons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pros {
  background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--rl);
  padding: 20px 22px;
}
.cons {
  background: rgba(239,68,68,.07);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--rl);
  padding: 20px 22px;
}
.pros h3 { color: var(--green); font-size: 15px; margin: 0 0 12px; }
.cons h3 { color: #ef4444;     font-size: 15px; margin: 0 0 12px; }
.pros ul, .cons ul {
  list-style: none;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pros li, .cons li { display: flex; gap: 9px; color: var(--mu); }
.pros li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: #ef4444;     font-weight: 700; flex-shrink: 0; }

/* ===== FOOTER ===== */
.foot {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  color: var(--mu);
  padding: 64px 0 36px;
  font-size: 14px;
  margin-top: 72px;
}
.foot-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 36px;
}
.foot-logo {
  margin-bottom: 12px;
}
.foot-logo img { display: block; width: 98px; height: auto; }
.foot-about { max-width: 260px; line-height: 1.65; font-size: 13px; }
.foot-col h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--mu2);
  margin-bottom: 18px;
  font-weight: 700;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { color: var(--mu); font-size: 14px; }
.foot-col ul a:hover { color: var(--gold); }
.foot-btm {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mu2);
}
.foot-btm a { color: var(--mu2); }
.foot-btm a:hover { color: var(--gold); }
.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border: 1.5px solid var(--mu2);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

/* ===== SOCIAL ICONS ===== */
.foot-social {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  border-top: 1px solid var(--border);
}
.soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--mu);
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}
.soc:hover { background: var(--bg3); border-color: var(--border2); color: #fff; }
.soc svg { width: 17px; height: 17px; display: block; }

/* ===== FOOTER LEGAL ===== */
.foot-legal { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.foot-legal a { color: var(--mu2); font-size: 12px; white-space: nowrap; }
.foot-legal a:hover { color: var(--gold); }
.foot-contact ul li { font-size: 13px; color: var(--mu2); }
.foot-contact ul li a { color: var(--mu2); font-size: 13px; }
.foot-contact ul li a:hover { color: var(--gold); }
.foot-disc {
  width: 100%;
  order: 99;
  font-size: 11px;
  color: var(--mu2);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  line-height: 1.6;
  text-align: center;
}

/* ===== JS BADGES ===== */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--mu2);
  padding: 4px 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 14px;
}
.verified-badge .vb-check { color: var(--green); font-weight: 700; }
.players-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--mu);
  padding: 6px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.players-live .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ===== AUTHOR PAGE ===== */
.author-page-hero { text-align: center; }
.author-page-hero .bc { justify-content: center; }
.author-page-hero h1 { font-size: clamp(32px, 6vw, 56px); }
.author-page-hero .hero-sub { margin-left: auto; margin-right: auto; }
.author-page-hero .pills { justify-content: center; }

.author-stats {
  display: flex;
  gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 0;
}
.author-stat {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
}
.author-stat:last-child { border-right: none; }
.author-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.author-stat-lbl {
  font-size: 13px;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

/* Author timeline */
.author-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}
.author-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border2);
}
.tl-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -28px;
  top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  flex-shrink: 0;
  z-index: 1;
}
.tl-content { flex: 1; }
.tl-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 6px;
}
.tl-content h3 { font-size: 18px; margin: 0 0 8px; color: #fff; }
.tl-content p { font-size: 15px; color: var(--mu); margin: 0; line-height: 1.75; }

/* Author featured articles */
.author-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.au-fcard {
  display: block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--tx);
  transition: border-color .15s, transform .15s;
}
.au-fcard:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--tx);
}
.au-fcard-icon {
  font-size: 26px;
  margin-bottom: 12px;
}
.au-fcard h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 7px;
  color: #fff;
}
.au-fcard p {
  font-size: 14px;
  color: var(--mu);
  margin: 0;
  line-height: 1.65;
}

/* ===== REVIEWS SECTION ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rcard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 20px 24px;
  transition: border-color .15s;
}
.rcard:hover { border-color: var(--border2); }
.rcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rcard-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a0a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.rcard-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--tx);
}
.rcard-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 2px;
}
.rcard-text {
  font-size: 14px;
  color: var(--mu);
  line-height: 1.7;
  margin: 0;
}

/* ===== PROBABILITY CHART ===== */
.prob-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.prob-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.prob-label {
  width: 48px;
  font-size: 15px;
  font-weight: 700;
  color: var(--tx);
  flex-shrink: 0;
  text-align: right;
}
.prob-bar-wrap {
  flex: 1;
  background: var(--bg3);
  border-radius: 999px;
  height: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.prob-bar {
  height: 100%;
  border-radius: 999px;
  width: 0;
  animation: barGrow .9s ease forwards;
}
.prob-bar-1 { background: linear-gradient(90deg, var(--green), #84d96e); animation-delay: .05s; }
.prob-bar-2 { background: linear-gradient(90deg, #6cc96d, #a3c944); animation-delay: .1s; }
.prob-bar-3 { background: linear-gradient(90deg, #a3c944, #c8b830); animation-delay: .15s; }
.prob-bar-4 { background: linear-gradient(90deg, #c8b830, #e09920); animation-delay: .2s; }
.prob-bar-5 { background: linear-gradient(90deg, #e09920, var(--gold)); animation-delay: .25s; }
.prob-bar-6 { background: linear-gradient(90deg, var(--gold), #e8820c); animation-delay: .3s; }
.prob-pct {
  width: 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
@keyframes barGrow {
  from { width: 0; }
  to   { width: var(--bar-w); }
}

/* ===== SVG BAR CHART (review page) ===== */
.chart-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 24px;
  margin: 20px 0;
  overflow-x: auto;
}
.bar-chart { display: block; width: 100%; max-width: 600px; }

/* ===== RTP BARS (alternatives page) ===== */
.rtp-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.rtp-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rtp-game {
  width: 120px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tx);
  flex-shrink: 0;
}
.rtp-bar-wrap {
  flex: 1;
  background: var(--bg3);
  border-radius: 999px;
  height: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.rtp-bar {
  height: 100%;
  border-radius: 999px;
  background: var(--border2);
  transition: width .6s ease;
}
.rtp-bar.highlight { background: linear-gradient(90deg, var(--gold-d), var(--gold)); }
.rtp-val {
  width: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--mu);
  flex-shrink: 0;
  text-align: right;
}
.rtp-row.highlight .rtp-val { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .grid2 { grid-template-columns: 1fr; }
  .aside { display: none; }
  .nav-links, .nav-ctas { display: none; }
  .burger { display: flex; }
  .pcons { grid-template-columns: 1fr; }
  .hero { padding: calc(var(--nh) + 32px) 0 28px; margin-bottom: 36px; }
  .page { padding-top: calc(var(--nh) + 20px); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .sec { margin-bottom: 48px; }
  .page { padding-bottom: 40px; }
  .foot { margin-top: 32px; }
  .foot-in { gap: 28px; }
  .foot-about { max-width: 100%; }
  .foot-legal { gap: 10px; }
  .foot-legal a { white-space: normal; }
  .foot-btm { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .author-page-hero .hero-ctas { align-items: center; }
  .author-stats { flex-direction: column; }
  .author-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .author-stat:last-child { border-bottom: none; }
  .author-featured { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rtp-game { width: 90px; font-size: 13px; }
}
@media (max-width: 480px) {
  .fgrid { grid-template-columns: 1fr; }
  .qgrid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 26px; }
  /* Responsive tables: each row becomes a vertical card */
  .dtbl-wrap { overflow-x: visible; }
  .dtbl,
  .dtbl thead,
  .dtbl tbody,
  .dtbl th,
  .dtbl td,
  .dtbl tr { display: block; width: 100% !important; white-space: normal; word-break: break-word; }
  .dtbl thead { display: none; }
  .dtbl tbody tr {
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 10px;
    background: var(--bg2);
    overflow: hidden;
  }
  .dtbl tr:nth-child(even) td { background: transparent; }
  .dtbl td { border-top: 1px solid var(--border); padding: 10px 14px; }
  .dtbl td:first-child { border-top: none; color: var(--gold); font-weight: 700; font-size: 15px; width: 100% !important; }
  .btn { white-space: normal; text-align: center; }
  .foot-col { width: 100%; }
  /* Casino card: flex column */
  .ccard {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ccard > .btn { align-self: stretch; justify-content: center; }
  /* FAQ bottom spacing */
  #faq { margin-bottom: 16px; }
}
