:root {
  --bg-black: #0a0a0a;
  --bg-dark: #141414;
  --bg-card: #1c1c1c;
  --bg-card-hover: #242424;
  --border: #2a2a2a;
  --text-white: #ffffff;
  --text-muted: #b8b8b8;
  --text-dim: #888888;
  --yellow: #ffd700;
  --yellow-bright: #ffe600;
  --yellow-dark: #f5c500;
  --purple: #6d28d9;
  --purple-light: #8b5cf6;
  --green: #22c55e;
  --red: #ef4444;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --radius: 8px;
  --radius-sm: 6px;
  --header-height: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--yellow); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--yellow-bright); text-decoration: underline; }

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-black);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  color: var(--text-white);
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.hamburger svg { width: 22px; height: 22px; }
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 32px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.main-nav a {
  color: var(--text-white);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--yellow); text-decoration: none; }
.main-nav a.active { color: var(--yellow); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--bg-black);
}
.btn-primary:hover {
  background: var(--yellow-bright);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-large {
  padding: 14px 32px;
  font-size: 16px;
  letter-spacing: 0.3px;
}
.btn-secondary {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-secondary:hover { background: var(--yellow); color: var(--bg-black); text-decoration: none; }

/* MOBILE NAV DRAWER */
.nav-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--bg-dark);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: block;
  padding: 14px 16px;
  color: var(--text-white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
}
.nav-drawer a:hover { background: var(--bg-card); text-decoration: none; }
.nav-drawer .btn { margin-top: 16px; }

/* MAIN CONTENT */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}
.breadcrumbs {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs span { color: var(--text-dim); }

h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}
h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 40px 0 18px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.3px;
}
h2 .accent { color: var(--yellow); }
h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 28px 0 12px;
  font-weight: 700;
  color: var(--text-white);
}
h4 {
  font-size: 17px;
  margin: 20px 0 10px;
  font-weight: 700;
  color: var(--yellow);
}
p { margin-bottom: 16px; color: var(--text-muted); }
p strong, li strong { color: var(--text-white); }

ul, ol { margin: 0 0 18px 22px; color: var(--text-muted); }
li { margin-bottom: 8px; }
li::marker { color: var(--yellow); }

/* INTRO LEAD */
.lead {
  font-size: 18px;
  color: var(--text-white);
  font-weight: 400;
  margin-bottom: 24px;
}

/* QUICK VERDICT BOX */
.verdict {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px;
  margin: 28px 0;
  box-shadow: var(--shadow);
}
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 18px 0;
}
.verdict-grid h4 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.verdict ul { margin-left: 18px; }
.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.stars { color: var(--yellow); font-size: 22px; letter-spacing: 2px; }
.rating-score {
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
}
.rating-label { color: var(--text-muted); font-size: 14px; }

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1f00 100%);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 36px 0;
}
.cta-block h3 {
  margin-top: 0;
  color: var(--yellow);
  font-size: 22px;
}
.cta-block p { color: var(--text-white); font-size: 16px; margin-bottom: 20px; }

/* PROMO CODE BOX */
.promo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-black);
  border: 2px dashed var(--yellow);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 16px auto;
  width: fit-content;
  max-width: 100%;
}
.promo-box-label { color: var(--text-dim); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.promo-box-code {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1.5px;
}
.copy-btn {
  background: var(--yellow);
  color: var(--bg-black);
  border: 0;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}
.copy-btn:hover { background: var(--yellow-bright); }
.copy-btn.copied { background: var(--green); color: var(--text-white); }

/* TABLES */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 15px;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
th {
  background: var(--bg-dark);
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}
td { color: var(--text-muted); }
tr:last-child td { border-bottom: 0; }
tr:hover td { background: var(--bg-card-hover); color: var(--text-white); }

/* INFO CALLOUT */
.callout {
  background: var(--bg-card);
  border-left: 4px solid var(--purple-light);
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout.warn { border-left-color: var(--yellow); }
.callout.note { border-left-color: var(--purple-light); }
.callout p:last-child { margin-bottom: 0; }
.callout strong { display: block; margin-bottom: 4px; color: var(--text-white); }

/* STEPS */
.steps {
  list-style: none;
  margin-left: 0;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 16px 16px 16px 60px;
  margin-bottom: 12px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--yellow);
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--yellow);
  color: var(--bg-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.steps li strong { color: var(--text-white); display: block; margin-bottom: 4px; }

/* IMAGES IN CONTENT */
figure {
  margin: 28px auto;
  text-align: center;
}
figure img {
  width: 90%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* FAQ */
.faq { margin: 32px 0; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-card-hover); }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--yellow);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item-body {
  padding: 0 22px 18px;
  color: var(--text-muted);
}

/* GAME CATEGORIES GRID */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.cat-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.cat-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.cat-card h4 { margin-top: 0; color: var(--yellow); }
.cat-card p { font-size: 14px; margin-bottom: 0; }

/* PAYMENT GRID */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.pay-card {
  background: var(--bg-card);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border);
}
.pay-card .name { color: var(--yellow); font-weight: 700; margin-bottom: 4px; }
.pay-card .meta { font-size: 13px; color: var(--text-dim); }

/* FOOTER */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 40px 20px 20px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-col h5 {
  color: var(--yellow);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
}
.footer-col a:hover { color: var(--yellow); text-decoration: none; }
.footer-disclaimer {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 14px;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 800;
  border-radius: 50%;
  font-size: 14px;
  margin-right: 12px;
}
.footer-bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.responsible-row {
  display: flex;
  align-items: center;
  margin: 14px 0;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0e0e0e 0%, #1a0e2c 100%);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { position: relative; }
.hero-tagline {
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 22px;
  position: relative;
  font-weight: 400;
}

/* BONUS HIGHLIGHT */
.bonus-highlight {
  background: linear-gradient(135deg, #2a1c00 0%, #1a1a1a 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  text-align: center;
}
.bonus-highlight .amount {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 6px;
  line-height: 1.1;
}
.bonus-highlight .desc {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .main-nav { display: none; }
  .header-cta .btn-secondary { display: none; }
  .header-inner { gap: 12px; justify-content: space-between; }
  .header-inner .logo { flex: 1; }
  .verdict-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  main { padding: 20px 16px 40px; }
  figure img { width: 100%; }
  .hero { padding: 24px 20px; }
  .cta-block { padding: 22px 18px; }
  .promo-box { flex-wrap: wrap; padding: 10px 12px; }
  th, td { padding: 10px 12px; font-size: 14px; }
}

@media (max-width: 480px) {
  .btn-large { padding: 12px 20px; font-size: 14px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
