/* ===== TOKENS ===== */
:root {
  --bg:       #ffffff;
  --bg2:      #f0f7ff;
  --bg3:      #dbeafe;
  --border:   #bfdbfe;
  --border2:  #93c5fd;
  --blue:     #1d4ed8;
  --blue-d:   #1e40af;
  --blue-l:   rgba(29,78,216,.08);
  --green:    #059669;
  --green-d:  #047857;
  --green-l:  rgba(5,150,105,.08);
  --gold:     #d97706;
  --gold-l:   rgba(217,119,6,.08);
  --tx:       #1e293b;
  --mu:       #64748b;
  --mu2:      #94a3b8;
  --max:      1280px;
  --r:        10px;
  --rl:       16px;
  --nh:       88px;
  --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(--blue); text-decoration: none; }
a:hover { color: var(--blue-d); }
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(--bg2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 7px;
  color: var(--blue);
  word-break: break-all;
  overflow-wrap: anywhere;
}
h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 20px;
  letter-spacing: -.4px;
}
h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--tx);
  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(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 16px rgba(29,78,216,.07);
  z-index: 100;
}
.nav-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { display: block; height: 64px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  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: 600;
  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: var(--blue);
  background: var(--blue-l);
}
.nav-links > li > a.hd::after { content: '▾'; font-size: 12px; opacity: .6; letter-spacing: -1px; margin-left: 5px; }
.drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  box-shadow: 0 12px 40px rgba(29,78,216,.12);
  min-width: 190px;
  padding: 6px;
  padding-top: 12px;
  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(--bg2); color: var(--blue); }
.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(--bg);
  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: 11px 14px;
  font-size: 15px;
  color: var(--mu);
  border-radius: var(--r);
  font-weight: 500;
}
.mmenu a:hover { background: var(--bg2); color: var(--blue); }
.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 free */
.btn-p {
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(5,150,105,.3);
}
.btn-p:hover { box-shadow: 0 8px 28px rgba(5,150,105,.45); }

/* Blue — real money CTA */
.btn-au {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 40%, #1d4ed8 80%, #1e40af 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(29,78,216,.38), 0 1px 0 rgba(255,255,255,.2) inset;
}
.btn-au::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
  transform: translateX(-200%);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0%   { transform: translateX(-200%); }
  30%  { transform: translateX(300%); }
  100% { transform: translateX(300%); }
}
.btn-au:hover {
  box-shadow: 0 8px 32px rgba(29,78,216,.55), 0 1px 0 rgba(255,255,255,.2) inset;
  transform: translateY(-3px);
  color: #fff;
}

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

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

/* Pulse animation for bonus CTAs */
@keyframes pulse-scale {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(29,78,216,.3); }
  50%       { transform: scale(1.05); box-shadow: 0 6px 28px rgba(29,78,216,.5); }
}
.btn-pulse { animation: pulse-scale 2.2s ease-in-out infinite; }
.btn-pulse:hover { animation: none; transform: translateY(-2px); }

/* ===== CASINO BONUS LIST ===== */
.cbonus-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.cbonus-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 20px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.cbonus-row:hover { border-color: var(--blue); box-shadow: 0 2px 16px rgba(29,78,216,.08); }
.cbonus-logo {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cbonus-logo img { width: 72px; height: auto; object-fit: contain; }
.cbonus-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}
.cbonus-text { flex: 1; min-width: 0; }
.cbonus-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--tx);
  margin: 0 0 4px;
  letter-spacing: -.2px;
}
.cbonus-text p { font-size: 14px; color: var(--mu); margin: 0; }
.cbonus-btn { flex-shrink: 0; white-space: nowrap; padding: 11px 22px; font-size: 15px; }
@media (max-width: 640px) {
  .cbonus-row { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .cbonus-logo { width: 80px; }
  .cbonus-divider { display: none; }
  .cbonus-btn { width: 100%; text-align: center; }
}

/* ===== CALCULATOR ===== */
.calc-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  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(--blue);
  margin-bottom: 12px;
  opacity: .85;
}
.calc-title { font-size: 28px; font-weight: 800; color: var(--tx); 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: var(--tx);
  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(--blue);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(29,78,216,.4);
  transition: box-shadow .2s;
}
.calc-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 20px rgba(29,78,216,.65); }
.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(29,78,216,.4);
}
.calc-range-info { font-size: 12px; color: var(--mu); margin-top: 8px; }
.calc-value-display {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-result {
  background: linear-gradient(135deg, rgba(29,78,216,.07) 0%, rgba(29,78,216,.03) 100%);
  border: 2px solid var(--border2);
  border-radius: var(--rl);
  padding: 24px;
}
.calc-result-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--mu);
  margin-bottom: 8px;
}
.calc-result-value { font-size: 42px; font-weight: 800; color: var(--blue); 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(--blue); }
.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(--blue); }
.sep-bc { color: var(--mu2); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #eff6ff 0%, #ffffff 60%);
  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: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(29,78,216,.06) 0%, rgba(96,165,250,.04) 50%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 40px;
  align-items: start;
  position: relative;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--tx);
  margin-bottom: 18px;
  letter-spacing: -.6px;
}
.hero-sub {
  font-size: 18px;
  color: var(--mu);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 14px;
  color: var(--mu);
  box-shadow: 0 1px 4px rgba(29,78,216,.06);
}
.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: 4/3;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 32px rgba(29,78,216,.12);
}

