/* ===== TOKENS ===== */
:root {
  /* -- THEME: меняй эти переменные под каждый слот -- */
  --brand: #ff5c8a;
  --brand-dim: rgba(255,92,138,.1);
  --brand-glow: rgba(255,92,138,.25);
  --gold: #ffb800;
  --gold-dim: rgba(255,184,0,.1);
  --gold-glow: rgba(255,184,0,.25);
  --g-brand: linear-gradient(135deg, #ff5c8a, #c026d3);
  --g-gold: linear-gradient(135deg, #ffb800, #f97316);

  /* -- BASE: тёмная тема (менять редко) -- */
  --bg: #07060d;
  --bg-2: #0e0c18;
  --bg-3: #141222;
  --bg-4: #1b182e;
  --bg-elevated: #1f1c33;

  --surface: rgba(255,255,255,.028);
  --surface-2: rgba(255,255,255,.05);
  --surface-hover: rgba(255,255,255,.07);
  --border: rgba(255,255,255,.055);
  --border-2: rgba(255,255,255,.09);

  --text: #eee9f7;
  --text-2: #a199b8;
  --text-3: #6d6488;

  /* -- Семантические цвета -- */
  --green: #22c55e;
  --green-dim: rgba(34,197,94,.1);
  --blue: #3b82f6;
  --blue-dim: rgba(59,130,246,.1);
  --purple: #a855f7;
  --purple-dim: rgba(168,85,247,.1);
  --red: #ef4444;
  --orange: #f97316;
  --g-green: linear-gradient(135deg, #22c55e, #10b981);

  /* -- Шрифты -- */
  --f-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --f-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* -- Размеры -- */
  --r: 14px;
  --r-lg: 20px;
  --max-w: 1080px;
  --hdr: 60px;
}

/* ===== RESET ===== */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased }
body { font-family:var(--f-body); background:var(--bg); color:var(--text); line-height:1.65; overflow-x:hidden }
a { color:inherit; text-decoration:none }
img { max-width:100%; display:block }

/* ===== AMBIENT ===== */
.ambient {
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 700px 500px at 20% 10%, rgba(168,85,247,.06), transparent),
    radial-gradient(ellipse 600px 400px at 80% 25%, rgba(255,92,138,.04), transparent),
    radial-gradient(ellipse 500px 350px at 50% 65%, rgba(255,184,0,.03), transparent);
}

/* ===== LAYOUT ===== */
.wrap { max-width:var(--max-w); margin:0 auto; padding:0 20px }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap }

/* ===== HEADER ===== */
.hdr {
  position:fixed; top:0; left:0; right:0; z-index:100; height:var(--hdr);
  background:rgba(7,6,13,.82); backdrop-filter:blur(24px) saturate(180%);
  border-bottom:1px solid var(--border); transition:all .3s;
}
.hdr-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 20px; height:100%;
  display:flex; align-items:center; justify-content:space-between;
}
.logo { font-family:var(--f-display); font-size:18px; font-weight:800; display:flex; align-items:center; gap:8px }
.logo-mark { width:30px; height:30px; background:var(--g-gold); border-radius:9px; display:flex; align-items:center; justify-content:center }
.logo-mark svg { width:16px; height:16px; color:#1a0f00 }
.logo .t-sweet { color:var(--gold) }
.logo .t-bonanza { color:var(--text) }

.hdr-nav { display:flex; align-items:center; gap:2px }
.hdr-nav a {
  padding:7px 12px; font-size:13px; font-weight:600; color:var(--text-3);
  border-radius:8px; transition:.2s; display:flex; align-items:center; gap:5px;
}
.hdr-nav a:hover { color:var(--text-2); background:var(--surface) }
.hdr-nav a svg { width:14px; height:14px }

.hdr-r { display:flex; align-items:center; gap:8px }

/* Бургер-меню */
.burger {
  display:none; flex-direction:column; justify-content:center; gap:5px;
  background:none; border:1px solid var(--border); border-radius:8px;
  width:40px; height:40px; padding:0 9px; cursor:pointer; transition:.2s;
}
.burger:hover { border-color:var(--border-2); background:var(--surface) }
.burger span { display:block; height:2px; background:var(--text-2); border-radius:1px; transition:.3s }
.burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg) }
.burger.open span:nth-child(2) { opacity:0 }
.burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg) }

