:root {
  --bg-primary: #0e0e10;
  --bg-secondary: #1a1a1f;
  --bg-tertiary: #25252b;
  --bg-card: #1f1f25;
  --accent: #ffd400;
  --accent-hover: #ffe042;
  --accent-dark: #b39600;
  --text-primary: #ffffff;
  --text-secondary: #b8b8c0;
  --text-muted: #7a7a85;
  --border: #2e2e36;
  --success: #4caf50;
  --warning: #ff9800;
  --danger: #f44336;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 72px;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 14, 16, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex; align-items: center;
}
.header-inner {
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo img { height: 40px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--text-primary); font-weight: 500; font-size: 15px;
  text-decoration: none; padding: 8px 0;
}
.main-nav a:hover { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; cursor: pointer;
  border: 2px solid transparent; transition: all .15s;
  text-decoration: none; line-height: 1;
}
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  background: var(--accent); color: #000; border-color: var(--accent);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  color: #000; text-decoration: none; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 212, 0, 0.3);
}
.btn-outline,
.btn-outline:link,
.btn-outline:visited {
  background: transparent; color: var(--accent); border-color: var(--accent);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--accent); color: #000; text-decoration: none;
}
.btn-large { padding: 16px 32px; font-size: 17px; }

/* Mobile menu */
.menu-toggle {
  display: none; background: transparent; border: none;
  cursor: pointer; padding: 8px; color: var(--text-primary);
}
.menu-toggle svg { width: 28px; height: 28px; }

/* Mobile drawer — hidden by default, only shown on mobile via media query */
.mobile-drawer {
  position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px;
  height: 100vh; background: var(--bg-secondary);
  z-index: 200; transition: left .25s;
  padding: 24px 22px; overflow-y: auto;
  box-shadow: 4px 0 30px rgba(0,0,0,.5);
  visibility: hidden;
}
.mobile-drawer.open { left: 0; visibility: visible; }
.mobile-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 150;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  visibility: hidden;
}
.mobile-drawer-overlay.show { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-drawer h3 { color: var(--accent); margin-bottom: 14px; font-size: 16px; }
.mobile-drawer ul { list-style: none; margin-bottom: 20px; padding: 0; }
.mobile-drawer li { margin-bottom: 6px; }
.mobile-drawer a {
  display: block; padding: 10px 8px; color: var(--text-primary);
  border-radius: 6px; font-size: 15px;
}
.mobile-drawer a:hover { background: var(--bg-tertiary); text-decoration: none; }
.drawer-close {
  background: transparent; border: none; color: var(--text-primary);
  font-size: 28px; cursor: pointer; position: absolute; top: 16px; right: 16px;
}

/* Hero */
.hero {
  padding: 60px 0 40px;
  background: radial-gradient(ellipse at top, rgba(255, 212, 0, 0.08), transparent 60%), var(--bg-primary);
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.15; margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--accent); }
.hero-lead { font-size: 18px; color: var(--text-secondary); margin-bottom: 28px; max-width: 720px; }

/* Quick verdict box */
.verdict-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-tertiary));
  border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; margin: 32px 0;
  box-shadow: var(--shadow);
}
.verdict-box h2 { font-size: 22px; margin-bottom: 18px; }
.verdict-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-bottom: 22px;
}
.verdict-item { display: flex; flex-direction: column; gap: 4px; }
.verdict-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.verdict-value { font-size: 16px; font-weight: 600; }
.rating-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 18px; }
.pros-cons h3 { font-size: 15px; margin-bottom: 10px; }
.pros h3 { color: var(--success); }
.cons h3 { color: var(--warning); }
.pros-cons ul { list-style: none; }
.pros-cons li {
  padding: 6px 0 6px 22px; position: relative; font-size: 14.5px; color: var(--text-secondary);
}
.pros li::before { content: "+"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons li::before { content: "−"; position: absolute; left: 0; color: var(--warning); font-weight: 700; }

/* Article content */
.article { padding: 30px 0 60px; }
.article h2 {
  font-size: clamp(22px, 2.8vw, 30px); font-weight: 800;
  margin: 44px 0 18px; letter-spacing: -0.01em; line-height: 1.25;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-size: clamp(18px, 2.2vw, 22px); font-weight: 700;
  margin: 30px 0 12px; line-height: 1.3;
}
.article h4 { font-size: 17px; font-weight: 700; margin: 22px 0 10px; }
.article p { margin-bottom: 16px; color: var(--text-secondary); }
.article p strong, .article li strong { color: var(--text-primary); }
.article ul, .article ol { margin: 12px 0 18px 22px; color: var(--text-secondary); }
.article li { margin-bottom: 8px; }
.article a { color: var(--accent); }
.article a:hover { color: var(--accent-hover); }

/* Tables */
.article table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
  font-size: 15px;
}
.article th, .article td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.article th {
  background: var(--bg-tertiary); color: var(--accent);
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em;
}
.article tr:last-child td { border-bottom: none; }
.article td { color: var(--text-secondary); }

