/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #0d0718;
  --bg2:      #120d22;
  --bg3:      #1a1232;
  --card:     #1c1430;
  --card2:    #231952;
  --accent:   #a855f7;
  --accent2:  #7c3aed;
  --gold:     #f59e0b;
  --text:     #e2d9f3;
  --muted:    #9480b8;
  --border:   #2e2050;
  --green:    #22c55e;
  --radius:   12px;
  --radius-lg:20px;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.65; }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; color: var(--text); }

/* ===== LAYOUT ===== */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; }

/* ===== NAV ===== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,7,24,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { font-size: 1.2rem; font-weight: 800; color: #fff; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; gap: 6px; }
.lang-switcher a { font-size: .8rem; font-weight: 600; color: var(--muted); background: var(--card); padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border); transition: all .2s; }
.lang-switcher a.active, .lang-switcher a:hover { color: #fff; background: var(--accent2); border-color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff; padding: 8px 18px; border-radius: 8px; font-weight: 700; font-size: .9rem; transition: background .2s; }
.nav-cta:hover { background: var(--accent2); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d0718 0%, #1a0a35 50%, #0d0718 100%);
  padding: 80px 20px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(168,85,247,.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(168,85,247,.15); border: 1px solid rgba(168,85,247,.3); color: var(--accent); font-size: .8rem; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: .05em; text-transform: uppercase; }
.hero-title { color: #fff; margin-bottom: 16px; }
.hero-title span { color: var(--accent); }
.hero-desc { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.hero-bonus-box { background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(124,58,237,.1)); border: 1px solid rgba(168,85,247,.4); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 28px; }
.hero-bonus-amount { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-bonus-amount span { color: var(--gold); }
.hero-bonus-fs { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 1rem; transition: background .2s, transform .1s; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-secondary { display: inline-block; background: transparent; color: var(--text); padding: 14px 24px; border-radius: 10px; font-weight: 600; border: 1px solid var(--border); transition: border-color .2s; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-trust { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--muted); }
.trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-banner-img { width: 100%; max-width: 480px; border-radius: var(--radius-lg); border: 1px solid var(--border); object-fit: cover; }
.hero-float-badge { position: absolute; background: var(--card2); border: 1px solid var(--accent); border-radius: 10px; padding: 10px 16px; }
.hero-float-badge.top-right { top: 12px; right: -10px; }
.hero-float-badge.bot-left  { bottom: 24px; left: -10px; }
.float-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.float-val   { font-size: 1.1rem; font-weight: 800; color: #fff; }
.float-val span { color: var(--gold); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(7, 1fr); }
.stat-item { padding: 18px 10px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.stat-val { font-size: .95rem; font-weight: 700; color: var(--gold); }

/* ===== TOC ===== */
.toc-nav { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 12px 20px; }
.toc-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.toc-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-right: 8px; white-space: nowrap; }
.toc-inner a { font-size: .85rem; color: var(--muted); background: var(--card); padding: 5px 12px; border-radius: 6px; border: 1px solid var(--border); transition: all .2s; white-space: nowrap; }
.toc-inner a:hover { color: #fff; border-color: var(--accent); }

/* ===== SECTION BADGE ===== */
.sec-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(168,85,247,.12); color: var(--accent); font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }

/* ===== LAST UPDATED ===== */
.last-updated { font-size: .8rem; color: var(--muted); margin-bottom: 32px; }