/* ===== BUTTONS ===== */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  padding:9px 18px; border:none; border-radius:10px; font-family:var(--f-body);
  font-weight:700; font-size:13px; cursor:pointer; transition:all .25s;
  white-space:nowrap; position:relative;
}
.btn svg { width:15px; height:15px; flex-shrink:0 }

.btn-outline { background:transparent; color:var(--text-2); border:1.5px solid var(--border-2) }
.btn-outline:hover { color:var(--text); border-color:rgba(255,255,255,.15); background:var(--surface) }

.btn-brand { background:var(--g-brand); color:#fff; box-shadow:0 2px 14px var(--brand-glow) }
.btn-brand:hover { transform:translateY(-1px); box-shadow:0 6px 22px var(--brand-glow) }

.btn-gold { background:var(--g-gold); color:#1a0f00; box-shadow:0 2px 14px var(--gold-glow) }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 28px var(--gold-glow) }

.btn-green { background:var(--g-green); color:#fff; box-shadow:0 2px 14px rgba(34,197,94,.25) }
.btn-green:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(34,197,94,.3) }

.btn-lg { padding:13px 28px; font-size:14.5px; border-radius:12px }
.btn-xl { padding:16px 36px; font-size:15px; border-radius:var(--r) }
.btn-block { width:100% }

.btn .ext { width:13px; height:13px; opacity:.6; margin-left:2px }

/* ===== DISCLOSURE ===== */
.disc {
  position:fixed; bottom:0; left:0; right:0; z-index:101;
  background:var(--bg-3); padding:10px 20px;
  font-size:11.5px; font-weight:600; color:var(--text-3); text-align:center;
  border-top:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition:all .3s; backdrop-filter:blur(20px) saturate(180%);
}
.disc a { color:var(--gold); text-decoration:underline }
.disc-close {
  background:none; border:1px solid var(--border); color:var(--text-3); cursor:pointer;
  width:24px; height:24px; border-radius:6px; display:flex; align-items:center; justify-content:center;
  font-size:14px; line-height:1; transition:.2s; flex-shrink:0; margin-left:8px;
}
.disc-close:hover { color:var(--text); border-color:var(--border-2); background:var(--surface) }

/* ===== HERO ===== */
.hero {
  position:relative; z-index:1; padding:calc(var(--hdr) + 32px) 0 0;
  background:linear-gradient(180deg, #150f2c, var(--bg) 100%);
}
.hero .wrap { max-width:var(--max-w) }

.hero-top { display:grid; grid-template-columns:1fr 340px; gap:40px; align-items:center; padding-bottom:48px }
.hero-top.hero-full { grid-template-columns:1fr; max-width:680px }

.hero-badge {
  display:inline-flex; align-items:center; gap:6px; padding:5px 12px 5px 8px;
  background:var(--gold-dim); border:1px solid rgba(255,184,0,.15); border-radius:50px;
  font-size:11.5px; font-weight:700; color:var(--gold); letter-spacing:.5px;
  text-transform:uppercase; margin-bottom:16px;
}
.hero-badge svg { width:14px; height:14px }
.hero-badge .live-dot { width:6px; height:6px; background:var(--green); border-radius:50%; animation:pulse 2s infinite }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero h1 {
  font-family:var(--f-display); font-size:clamp(34px,5vw,52px);
  font-weight:800; line-height:1.08; letter-spacing:-.5px; margin-bottom:14px;
}
.hero h1 .gold { background:var(--g-gold); -webkit-background-clip:text; -webkit-text-fill-color:transparent }

.hero-sub { font-size:15.5px; font-weight:500; color:var(--text-2); max-width:420px; margin-bottom:24px }
.hero-btns { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px }

/* Quick stats */
.qs-row { display:grid; grid-template-columns:repeat(4,1fr); gap:8px }
.qs { background:var(--surface); border:1px solid var(--border); border-radius:10px; padding:12px 10px; text-align:center }
.qs-v { font-family:var(--f-display); font-size:16px; font-weight:800; color:var(--gold) }
.qs-l { font-size:10.5px; font-weight:700; color:var(--text-3); text-transform:uppercase; letter-spacing:1px; margin-top:2px }

/* Слот-фрейм */
.hero-visual { position:relative }
.slot-frame {
  background:linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border:1px solid var(--border); border-radius:var(--r-lg);
  aspect-ratio:1/1.05; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:16px;
  overflow:hidden; position:relative;
}
.slot-frame::before {
  content:''; position:absolute; inset:-40px;
  background:radial-gradient(circle, rgba(255,184,0,.06), transparent 60%); z-index:0;
}

.reels { display:flex; gap:6px; position:relative; z-index:1 }
.reel { display:flex; flex-direction:column; gap:6px }
.cell {
  width:48px; height:48px; background:rgba(255,255,255,.025);
  border-radius:10px; border:1px solid rgba(255,255,255,.03);
  display:flex; align-items:center; justify-content:center;
  transition:.3s; position:relative; overflow:hidden;
}
.cell:hover { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.08) }

/* Символы */
.sym { width:30px; height:30px; border-radius:8px; position:relative; overflow:hidden }
.sym::after {
  content:''; position:absolute; top:2px; left:3px; width:40%; height:35%;
  background:linear-gradient(135deg, rgba(255,255,255,.35), transparent);
  border-radius:50%; pointer-events:none;
}
.sym-apple  { background:radial-gradient(circle at 40% 35%, #ff8a8a, #dc2626); box-shadow:inset 0 -4px 8px rgba(0,0,0,.2) }
.sym-grape  { background:radial-gradient(circle at 40% 35%, #c084fc, #7c3aed); box-shadow:inset 0 -4px 8px rgba(0,0,0,.2) }
.sym-banana { background:radial-gradient(circle at 40% 35%, #fde68a, #f59e0b); box-shadow:inset 0 -4px 8px rgba(0,0,0,.15); border-radius:8px 16px 8px 16px }
.sym-melon  { background:radial-gradient(circle at 40% 35%, #86efac, #16a34a); box-shadow:inset 0 -4px 8px rgba(0,0,0,.2) }
.sym-plum   { background:radial-gradient(circle at 40% 35%, #c4b5fd, #6d28d9); box-shadow:inset 0 -4px 8px rgba(0,0,0,.25) }

.sym-candy-r { background:radial-gradient(circle at 40% 35%, #fda4af, #e11d48); border-radius:50%; width:26px; height:26px }
.sym-candy-b { background:radial-gradient(circle at 40% 35%, #93c5fd, #2563eb); border-radius:6px; width:26px; height:26px; transform:rotate(45deg) }
.sym-candy-g { background:radial-gradient(circle at 40% 35%, #86efac, #059669); border-radius:14px; width:26px; height:22px }
.sym-candy-p { background:radial-gradient(circle at 40% 35%, #d8b4fe, #9333ea); border-radius:4px; width:26px; height:26px }
.sym-scatter {
  background:var(--g-gold); border-radius:50%; width:30px; height:30px;
  box-shadow:0 0 12px var(--gold-glow);
  display:flex; align-items:center; justify-content:center;
  font-size:9px; font-weight:900; color:#1a0f00;
}

.spin-cta { position:relative; z-index:1 }

/* Hero image mode */
.hero-img-box {
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  background:linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border:1px solid var(--border);
  box-shadow:0 20px 60px rgba(0,0,0,.4), 0 0 40px var(--brand-glow);
  transition:transform .4s, box-shadow .4s;
}
.hero-img-box:hover {
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 30px 80px rgba(0,0,0,.5), 0 0 60px var(--brand-glow);
}
.hero-game-img {
  display:block; width:100%; height:auto; aspect-ratio:1/1;
  object-fit:cover; border-radius:var(--r-lg);
}
.hero-img-box::after {
  content:''; position:absolute; inset:0; border-radius:var(--r-lg);
  background:linear-gradient(180deg, transparent 60%, rgba(0,0,0,.3));
  pointer-events:none;
}

/* ===== TRUST BAR ===== */
.trust-bar { position:relative; z-index:1; padding:20px 0; border-bottom:1px solid var(--border) }
.trust-items { display:flex; justify-content:center; gap:32px; flex-wrap:wrap }
.trust-item { display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; color:var(--text-3) }
.trust-item svg { width:16px; height:16px; color:var(--green) }

/* ===== SECTIONS ===== */
.sec { position:relative; z-index:1; padding:56px 0 }
.sec-alt { background:var(--bg-2) }
.sec-anchor { scroll-margin-top:calc(var(--hdr) + 16px) }

.sec-hdr { display:flex; align-items:center; gap:10px; margin-bottom:8px }
.sec-hdr svg { width:22px; height:22px; color:var(--brand) }
.sec-hdr h2 { font-family:var(--f-display); font-size:24px; font-weight:800; letter-spacing:-.3px }
.sec-sub { color:var(--text-3); font-size:14px; font-weight:500; margin-bottom:28px; max-width:600px }

/* ===== CASINO CARDS ===== */
.casino-list { display:flex; flex-direction:column; gap:12px }

.casino-card {
  display:grid; grid-template-columns:56px 1.2fr .8fr .6fr auto;
  align-items:center; gap:20px;
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r); padding:20px 24px;
  transition:all .3s; position:relative; overflow:hidden;
}
.casino-card:hover {
  background:var(--surface-hover); border-color:var(--border-2);
  transform:translateY(-2px); box-shadow:0 8px 32px rgba(0,0,0,.2);
}

.casino-card.featured {
  border-color:rgba(255,184,0,.2);
  background:linear-gradient(135deg, rgba(255,184,0,.04), rgba(255,92,138,.02));
  box-shadow:0 0 40px rgba(255,184,0,.04);
}
.casino-card.featured::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:3px; background:var(--g-gold);
}

.casino-rank { font-family:var(--f-display); font-size:26px; font-weight:800; text-align:center }
.casino-rank.r1 { background:var(--g-gold); -webkit-background-clip:text; -webkit-text-fill-color:transparent }
.casino-rank.r2 { color:var(--text-2) }
.casino-rank.r3 { color:var(--text-3) }

.casino-info h3 { font-size:16px; font-weight:800; margin-bottom:4px }
.casino-info .casino-label { font-size:12px; font-weight:600; color:var(--text-3) }
.casino-label svg { width:12px; height:12px; display:inline-block; vertical-align:middle; color:var(--green) }

.casino-bonus { text-align:center }
.casino-bonus .bonus-value { font-family:var(--f-display); font-size:20px; font-weight:800; color:var(--gold) }
.casino-bonus .bonus-desc { font-size:11.5px; font-weight:600; color:var(--text-3); margin-top:2px }

.casino-rating { text-align:center }
.casino-rating .stars { display:flex; gap:2px; justify-content:center; margin-bottom:3px }
.casino-rating .stars svg { width:14px; height:14px; color:var(--gold) }
.casino-rating .rating-num { font-size:13px; font-weight:700 }

.casino-cta { display:flex; flex-direction:column; gap:6px; align-items:stretch; min-width:150px }
.casino-cta .btn { font-size:13px }

.featured-badge {
  position:absolute; top:0; left:80px; padding:3px 10px;
  background:var(--gold-dim); border:1px solid rgba(255,184,0,.15);
  border-radius:0 0 8px 8px;
  font-size:10px; font-weight:800; color:var(--gold); text-transform:uppercase; letter-spacing:.5px;
}

/* ===== INFO TABLE ===== */
.info-tbl { width:100%; border-collapse:collapse; font-size:14px }
.info-tbl tr { border-bottom:1px solid var(--border) }
.info-tbl td { padding:13px 14px }
.info-tbl td:first-child {
  font-weight:600; color:var(--text-2); display:flex;
  align-items:center; gap:8px; min-width:180px;
}
.info-tbl td:first-child svg { width:16px; height:16px; color:var(--text-3); flex-shrink:0 }
.info-tbl td:last-child { font-weight:700 }

/* ===== PAYTABLE ===== */
.paytable { display:grid; grid-template-columns:repeat(auto-fill, minmax(220px,1fr)); gap:10px; margin-top:16px }
.pay-card {
  background:var(--surface); border:1px solid var(--border); border-radius:12px;
  padding:16px; display:flex; align-items:center; gap:14px; transition:.25s;
}
.pay-card:hover { background:var(--surface-hover); transform:translateY(-1px) }
.pay-sym { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0 }
.pay-sym .sym { width:28px; height:28px }
.pay-sym.hi { background:linear-gradient(135deg, rgba(255,92,138,.08), rgba(168,85,247,.06)) }
.pay-sym.lo { background:linear-gradient(135deg, rgba(59,130,246,.08), rgba(34,197,94,.05)) }
.pay-sym.sc { background:linear-gradient(135deg, rgba(255,184,0,.12), rgba(249,115,22,.08)) }
.pay-nm { font-size:13.5px; font-weight:700; margin-bottom:2px }
.pay-vals { font-size:11.5px; font-weight:600; color:var(--text-3) }
.pay-vals b { color:var(--gold); font-weight:800 }

/* ===== FEATURES ===== */
.feat-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:12px; margin-top:16px }
.feat {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  padding:22px; transition:.3s; position:relative; overflow:hidden;
}
.feat::after {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:var(--g-brand); transform:scaleX(0); transform-origin:left; transition:.4s;
}
.feat:hover::after { transform:scaleX(1) }
.feat:hover { background:var(--surface-hover); transform:translateY(-2px) }
.feat-ico { width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:12px }
.feat-ico svg { width:18px; height:18px }
.feat h3 { font-size:14px; font-weight:800; margin:0 0 6px }
.feat p { color:var(--text-3); font-size:13px; font-weight:500; line-height:1.6 }

/* ===== STEPS ===== */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px }
.step {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  padding:24px 20px; transition:.3s; text-align:center;
}
.step:hover { background:var(--surface-hover); transform:translateY(-2px) }
.step-n {
  font-family:var(--f-display); font-size:28px; font-weight:800;
  background:var(--g-brand); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; opacity:.35; margin-bottom:8px;
}
.step h3 { font-size:14px; font-weight:800; margin:0 0 6px }
.step p { color:var(--text-3); font-size:12.5px; font-weight:500 }

/* ===== INLINE CTA ===== */
.inline-cta {
  background:linear-gradient(135deg, rgba(255,184,0,.04), rgba(255,92,138,.03));
  border:1px solid rgba(255,184,0,.1); border-radius:var(--r-lg);
  padding:32px; text-align:center; margin:32px 0;
}
.inline-cta h3 { font-family:var(--f-display); font-size:18px; font-weight:800; margin-bottom:6px }
.inline-cta p { color:var(--text-2); font-size:13.5px; font-weight:500; margin-bottom:16px }
.inline-cta .btn-row { display:flex; gap:10px; justify-content:center; flex-wrap:wrap }

/* ===== PROSE ===== */
.prose { color:var(--text-2); font-size:14.5px; font-weight:500; line-height:1.75 }
.prose p { margin-bottom:14px }
.prose strong { color:var(--text); font-weight:700 }
.prose h3 { font-size:16px; font-weight:800; color:var(--text); margin:24px 0 10px }

/* ===== PROS / CONS ===== */
.pc-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:16px }
.pc { background:var(--surface); border:1px solid var(--border); border-radius:var(--r); padding:22px }
.pc-h { display:flex; align-items:center; gap:6px; font-weight:800; font-size:13px; text-transform:uppercase; letter-spacing:.5px; margin-bottom:14px }
.pc-h svg { width:16px; height:16px }
.pc-h.pro { color:var(--green) }
.pc-h.con { color:var(--red) }
.pc ul { list-style:none }
.pc li {
  padding:6px 0; font-size:13px; font-weight:500; color:var(--text-2);
  display:flex; align-items:flex-start; gap:8px; border-bottom:1px solid var(--border);
}
.pc li:last-child { border:none }
.pc li svg { width:14px; height:14px; flex-shrink:0; margin-top:2px }
.pc:first-child li svg { color:var(--green) }
.pc:last-child li svg { color:var(--red) }

/* ===== VERSIONS ===== */
.ver-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(160px,1fr)); gap:10px; margin-top:16px }
.ver-card {
  background:var(--surface); border:1px solid var(--border); border-radius:12px;
  padding:18px; text-align:center; transition:.3s; cursor:pointer;
}
.ver-card:hover { background:var(--surface-hover); transform:translateY(-2px); border-color:var(--border-2) }
.ver-ico { width:48px; height:48px; margin:0 auto 10px; border-radius:14px; display:flex; align-items:center; justify-content:center }
.ver-card h4 { font-size:12.5px; font-weight:700; margin-bottom:3px }
.ver-card .ver-rtp { font-size:11px; font-weight:700; color:var(--gold) }

/* ===== FAQ ===== */
.faq-list { margin-top:16px }
.faq-item { border-bottom:1px solid var(--border) }
.faq-q {
  width:100%; background:none; border:none; padding:18px 0;
  font-family:var(--f-body); font-size:14.5px; font-weight:700;
  color:var(--text); text-align:left; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:12px; transition:.2s;
}
.faq-q:hover { color:var(--gold) }
.faq-q svg { width:18px; height:18px; flex-shrink:0; transition:transform .3s; color:var(--text-3) }
.faq-item.open .faq-q svg { transform:rotate(180deg); color:var(--gold) }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease }
.faq-item.open .faq-a { max-height:400px }
.faq-a p { color:var(--text-3); font-size:13.5px; font-weight:500; line-height:1.75; padding-bottom:18px }

/* ===== AUTHOR ===== */
.author-box {
  display:flex; gap:16px; align-items:flex-start;
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r); padding:24px; margin-top:20px;
}
.author-ava {
  width:56px; height:56px; border-radius:14px; background:var(--g-brand);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.author-ava svg { width:24px; height:24px; color:#fff }
.author-info h4 { font-size:14px; font-weight:800; margin-bottom:2px }
.author-info .author-role { font-size:12px; font-weight:600; color:var(--text-3); margin-bottom:6px }
.author-info p { font-size:13px; font-weight:500; color:var(--text-2); line-height:1.6 }

/* ===== FOOTER ===== */
.ftr { position:relative; z-index:1; padding:40px 0; border-top:1px solid var(--border) }
.ftr-top { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; margin-bottom:24px }
.ftr-left { display:flex; align-items:center; gap:12px }
.badge-18 {
  width:32px; height:32px; border:2px solid var(--brand); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:12px; color:var(--brand);
}
.ftr-links { display:flex; gap:18px; list-style:none; flex-wrap:wrap }
.ftr-links a { font-size:12.5px; font-weight:600; color:var(--text-3); transition:.2s }
.ftr-links a:hover { color:var(--text-2) }
.ftr-disc { font-size:11.5px; font-weight:500; color:var(--text-3); line-height:1.7 }
.ftr-disc strong { color:var(--text-2) }

/* ===== BREADCRUMBS ===== */
.crumbs { padding:12px 0 0; font-size:12.5px; font-weight:600; color:var(--text-3); display:flex; align-items:center; gap:6px; flex-wrap:wrap }
.crumbs a { color:var(--text-3); transition:.2s }
.crumbs a:hover { color:var(--text-2) }
.crumbs .sep { opacity:.35 }
.crumbs .cur { color:var(--text-2) }

/* ===== REVIEWS ===== */
.reviews-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:12px; margin-top:16px }
.review-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r); padding:22px; transition:.3s }
.review-card:hover { background:var(--surface-hover); transform:translateY(-2px) }
.review-top { display:flex; align-items:center; gap:12px; margin-bottom:12px }
.review-ava {
  width:40px; height:40px; border-radius:50%; display:flex;
  align-items:center; justify-content:center; font-weight:800; font-size:15px; color:#fff; flex-shrink:0;
}
.review-name { font-size:13.5px; font-weight:700 }
.review-date { font-size:11px; font-weight:600; color:var(--text-3) }
.review-stars { display:flex; gap:2px; margin-bottom:10px }
.review-stars svg { width:14px; height:14px; fill:var(--gold) }
.review-text { font-size:13px; font-weight:500; color:var(--text-2); line-height:1.65 }

/* ===== SIMILAR SLOTS ===== */
.sim-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(155px,1fr)); gap:10px; margin-top:16px }
.sim-card {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  padding:18px 14px; text-align:center; transition:.3s; cursor:pointer; display:block;
}
.sim-card:hover { background:var(--surface-hover); transform:translateY(-3px); border-color:var(--border-2) }
.sim-ico { width:48px; height:48px; margin:0 auto 10px; border-radius:14px; display:flex; align-items:center; justify-content:center }
.sim-card h4 { font-size:12.5px; font-weight:700; margin-bottom:2px }
.sim-prov { font-size:10.5px; font-weight:600; color:var(--text-3) }
.sim-rtp { font-size:11.5px; font-weight:700; color:var(--gold); margin-top:5px }

/* ===== SEO TEXT ===== */
.seo-text { margin-top:16px; columns:2; column-gap:32px; font-size:13.5px; font-weight:500; color:var(--text-3); line-height:1.8 }
.seo-text p { margin-bottom:14px; break-inside:avoid }
.seo-text strong { color:var(--text-2); font-weight:700 }
.seo-text h3 { font-size:15px; font-weight:800; color:var(--text-2); margin:20px 0 8px; break-after:avoid }

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position:fixed; top:-60px; left:0; right:0; z-index:99; height:52px;
  background:rgba(7,6,13,.95); backdrop-filter:blur(20px) saturate(180%);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; gap:16px;
  transition:top .4s cubic-bezier(.4,0,.2,1); padding:0 20px;
}
.sticky-cta.show { top:var(--hdr) }
.sticky-cta-text { font-size:13.5px; font-weight:700; color:var(--text-2) }
.sticky-cta-text b { color:var(--gold) }
.sticky-cta .btn { padding:7px 18px; font-size:12.5px }

/* ===== DEMO PLACEHOLDER ===== */
.demo-box {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg);
  padding:48px; text-align:center; margin-top:8px;
}
.demo-ico {
  width:72px; height:72px; margin:0 auto 16px; background:var(--gold-dim);
  border-radius:18px; display:flex; align-items:center; justify-content:center;
}
.demo-ico svg { width:32px; height:32px; color:var(--gold) }
.demo-title { color:var(--text-2); font-weight:600; font-size:15px; margin-bottom:4px }
.demo-sub { color:var(--text-3); font-size:12.5px; font-weight:500; margin-bottom:20px }

/* ===== REVEAL ===== */
.rv { opacity:0; transform:translateY(20px); transition:all .5s cubic-bezier(.4,0,.2,1) }
.rv.visible { opacity:1; transform:translateY(0) }

/* ===== REEL ANIMATION ===== */
@keyframes reelFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }
.reel .cell:nth-child(1) { animation:reelFloat 3s ease-in-out infinite }
.reel .cell:nth-child(2) { animation:reelFloat 3s ease-in-out .5s infinite }
.reel .cell:nth-child(3) { animation:reelFloat 3s ease-in-out 1s infinite }

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
  .casino-card { grid-template-columns:44px 1fr; gap:10px 14px; padding:16px }
  .casino-rank { font-size:22px }
  .casino-bonus {
    text-align:left; padding:10px 0 0; border-top:1px solid var(--border);
    grid-column:1 / -1; display:flex; align-items:center; gap:8px;
  }
  .casino-bonus .bonus-value { font-size:16px }
  .casino-rating { display:none }
  .casino-cta { flex-direction:row; min-width:auto; grid-column:1 / -1 }
  .hero-top { grid-template-columns:1fr; gap:24px }
  .hero-visual { max-width:300px; margin:0 auto }
}

@media (max-width:768px) {
  .burger { display:flex }
  .hdr-nav {
    position:fixed; top:var(--hdr); left:0; right:0;
    background:rgba(14,12,24,.97); backdrop-filter:blur(20px);
    flex-direction:column; padding:8px 16px 16px; gap:0;
    border-bottom:1px solid var(--border);
    transform:translateY(-110%); opacity:0; pointer-events:none;
    transition:all .35s cubic-bezier(.4,0,.2,1);
  }
  .hdr-nav.open { transform:translateY(0); opacity:1; pointer-events:all }
  .hdr-nav a { padding:12px 14px; font-size:14px; border-radius:10px; width:100% }
  .hdr-r .btn-lg { padding:8px 16px; font-size:12px }
  .qs-row { grid-template-columns:repeat(2,1fr) }
  .steps { grid-template-columns:1fr }
  .pc-row { grid-template-columns:1fr }
  .feat-grid { grid-template-columns:1fr }
}

@media (max-width:480px) {
  .hero h1 { font-size:28px }
  .hero-sub { font-size:14px }
  .hero-btns .btn { width:100% }
  .hero-visual { max-width:260px }
  .cell { width:40px; height:40px }
  .sym { width:24px; height:24px }
  .sym-candy-r, .sym-candy-b, .sym-candy-g, .sym-candy-p { width:20px; height:20px }
  .sym-candy-g { height:18px }
  .sym-scatter { width:24px; height:24px; font-size:8px }
  .sec { padding:40px 0 }
  .sec-hdr h2 { font-size:20px }
  .trust-items { gap:16px }
  .trust-item { font-size:11.5px }
  .casino-card { padding:14px }
  .casino-cta { flex-direction:column }
  .sticky-cta-text { font-size:11px }
  .sticky-cta .btn { padding:6px 12px; font-size:11px }
  .ftr-top { flex-direction:column; align-items:flex-start }
  .seo-text { columns:1 }
  .paytable { grid-template-columns:1fr }
  .inline-cta { padding:24px 16px }
  .reviews-grid { grid-template-columns:1fr }
}

/* ===== PROSE (inner pages) ===== */
.prose { max-width:800px; font-size:15px; line-height:1.8; color:var(--text-2) }
.prose h3 { font-family:var(--f-display); font-size:20px; font-weight:800; color:var(--text-1); margin:32px 0 10px }
.prose p { margin-bottom:14px }
.prose a { color:var(--gold); text-decoration:underline; text-underline-offset:2px }
.prose a:hover { color:#fff }

/* ===== AUTHOR BLOCK ===== */
.author-box { display:flex; gap:20px; padding:28px; background:var(--surface); border:1px solid var(--border); border-radius:16px }
.author-avatar img, .author-initials { width:72px; height:72px; border-radius:50%; object-fit:cover; flex-shrink:0 }
.author-initials { display:flex; align-items:center; justify-content:center; background:var(--g-brand); color:#fff; font-size:22px; font-weight:800; font-family:var(--f-display) }
.author-meta { display:flex; flex-wrap:wrap; align-items:baseline; gap:8px; margin-bottom:6px }
.author-name { font-family:var(--f-display); font-size:17px; font-weight:800; color:var(--text) }
.author-role { font-size:13px; color:var(--text-3); background:var(--surface-2); padding:2px 10px; border-radius:20px }
.author-bio { font-size:14px; line-height:1.7; color:var(--text-2); margin-bottom:8px }
.author-dates { display:flex; flex-wrap:wrap; gap:16px; font-size:12px; color:var(--text-3) }
@media(max-width:600px){ .author-box { flex-direction:column; align-items:center; text-align:center } .author-meta { justify-content:center } .author-dates { justify-content:center } }

/* ===== GALLERY BLOCK ===== */
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:16px; margin-top:20px }
.gallery-item { position:relative; border-radius:12px; overflow:hidden; display:block; aspect-ratio:16/9; background:var(--bg-3) }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .3s }
.gallery-item:hover img { transform:scale(1.05) }
.gallery-zoom { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.5); opacity:0; transition:opacity .3s }
.gallery-zoom i { width:32px; height:32px; color:#fff }
.gallery-item:hover .gallery-zoom { opacity:1 }

/* ===== CASINO TABLE BLOCK ===== */
.casino-tbl-wrap { overflow-x:auto; margin-top:20px; border-radius:12px; border:1px solid var(--border) }
.casino-tbl { width:100%; border-collapse:collapse; font-size:14px }
.casino-tbl th { padding:12px 16px; text-align:left; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:var(--text-3); background:var(--bg-3); border-bottom:1px solid var(--border) }
.casino-tbl td { padding:14px 16px; border-bottom:1px solid var(--border); vertical-align:middle }
.casino-tbl tr:last-child td { border-bottom:none }
.casino-tbl tr:hover td { background:var(--surface) }
.casino-tbl-name strong { display:block; font-size:15px; color:var(--text); margin-bottom:2px }
.casino-tbl-license { font-size:11px; color:var(--text-3) }
.casino-tbl-bonus { font-weight:700; color:var(--gold); font-size:14px }
.casino-tbl-bonus-desc { font-size:12px; color:var(--text-3); margin-top:2px }
.casino-tbl-rating { display:flex; align-items:center; gap:6px; font-weight:700; color:var(--gold) }
.casino-tbl-stars { display:flex; gap:1px }
.casino-tbl-stars i { color:var(--gold); fill:var(--gold) }

/* ===== FEATURES BLOCK ===== */
.features-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(240px, 1fr)); gap:16px; margin-top:20px }
.feature-card { padding:24px; background:var(--surface); border:1px solid var(--border); border-radius:14px; transition:border-color .2s, transform .2s }
.feature-card:hover { border-color:var(--brand); transform:translateY(-2px) }
.feature-icon { width:44px; height:44px; border-radius:12px; background:var(--brand-dim); display:flex; align-items:center; justify-content:center; margin-bottom:14px }
.feature-icon i { width:22px; height:22px; color:var(--brand) }
.feature-card h3 { font-family:var(--f-display); font-size:15px; font-weight:700; color:var(--text); margin-bottom:6px }
.feature-card p { font-size:13px; line-height:1.6; color:var(--text-2); margin:0 }

/* ===== PAYMENT ICONS (footer) ===== */
.payment-bar { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:12px; padding:16px 0; margin-top:16px; border-top:1px solid var(--border) }
.payment-icon { display:flex; align-items:center; justify-content:center; width:52px; height:32px; background:var(--surface-2); border-radius:6px; opacity:.6; transition:opacity .2s }
.payment-icon:hover { opacity:1 }
.payment-icon svg { width:32px; height:20px }

/* ===== FOCUS / ACCESSIBILITY ===== */
:focus-visible { outline:2px solid var(--gold); outline-offset:2px; border-radius:4px }
.btn:focus-visible { outline-offset:3px }