/* ===== QUICK CARDS ===== */
.qgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.qcard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 18px 20px;
  transition: border-color .15s, box-shadow .15s;
}
.qcard:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(29,78,216,.08); }
.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(--blue); }

/* ===== 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(--bg2);
  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: 26px;
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: var(--blue-l);
  border: 1px solid rgba(29,78,216,.15);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-hd h3 { font-size: 21px; font-weight: 700; color: var(--tx); margin: 0; }
.feature-item p { font-size: 16px; color: var(--mu); line-height: 1.8; }

/* ===== FEATURE GRID ===== */
.fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
.fcard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 22px;
  transition: border-color .15s, box-shadow .15s;
}
.fcard:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(29,78,216,.08); }
.fcard .fi { font-size: 28px; margin-bottom: 12px; }
.fcard h3  { font-size: 15px; margin: 0 0 7px; color: var(--tx); }
.fcard p   { font-size: 14px; color: var(--mu); margin: 0; line-height: 1.7; }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; margin: 0; }
.step {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 22px 24px;
  transition: border-color .15s;
}
.step:hover { border-color: var(--blue); }
.sn {
  min-width: 36px; height: 36px;
  background: linear-gradient(135deg, #60a5fa, var(--blue));
  color: #fff;
  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: var(--tx); }
.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: 420px;
  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/skyward-game-1.avif');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.85) saturate(0.5);
  transform: scale(1.05);
  z-index: 0;
}
.demo-ph > * { position: relative; z-index: 1; }
.demo-ph p { color: #fff; font-size: 16px; margin: 0; max-width: 360px; line-height: 1.6; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.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(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 20px 24px;
  transition: border-color .15s, box-shadow .15s;
}
.ccard:hover { border-color: var(--blue); box-shadow: 0 2px 16px rgba(29,78,216,.08); }
.clogo {
  width: 64px; height: 44px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 10px;
  color: var(--blue);
  flex-shrink: 0;
  letter-spacing: -.2px;
  text-align: center;
}
.cinfo { flex: 1; min-width: 0; }
.cinfo h3 { font-size: 16px; margin: 0 0 4px; font-weight: 700; color: var(--tx); }
.cinfo p  { font-size: 14px; color: var(--mu); margin: 0; }
.cbadge {
  font-size: 11px;
  background: var(--blue-l);
  color: var(--blue);
  border: 1px solid rgba(29,78,216,.2);
  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(--blue); }
.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: var(--blue); }
.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(--blue); }
.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(29,78,216,.05);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: 15px;
  margin: 24px 0;
  color: var(--tx);
}
.ibox {
  background: rgba(5,150,105,.06);
  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(5,150,105,.06);
  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-d); }