/* ===== AUTHOR BIO ===== */
.author-bio { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--card2); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-name { font-weight: 700; font-size: .95rem; color: #fff; }
.author-title { font-size: .8rem; color: var(--muted); }

/* ===== PROS CONS ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.pros, .cons { background: var(--card); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid #ef4444; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros ul li::before { content: '✅ '; }
.cons ul li::before { content: '❌ '; }
.pros ul li, .cons ul li { padding: 6px 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }

/* ===== GAMES SECTION ===== */
.games-section { background: var(--bg2); }
.tab-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.tab-btn { background: var(--card); color: var(--muted); border: 1px solid var(--border); padding: 9px 18px; border-radius: 8px; font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .2s; }
.tab-btn.active, .tab-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.tab-pane { display: none; }
.tab-pane.active { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.game-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform .2s, border-color .2s; cursor: pointer; }
.game-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.game-card img { width: 100%; aspect-ratio: 300/205; object-fit: cover; }
.game-info { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); padding: 20px 10px 10px; }
.game-name { font-size: .8rem; font-weight: 700; color: #fff; }
.game-provider { font-size: .7rem; color: var(--muted); }
.game-card a { position: absolute; inset: 0; }

/* ===== BONUS CARDS ===== */
.bonus-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.bonus-card { background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: border-color .2s; }
.bonus-card:hover { border-color: var(--accent); }
.bonus-card-img { width: 100%; height: 160px; object-fit: cover; background: linear-gradient(135deg, var(--card2), var(--bg3)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.bonus-card-body { padding: 18px; }
.bonus-card-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.bonus-card-amount { font-size: 1.4rem; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.bonus-card-desc { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.bonus-card-steps { list-style: none; padding: 0; margin-bottom: 14px; }
.bonus-card-steps li { padding: 5px 0; font-size: .82rem; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.bonus-card-steps li:last-child { border-bottom: none; }
.step-num { background: var(--accent2); color: #fff; border-radius: 50%; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; }
.btn-bonus { display: block; text-align: center; background: var(--accent); color: #fff; padding: 11px; border-radius: 8px; font-weight: 700; font-size: .9rem; }
.btn-bonus:hover { background: var(--accent2); }

/* ===== FAKE REG FORM ===== */
.fake-reg-section { background: var(--bg2); }
.fake-reg-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 0 20px; }
.fake-reg-visual { display: flex; justify-content: center; }
.fake-reg-visual img { max-width: 340px; border-radius: var(--radius-lg); }
.fake-reg-wrap { cursor: pointer; user-select: none; }
.fake-reg-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: border-color .2s; }
.fake-reg-wrap:hover .fake-reg-box { border-color: var(--accent); }
.fake-reg-title { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.fake-reg-sub { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
.fake-field { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; margin-bottom: 12px; color: var(--muted); font-size: .9rem; cursor: text; transition: border-color .2s; }
.fake-reg-wrap:hover .fake-field { border-color: rgba(168,85,247,.4); }
.fake-field.placeholder { color: #4a3d6e; }
.fake-reg-btn { display: block; width: 100%; text-align: center; background: var(--accent); color: #fff; padding: 14px; border-radius: 10px; font-weight: 800; font-size: 1rem; margin-top: 16px; transition: background .2s; }
.fake-reg-wrap:hover .fake-reg-btn { background: var(--accent2); }
.fake-reg-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ===== VIP TABLE ===== */
.vip-section { background: var(--bg3); }
.vip-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vip-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.vip-table th { background: var(--card2); color: var(--accent); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; padding: 12px 16px; text-align: center; border-bottom: 2px solid var(--accent); }
.vip-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid var(--border); font-size: .9rem; }
.vip-table tr:hover td { background: rgba(168,85,247,.05); }
.vip-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; }
.vip-badge.bronze  { background: #a0522d22; color: #cd7f32; border: 1px solid #cd7f32; }
.vip-badge.silver  { background: #c0c0c022; color: #c0c0c0; border: 1px solid #c0c0c0; }
.vip-badge.gold    { background: #ffd70022; color: #ffd700; border: 1px solid #ffd700; }
.vip-badge.plat    { background: #e5e4e222; color: #e5e4e2; border: 1px solid #e5e4e2; }
.vip-badge.diamond { background: #b9f2ff22; color: #b9f2ff; border: 1px solid #b9f2ff; }
.vip-badge.elite   { background: #ff69b422; color: #ff69b4; border: 1px solid #ff69b4; }
.vip-badge.royal   { background: #a855f722; color: var(--accent); border: 1px solid var(--accent); }
.vip-badge.legend  { background: #f59e0b22; color: var(--gold); border: 1px solid var(--gold); }

/* ===== PROVIDERS ===== */
.providers-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 24px; }
.provider-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 12px; text-align: center; transition: border-color .2s; }
.provider-card:hover { border-color: var(--accent); }
.provider-name { font-size: .8rem; font-weight: 600; color: var(--text); }

/* ===== PAYMENTS ===== */
.payment-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin: 24px 0; }
.payment-logo-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 10px; text-align: center; }
.payment-logo-name { font-size: .75rem; font-weight: 600; color: var(--text); margin-top: 4px; }
.payment-logo-icon { font-size: 1.4rem; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.payments-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.payments-table th { background: var(--card2); color: var(--accent); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; padding: 12px 14px; text-align: left; border-bottom: 2px solid var(--accent); }
.payments-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.payments-table tr:hover td { background: rgba(168,85,247,.04); }
.badge-yes { color: var(--green); font-weight: 700; }
.badge-no  { color: #ef4444; font-weight: 700; }

/* ===== HOW-TO STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.step-block { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; position: relative; }
.step-number { position: absolute; top: -14px; left: 18px; background: var(--accent); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; }
.step-title { font-weight: 700; color: #fff; margin-bottom: 6px; font-size: .95rem; }
.step-desc { font-size: .85rem; color: var(--muted); margin: 0; }

/* ===== USER REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.review-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.reviewer { font-weight: 700; color: #fff; font-size: .9rem; }
.review-date { font-size: .75rem; color: var(--muted); }
.stars { color: var(--gold); font-size: .9rem; margin-bottom: 8px; }
.review-text { font-size: .85rem; color: var(--muted); margin: 0; }

/* ===== FAQ ===== */
.faq-list { margin-top: 24px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; background: var(--card); border: none; color: #fff; font-size: .95rem; font-weight: 600; padding: 16px 20px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after { content: '+'; color: var(--accent); font-size: 1.3rem; font-weight: 400; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 16px 20px; background: var(--bg3); color: var(--muted); font-size: .9rem; }
.faq-item.open .faq-a { display: block; }

/* ===== LICENSE / FOOTER ===== */
.license-section { background: var(--bg2); border-top: 1px solid var(--border); }
.license-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.resp-logos { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin: 20px 0; }
.resp-badge { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; font-size: .8rem; color: var(--muted); font-weight: 600; }
.site-footer { background: #080512; border-top: 1px solid var(--border); padding: 28px 20px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-brand { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-brand span { color: var(--accent); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; color: var(--muted); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 16px; }
.footer-disc { font-size: .78rem; color: #4a3d6e; line-height: 1.6; }
.footer-disc a { color: var(--muted); }

/* ===== STICKY CTA ===== */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: linear-gradient(90deg, var(--accent2), var(--accent)); padding: 14px 20px calc(14px + env(safe-area-inset-bottom)); display: none; align-items: center; justify-content: space-between; }
.sticky-cta-text { color: #fff; font-weight: 700; font-size: .95rem; }
.sticky-cta-btn { background: #fff; color: var(--accent2); padding: 8px 20px; border-radius: 8px; font-weight: 800; font-size: .9rem; white-space: nowrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tab-pane.active { grid-template-columns: repeat(4, 1fr); }
  .providers-grid { grid-template-columns: repeat(4, 1fr); }
  .payment-logos { grid-template-columns: repeat(4, 1fr); }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(5) { border-top: 1px solid var(--border); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .fake-reg-inner { grid-template-columns: 1fr; }
  .fake-reg-visual { display: none; }
  .bonus-cards { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .lang-switcher { display: none; }
  .tab-pane.active { grid-template-columns: repeat(3, 1fr); }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-logos { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .sticky-cta { display: flex; }
  body { padding-bottom: 65px; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  section { padding: 40px 0; }
  .bonus-cards { grid-template-columns: 1fr; }
  .tab-pane.active { grid-template-columns: repeat(2, 1fr); }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-logos { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
}
