:root {
  --bg-dark: #0a0c10;
  --bg-card: #12151c;
  --bg-card-hover: #181c26;
  --bg-accent: #1a1f2e;
  --border: #1e2333;
  --primary: #22c55e;
  --primary-light: #4ade80;
  --primary-dark: #16a34a;
  --accent: #059669;
  --accent-light: #34d399;
  --green: #22c55e;
  --red: #ef4444;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #94a3b8;
  --gradient-hero: linear-gradient(135deg, #0a0c10 0%, #111827 40%, #052e16 100%);
  --gradient-accent: linear-gradient(135deg, #22c55e, #059669);
  --gradient-gold: linear-gradient(135deg, #22c55e, #16a34a);
  --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px rgba(34,197,94,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,12,16,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 68px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.4rem; letter-spacing: -0.5px;
}

.logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 900; color: #000;
}

.nav { display: flex; gap: 4px; }

.nav a {
  padding: 8px 16px; border-radius: 8px;
  font-weight: 500; font-size: 0.88rem;
  color: var(--text-dim); transition: all 0.2s;
}

.nav a:hover, .nav a.active {
  color: var(--text); background: var(--bg-accent);
}

.header-btns { display: flex; gap: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 22px; border-radius: 9px;
  font-family: var(--font-main); font-weight: 600; font-size: 0.88rem;
  cursor: pointer; border: none; transition: all 0.25s;
  text-decoration: none;
}

.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary-light); }

.btn-primary {
  background: var(--gradient-accent); color: #000; font-weight: 700;
  box-shadow: 0 4px 16px rgba(34,197,94,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(34,197,94,0.3); }

.btn-gold { background: var(--gradient-gold); color: #000; font-weight: 700; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(34,197,94,0.3); }

.btn-lg { padding: 14px 36px; font-size: 1rem; border-radius: 12px; }

.mobile-menu-btn {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer; padding: 8px;
}

.hero {
  padding: 120px 24px 0;
  background: var(--gradient-hero);
  position: relative; overflow: hidden;
  text-align: center;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(34,197,94,0.06) 0%, transparent 60%);
}

.hero-inner {
  max-width: 760px; margin: 0 auto;
  position: relative; z-index: 2;
  padding-bottom: 48px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  padding: 6px 18px; border-radius: 100px;
  font-weight: 600; font-size: 0.8rem; color: var(--primary-light);
  margin-bottom: 24px; letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 18px;
}

.hero h1 .accent { color: var(--primary-light); }

.hero-desc {
  font-size: 1.1rem; color: var(--text-dim);
  max-width: 600px; margin: 0 auto 32px; line-height: 1.7;
}

.hero-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 12px; }

.hero-footer { font-size: 0.78rem; color: var(--text-muted); }
.hero-footer a { text-decoration: underline; }

.facts-strip {
  background: var(--bg-card); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
}

.fact {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.fact:last-child { border-right: none; }
.fact-value { font-weight: 800; font-size: 1.2rem; margin-bottom: 2px; }
.fact-label { font-size: 0.8rem; color: var(--text-muted); }

.content { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.article-section { padding: 64px 0; }

.article-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px;
}

.article-section > p,
.article-text {
  color: var(--text-dim); font-size: 1rem;
  line-height: 1.8; margin-bottom: 20px; max-width: 800px;
}

.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0;
}

.pros, .cons {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
}

.pros h3, .cons h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.pros h3 { color: var(--green); }
.cons h3 { color: var(--red); }

.pros ul, .cons ul { list-style: none; }

.pros ul li, .cons ul li {
  padding: 6px 0 6px 22px; position: relative;
  font-size: 0.92rem; color: var(--text-dim);
}

.pros ul li::before { content: '+'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons ul li::before { content: '−'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.rating-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; align-items: center; gap: 20px;
  margin: 32px 0;
}

.rating-score {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: #000;
}

.rating-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.rating-info p { font-size: 0.88rem; color: var(--text-dim); }

.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin: 32px 0;
}

.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color 0.2s;
}

.info-card:hover { border-color: var(--primary); }

.info-card-icon { font-size: 1.4rem; margin-bottom: 12px; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

.data-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0; overflow: hidden;
}

.data-table thead { background: var(--bg-accent); }

