:root {
  --bg-dark: #0a0c10;
  --bg-card: #12151c;
  --bg-card-hover: #181c26;
  --bg-accent: #1a1f2e;
  --border: #1e2333;
  --primary: #f59e0b;
  --primary-light: #fbbf24;
  --primary-dark: #d97706;
  --accent: #ea580c;
  --accent-light: #f97316;
  --green: #22c55e;
  --red: #ef4444;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #94a3b8;
  --gradient-hero: linear-gradient(135deg, #0a0c10 0%, #111827 40%, #2a1a00 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b, #ea580c);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #d97706);
  --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(245,158,11,0.1);
}

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

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

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--primary); }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,12,16,0.92); backdrop-filter: blur(12px); 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; color: var(--text); font-weight: 800; font-size: 1.15rem; letter-spacing: 1px; }
.logo-icon {
  width: 36px; height: 36px; background: var(--gradient-accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; color: #fff;
}
.nav { display: flex; gap: 6px; }
.nav a {
  padding: 8px 16px; border-radius: 8px; color: var(--text-dim);
  font-size: 0.9rem; font-weight: 600; transition: all 0.2s;
}
.nav a:hover { color: var(--text); background: var(--bg-accent); }
.header-btns { display: flex; gap: 8px; }
.mobile-menu-btn {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); font-size: 1.3rem; padding: 6px 10px; border-radius: 8px; cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: all 0.25s; border: none; cursor: pointer;
  font-family: var(--font-main); min-height: 48px;
}
.btn-primary { background: var(--gradient-accent); color: #fff; }
.btn-primary:hover { opacity: 0.9; color: #fff; transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-light); }
.btn-gold { background: var(--gradient-accent); color: #fff; font-weight: 800; }
.btn-gold:hover { opacity: 0.9; color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }

/* HERO */
.hero {
  padding: 140px 24px 80px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(59,130,246,0.3);
  border-radius: 20px; font-size: 0.75rem; font-weight: 700;
  color: var(--primary-light); letter-spacing: 2px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.accent { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.05rem; color: var(--text-dim); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-footer { margin-top: 24px; color: var(--text-dim); font-size: 0.8rem; }
.hero-footer a { color: var(--text-dim); text-decoration: underline; }

/* FACTS STRIP */
.facts-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border-bottom: 1px solid var(--border);
}
.fact {
  background: var(--bg-card); padding: 24px 16px; text-align: center;
}
.fact-value {
  font-size: 1.5rem; font-weight: 800;
  background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fact-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; font-weight: 600; }

/* CONTENT */
.content { max-width: 880px; margin: 0 auto; padding: 60px 24px 40px; }
.article-section { margin-bottom: 20px; }
.article-section h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.article-text { color: var(--text-dim); margin-bottom: 16px; font-size: 0.95rem; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* BREADCRUMB */
.breadcrumb {
  max-width: 880px; margin: 0 auto;
  padding: 100px 24px 0;
  font-size: 0.82rem; color: var(--text-dim);
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span { color: var(--text-muted); }

/* RATING BOX */
.rating-box {
  display: flex; align-items: center; gap: 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 32px; margin: 24px 0;
}
.rating-score {
  font-size: 3rem; font-weight: 900; min-width: 80px; text-align: center;
  background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rating-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.rating-info p { color: var(--text-dim); font-size: 0.9rem; }

/* PROS CONS */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros, .cons {
  background: var(--bg-card); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border);
}
.pros h3 { color: var(--green); font-size: 1rem; margin-bottom: 12px; }
.cons h3 { color: var(--red); font-size: 1rem; margin-bottom: 12px; }
.pros li, .cons li {
  font-size: 0.88rem; color: var(--text-dim); margin-bottom: 8px;
  padding-left: 20px; position: relative; list-style: none;
}
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* INFO CARDS */
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 20px 0; }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: border-color 0.3s;
}
.info-card:hover { border-color: var(--primary); }
.info-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.info-card p { font-size: 0.85rem; color: var(--text-dim); }

/* TABLES */
.data-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.88rem; }
.data-table th {
  background: var(--bg-accent); padding: 12px 16px; text-align: left;
  font-weight: 700; border-bottom: 2px solid var(--border); color: #cbd5e1;
}
.data-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-dim);
}
.data-table tr:hover td { background: var(--bg-card-hover); }

/* BADGES */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 700;
}
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-red { background: rgba(239,68,68,0.15); color: var(--red); }
.badge-blue { background: rgba(245,158,11,0.15); color: var(--primary-light); }
.crypto-badge {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  background: var(--bg-accent); font-size: 0.75rem; font-weight: 700;
  color: var(--primary-light); margin-right: 4px;
}

/* GAME GRID */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin: 20px 0; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s;
}
.game-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.game-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.game-card-name { padding: 10px 12px; font-size: 0.8rem; font-weight: 600; text-align: center; }

/* PROVIDER GRID */
.provider-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin: 20px 0; }
.provider-tag {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 14px; text-align: center; font-size: 0.8rem; font-weight: 600;
  color: var(--text-dim); transition: border-color 0.3s;
}
.provider-tag:hover { border-color: var(--primary); color: var(--text); }

/* FAQ */
.faq { margin: 16px 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; padding: 18px 40px 18px 0; background: none; border: none;
  color: var(--text); font-size: 0.95rem; font-weight: 700; text-align: left;
  cursor: pointer; font-family: var(--font-main); position: relative;
  min-height: 48px;
}
.faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.3rem; color: var(--primary-light); }
.faq-q.open::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s; color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }
.faq-a.open { max-height: 500px; padding-bottom: 18px; }

/* PROMO BOX */
.promo-box {
  background: var(--gradient-accent); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; margin: 48px 0;
}
.promo-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; opacity: 0.8; margin-bottom: 8px; }
.promo-box h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.promo-amount { font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; opacity: 0.9; }
.promo-box p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 20px; }
.promo-box .btn-gold { background: #fff; color: #1e293b; }
.promo-box .btn-gold:hover { background: #f1f5f9; color: #0f172a; }

/* FOOTER */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 48px 24px 24px; margin-top: 40px; }
.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.85rem; margin-top: 12px; line-height: 1.6; }
.footer-heading { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; color: var(--text); }
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-col a { color: var(--text-dim); font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom small { color: var(--text-dim); font-size: 0.8rem; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  padding: 4px 12px; border-radius: 6px; font-size: 0.7rem;
  font-weight: 700; background: var(--bg-accent); color: var(--text-dim); border: 1px solid var(--border);
}

/* SCROLL TOP */
.scroll-top {
  position: fixed; bottom: 90px; right: 20px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--gradient-accent); color: #fff;
  border: none; font-size: 1.1rem; cursor: pointer;
  opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 90;
}
.scroll-top.visible { opacity: 1; visibility: visible; }

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: rgba(10,12,16,0.95); backdrop-filter: blur(12px);
  padding: 12px 16px; gap: 8px; border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-dark); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .header-btns { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-sticky-cta { display: flex; }
  .hero { padding: 120px 20px 60px; }
  .hero h1 { font-size: 2rem; }
  .facts-strip { grid-template-columns: repeat(2, 1fr); }
  .content { padding: 40px 16px 32px; }
  .pros-cons { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .rating-box { flex-direction: column; text-align: center; padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .breadcrumb { padding: 80px 16px 0; }
}