/* Figures / images */
.article figure {
  margin: 26px auto;
  max-width: 90%;
}
.article figure img {
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}
.article figcaption {
  font-size: 13.5px; color: var(--text-muted);
  text-align: center; margin-top: 10px; font-style: italic;
}

/* Promo callout */
.promo-callout {
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.12), rgba(255, 212, 0, 0.04));
  border: 1px solid rgba(255, 212, 0, 0.3); border-radius: 12px;
  padding: 24px; margin: 28px 0;
}
.promo-callout h3 { color: var(--accent); margin-top: 0; }
.promo-code-box {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-primary); border: 2px dashed var(--accent);
  padding: 10px 16px; border-radius: var(--radius);
  font-family: 'Courier New', monospace; font-weight: 700;
  font-size: 18px; color: var(--accent); letter-spacing: 0.1em;
  margin: 12px 0;
}
.copy-btn {
  background: var(--accent); color: #000; border: none;
  padding: 6px 12px; border-radius: 6px; font-weight: 700;
  cursor: pointer; font-size: 13px; font-family: var(--font-main);
  transition: all .15s;
}
.copy-btn:hover { background: var(--accent-hover); }
.copy-btn.copied { background: var(--success); color: white; }

/* CTA section */
.cta-section {
  text-align: center; padding: 36px 28px; margin: 32px 0;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-tertiary));
  border-radius: 12px; border: 1px solid var(--border);
}
.cta-section h2 { margin-top: 0; }
.cta-section p { font-size: 17px; max-width: 600px; margin: 0 auto 22px; }
.cta-section a.btn-primary,
.cta-section a.btn-primary:hover,
.cta-section a.btn-primary:visited {
  color: #000;
  text-decoration: none;
}
.cta-section a.btn-outline,
.cta-section a.btn-outline:visited {
  color: var(--accent);
  text-decoration: none;
}
.cta-section a.btn-outline:hover {
  color: #000;
}

/* Steps */
.steps-list { counter-reset: step; list-style: none; margin-left: 0; padding-left: 0; }
.steps-list li {
  counter-increment: step; position: relative; padding-left: 56px;
  margin-bottom: 22px; min-height: 40px;
}
.steps-list li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #000;
  font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.steps-list li strong { display: block; color: var(--text-primary); margin-bottom: 4px; }

/* FAQ */
.faq { margin: 36px 0; }
.faq details {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 16.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--text-primary);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--accent); transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq-content { padding: 18px 22px; color: var(--text-secondary); }
.faq-content p:last-child { margin-bottom: 0; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px; color: var(--text-muted);
  padding: 16px 0 0;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span.sep { margin: 0 8px; }

/* Disclaimer */
.disclaimer {
  background: var(--bg-secondary); border-left: 3px solid var(--accent);
  padding: 14px 18px; margin: 24px 0;
  font-size: 14px; color: var(--text-secondary); border-radius: 4px;
}

/* Footer */
.site-footer {
  background: #08080a; border-top: 1px solid var(--border);
  padding: 40px 0 24px; margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px;
  margin-bottom: 28px;
}
.footer-col h4 { font-size: 15px; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-secondary); font-size: 14.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-about p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px; margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--text-muted);
}
.age-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--danger); color: white; font-weight: 800;
  padding: 4px 10px; border-radius: 4px; font-size: 13px;
}

/* TOC for long pages */
.toc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 26px; margin: 28px 0;
}
.toc h3 { margin-top: 0; font-size: 17px; color: var(--accent); }
.toc ol { margin: 10px 0 0 22px; }
.toc a { color: var(--text-secondary); }
.toc a:hover { color: var(--accent); }

/* Game grid (homepage) */
.game-providers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px; margin: 22px 0;
}
.provider-tag {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; text-align: center;
  font-weight: 600; color: var(--text-secondary); font-size: 14px;
}

/* Bonus comparison cards */
.bonus-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; margin: 24px 0;
}
.bonus-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column;
}
.bonus-card h4 { color: var(--accent); margin-top: 0; font-size: 18px; }
.bonus-card .bonus-amount { font-size: 22px; font-weight: 800; color: var(--text-primary); margin: 10px 0; }
.bonus-card ul { margin-left: 18px; font-size: 14px; }

/* 404 */
.error-page {
  text-align: center; padding: 80px 20px;
  min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.error-page h1 { font-size: 80px; color: var(--accent); margin-bottom: 12px; }
.error-page p { font-size: 18px; margin-bottom: 26px; color: var(--text-secondary); }
.error-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Mobile */
@media (max-width: 920px) {
  .main-nav, .header-cta .btn-outline { display: none; }
  .menu-toggle { display: flex; align-items: center; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 10px 18px; font-size: 14px; }

  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .article figure { max-width: 100%; }
  .article figure img { width: 100%; }

  .hero { padding: 40px 0 28px; }
  .verdict-box, .cta-section, .promo-callout { padding: 22px; }

  .article table { font-size: 14px; }
  .article th, .article td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .article table { display: block; overflow-x: auto; }
  .header-cta .btn { padding: 9px 14px; font-size: 13.5px; }
  .logo img { height: 32px; }
}