.warn-box {
  background: rgba(220,38,38,.05);
  border-left: 3px solid #ef4444;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: 15px;
  margin: 20px 0;
  color: var(--tx);
}
.warn-box strong { color: #dc2626; }

/* ===== 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: 260px;
}
.img-ph .ph-icon { font-size: 48px; opacity: .15; }
.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 var(--border2);
  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; color: var(--blue); }
.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(--mu);
  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(--blue); }
.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(--blue-l);
  border: 1px solid rgba(29,78,216,.2);
  border-radius: var(--rl);
  padding: 20px;
  text-align: center;
  margin-bottom: 14px;
}
.rating-score { font-size: 48px; font-weight: 800; color: var(--blue); line-height: 1; }
.rating-label {
  font-size: 11px;
  color: var(--blue);
  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(--mu);
  font-size: 11px;
  text-align: center;
  padding: 16px;
  margin-bottom: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 24px rgba(29,78,216,.1);
  overflow: hidden;
}
.aside-art img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

/* ===== 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(5,150,105,.05);
  border: 1px solid rgba(5,150,105,.2);
  border-radius: var(--rl);
  padding: 20px 22px;
}
.cons {
  background: rgba(239,68,68,.05);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--rl);
  padding: 20px 22px;
}
.pros h3 { color: var(--green-d); font-size: 15px; margin: 0 0 12px; }
.cons h3 { color: #dc2626; 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; }

/* ===== PLAY PAGE (casino grid) ===== */
.play-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.play-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.play-card:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(29,78,216,.1); transform: translateY(-2px); }
.play-card-logo {
  height: 48px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: .02em;
}
.play-card-bonus { font-size: 22px; font-weight: 800; color: var(--tx); }
.play-card-desc { font-size: 14px; color: var(--mu); flex: 1; }
.play-card .btn { width: 100%; justify-content: center; }

/* ===== RTP BARS ===== */
.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(--bg2);
  border-radius: 999px;
  height: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.rtp-bar { height: 100%; border-radius: 999px; background: var(--border2); transition: width .6s ease; }
.rtp-bar.highlight { background: linear-gradient(90deg, #93c5fd, var(--blue)); }
.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(--blue); }

/* ===== PROB 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: 80px; font-size: 14px; font-weight: 700; color: var(--tx); flex-shrink: 0; text-align: right; }
.prob-bar-wrap {
  flex: 1;
  background: var(--bg2);
  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, #93c5fd, #60a5fa); animation-delay: .05s; }
.prob-bar-2 { background: linear-gradient(90deg, #60a5fa, #3b82f6); animation-delay: .1s; }
.prob-bar-3 { background: linear-gradient(90deg, #3b82f6, #2563eb); animation-delay: .15s; }
.prob-bar-4 { background: linear-gradient(90deg, #2563eb, #1d4ed8); animation-delay: .2s; }
.prob-bar-5 { background: linear-gradient(90deg, #1d4ed8, #1e40af); animation-delay: .25s; }
.prob-bar-6 { background: linear-gradient(90deg, #1e40af, #1e3a8a); animation-delay: .3s; }
.prob-pct { width: 60px; font-size: 14px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
@keyframes barGrow { from { width: 0; } to { width: var(--bar-w); } }

/* ===== CHART WRAP ===== */
.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; }

/* ===== REVIEWS SECTION ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rcard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 20px 24px;
  transition: border-color .15s;
}
.rcard:hover { border-color: var(--blue); }
.rcard-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rcard-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #93c5fd, var(--blue));
  color: #fff;
  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; }

/* ===== BADGES ===== */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--mu);
  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, 52px); }
.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(--blue); 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 { 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(--border);
}
.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(--blue);
  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(--blue); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 6px; }
.tl-content h3 { font-size: 18px; margin: 0 0 8px; color: var(--tx); }
.tl-content p { font-size: 15px; color: var(--mu); margin: 0; line-height: 1.75; }
.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(--blue); 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: var(--tx); }
.au-fcard p { font-size: 14px; color: var(--mu); margin: 0; line-height: 1.65; }

/* ===== 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(--mu);
  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(--blue); }
.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(--mu);
}
.foot-btm a { color: var(--mu); }
.foot-btm a:hover { color: var(--blue); }
.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;
}
.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(--bg);
  border: 1px solid var(--border);
  color: var(--mu);
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}
.soc:hover { background: var(--blue-l); border-color: var(--blue); color: var(--blue); }
.soc svg { width: 17px; height: 17px; display: block; }
.foot-legal { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.foot-legal a { color: var(--mu); font-size: 12px; white-space: nowrap; }
.foot-legal a:hover { color: var(--blue); }
.foot-contact ul li { font-size: 13px; color: var(--mu); }
.foot-contact ul li a { color: var(--mu); font-size: 13px; }
.foot-contact ul li a:hover { color: var(--blue); }
.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;
}

/* ===== 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; }
  .play-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .fgrid { grid-template-columns: 1fr; }
  .qgrid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 26px; }
  .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(--blue); font-weight: 700; font-size: 15px; width: 100% !important; }
  .btn { white-space: normal; text-align: center; }
  .foot-col { width: 100%; }
  .ccard { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ccard > .btn { align-self: stretch; justify-content: center; }
}