.data-table th {
  padding: 14px 18px; text-align: left;
  font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #cbd5e1; border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.data-table tbody tr { transition: background 0.15s; }
.data-table tbody tr:hover { background: var(--bg-card-hover); }

.badge {
  display: inline-flex; padding: 3px 10px; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600;
}
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-blue { background: rgba(34,197,94,0.15); color: #60a5fa; }
.badge-gold { background: rgba(34,197,94,0.15); color: var(--primary-light); }

.crypto-badge {
  display: inline-flex; padding: 3px 10px; border-radius: 6px;
  font-family: var(--font-mono); font-size: 0.78rem;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.15);
  color: var(--primary-light);
}

.promo-box {
  background: var(--gradient-hero);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; margin: 40px 0;
  text-align: center; position: relative; overflow: hidden;
}

.promo-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.08) 0%, transparent 70%);
}

.promo-box > * { position: relative; z-index: 1; }
.promo-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 2px; color: var(--primary-light); font-weight: 600; margin-bottom: 10px; }
.promo-box h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 6px; }
.promo-amount { font-size: 1.05rem; color: var(--primary-light); font-weight: 600; margin-bottom: 14px; }
.promo-box p { color: var(--text-dim); max-width: 520px; margin: 0 auto 20px; font-size: 0.95rem; }

.faq { margin: 32px 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: var(--font-main); font-size: 1rem; font-weight: 600;
  padding: 18px 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}

.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--text-muted); transition: transform 0.2s; }
.faq-q.open::after { content: '−'; }

.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: var(--text-dim); font-size: 0.92rem; line-height: 1.7;
}

.faq-a.open { max-height: 500px; padding-bottom: 18px; }

.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin: 32px 0; counter-reset: step;
}

.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  position: relative; counter-increment: step;
}

.step-card::before {
  content: counter(step);
  position: absolute; top: -12px; left: 20px;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #000;
}

.step-card h3 { font-size: 0.95rem; font-weight: 700; margin: 8px 0; }
.step-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; }

.providers-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0;
}

.provider-tag {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 16px;
  font-size: 0.82rem; color: var(--text-dim);
}

.breadcrumb {
  padding: 100px 24px 0;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted);
}

.breadcrumb a { color: var(--primary-light); }

.page-hero {
  padding: 24px 0 40px;
}

.page-hero .page-tag {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary-light);
  font-weight: 600; margin-bottom: 10px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; letter-spacing: -1px; margin-bottom: 16px;
}

.page-hero .page-intro {
  color: var(--text-dim); font-size: 1.05rem;
  max-width: 720px; line-height: 1.7;
}

.page-hero .page-intro strong { color: var(--text); font-weight: 600; }

.divider {
  height: 1px; background: var(--border); margin: 48px 0;
}

.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 56px 24px 28px;
  margin-top: 64px;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}

.footer-brand p { color: var(--text-dim); font-size: 0.88rem; margin-top: 14px; line-height: 1.6; }

.footer-heading {
  display: block; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted);
  margin-bottom: 14px; font-weight: 600;
}

.footer-col a {
  display: block; padding: 5px 0;
  color: var(--text-dim); font-size: 0.88rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  max-width: 1200px; margin: 36px auto 0;
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; gap: 12px;
}

.footer-badges { display: flex; gap: 10px; }

.footer-badge {
  background: var(--bg-accent); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 7px;
  font-size: 0.72rem; font-weight: 600;
}

.mobile-sticky-cta {
  display: none !important;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 16px;
  background: rgba(10,12,16,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  gap: 10px;
}
.mobile-sticky-cta .btn { flex: 1; padding: 14px 0; font-size: 0.95rem; text-align: center; }

.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary); color: #000; border: none;
  font-size: 1.2rem; font-weight: 700; cursor: pointer; z-index: 999;
  opacity: 0; transition: all 0.3s; display: flex;
  align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; }

@media (max-width: 768px) {
  .nav {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,12,16,0.98); backdrop-filter: blur(20px);
    padding: 16px 24px; border-bottom: 1px solid var(--border);
    gap: 4px; z-index: 999;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; font-size: 1rem; min-height: 48px; display: flex; align-items: center; }
  .mobile-menu-btn { display: block; }
  .header-btns .btn-outline { display: none; }
  .mobile-sticky-cta { display: flex !important; }
  .facts-strip { grid-template-columns: 1fr 1fr; }
  .fact { border-bottom: 1px solid var(--border); }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 72px; }
  .scroll-top { bottom: 84px; }
  .btn { min-height: 48px; }
  .footer-col a { min-height: 48px; display: flex; align-items: center; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .facts-strip { grid-template-columns: 1fr; }
}

.games-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--bg-accent);
}

.game-card-body {
  padding: 12px;
}

.game-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.game-card-rtp {
  font-size: 0.72rem;
  color: var(--primary-light);
  font-family: var(--font-mono);
  margin-top: 4px;
}
