:root {
  --bg: #0e0e10;
  --bg-2: #161618;
  --bg-3: #1d1d20;
  --surface: #232327;
  --border: #2c2c30;
  --text: #f3f3f3;
  --text-dim: #b6b6bd;
  --text-mute: #8a8a93;
  --accent: #ffcb05;
  --accent-2: #ffe14f;
  --accent-dark: #d6a800;
  --danger: #ff5b5b;
  --success: #4ade80;
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1180px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.35);
  --shadow-md: 0 8px 24px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin: 0 0 .8em;
  color: #fff;
}
h1 { font-size: clamp(1.9rem, 4.2vw, 2.6rem); }
h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin-top: 1.6em; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.3rem); margin-top: 1.4em; color: var(--accent); }
h4 { font-size: 1.05rem; margin-top: 1.2em; }
p { margin: 0 0 1.05em; color: var(--text-dim); }
strong { color: #fff; font-weight: 700; }
ul, ol { color: var(--text-dim); padding-left: 1.4em; }
li { margin-bottom: .35em; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 16, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.5); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; display: block; }

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav a {
  color: var(--text-dim);
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--accent); background: rgba(255,203,5,.06); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--accent); }

.header-cta {
  display: inline-block;
  background: var(--accent);
  color: #111 !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .03em;
  transition: transform .15s ease, background .15s ease;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 12px;
}
.header-cta:hover { background: var(--accent-2); transform: translateY(-1px); color: #111 !important; }

/* Burger button (mobile only) */
.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.burger:hover { border-color: var(--accent); }
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  position: relative;
  transition: transform .25s ease, top .2s ease, opacity .15s ease;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #08080a;
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 80px 24px 28px;
  transform: translateX(100%);
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-drawer a:hover { color: var(--accent); text-decoration: none; }
.mobile-drawer a[aria-current="page"] { color: var(--accent); }
.mobile-drawer .drawer-cta {
  display: block;
  background: var(--accent);
  color: #111 !important;
  font-weight: 800;
  text-align: center;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .98rem;
}
.mobile-drawer .drawer-cta:hover { background: var(--accent-2); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
body.drawer-locked { overflow: hidden; }

/* Show burger / hide nav at narrow widths */
@media (max-width: 880px) {
  .main-nav { display: none; }
  .burger { display: inline-flex; }
  .header-cta { display: none; }
}

/* ============ MAIN ============ */
main { max-width: var(--max); margin: 0 auto; padding: 28px 22px 60px; }

.breadcrumbs {
  font-size: .88rem;
  color: var(--text-mute);
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--text-mute); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span[aria-current] { color: var(--text-dim); }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #1a1a1d 0%, #0e0e10 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,203,5,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 { margin-top: 0; }
.hero-lead {
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 820px;
}

/* ============ VERDICT BOX ============ */
.verdict {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px;
  margin: 24px 0;
}
.rating-block { text-align: center; min-width: 110px; }
.rating-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.rating-stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; margin-top: 4px; }
.rating-label { color: var(--text-mute); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin-top: 6px; }
.verdict-summary { font-size: .98rem; color: var(--text-dim); }
.verdict-summary strong { display: block; color: #fff; margin-bottom: 4px; font-size: 1.05rem; }

@media (max-width: 720px) {
  .verdict { grid-template-columns: 1fr; text-align: center; }
}

/* ============ PROS/CONS ============ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}
.pros, .cons {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.pros { border-top: 3px solid var(--success); }
.cons { border-top: 3px solid var(--danger); }
.pros h3, .cons h3 { margin-top: 0; font-size: 1.05rem; color: #fff; }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

@media (max-width: 720px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* ============ INFO BOX / CALLOUT ============ */
.callout {
  background: linear-gradient(135deg, rgba(255,203,5,.08), rgba(255,203,5,.02));
  border: 1px solid rgba(255,203,5,.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0;
}
.callout strong { color: var(--accent); }

/* ============ TABLES ============ */
.table-wrap { overflow-x: auto; margin: 22px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .95rem;
}
thead { background: var(--bg-3); }
th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--accent);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255,203,5,.03); }

/* ============ STEPS ============ */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.steps > li {
  counter-increment: step;
  position: relative;
  padding: 14px 18px 14px 64px;
  margin-bottom: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 14px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.steps > li strong { display: block; color: #fff; margin-bottom: 2px; }

/* ============ CTA BUTTON (in-content) ============ */
.cta-block {
  background: linear-gradient(135deg, #1a1a1d, #232327);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,203,5,.12), transparent 60%);
  pointer-events: none;
}
.cta-block h3 { margin-top: 0; color: #fff; font-size: 1.4rem; position: relative; }
.cta-block p { position: relative; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #111 !important;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 8px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none !important;
  position: relative;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,203,5,.25);
  color: #111 !important;
}

/* ============ FAQ ============ */
.faq { margin: 28px 0; }
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 20px 18px; color: var(--text-dim); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ============ FIGURES (images) ============ */
figure {
  margin: 28px auto;
  text-align: center;
}
figure img {
  display: block;
  margin: 0 auto;
  width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
figcaption {
  margin-top: 10px;
  color: var(--text-mute);
  font-size: .88rem;
  font-style: italic;
}
@media (max-width: 720px) {
  figure img { width: 100%; }
}

/* ============ FOOTER ============ */
footer {
  background: #08080a;
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 40px 22px 24px;
  color: var(--text-mute);
  font-size: .9rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}
.footer-cols h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-dim); }
.footer-links a:hover { color: var(--accent); }
.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.age-badge {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 2px solid var(--danger);
  color: var(--danger);
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 800;
  font-size: .85rem;
}
.disclaimer-text { font-size: .82rem; max-width: 720px; line-height: 1.5; }

@media (max-width: 720px) {
  .footer-cols { grid-template-columns: 1fr; gap: 22px; }
  .footer-disclaimer { flex-direction: column; align-items: flex-start; }
}

/* ============ MOBILE TWEAKS ============ */
@media (max-width: 520px) {
  .logo img { height: 32px; }
  .header-inner { padding: 12px 16px; }
  main { padding: 22px 16px 40px; }
  .hero { padding: 26px 20px; }
}

/* Smooth scroll spacing for anchored sections */
section { scroll-margin-top: 90px; }

/* utility */
.lead { font-size: 1.08rem; color: var(--text-dim); }
.muted { color: var(--text-mute); font-size: .9rem; }
