:root {
  --bg: #0d0a1a;
  --bg-2: #161229;
  --bg-3: #1f1838;
  --surface: #221a40;
  --border: #2e2654;
  --text: #f4f1ff;
  --text-2: #b9b0d6;
  --text-3: #8a83a8;
  --accent: #ffd700;
  --accent-2: #ffc400;
  --accent-dark: #1a1330;
  --purple: #6a3df0;
  --success: #36c98a;
  --danger: #ff5c7a;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 6px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 40px rgba(106,61,240,0.25);
  --max: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(106,61,240,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,215,0,0.07) 0%, transparent 50%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-2); text-decoration: underline; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 36px; width: auto; }
.main-nav {
  display: flex;
  gap: 1.4rem;
  flex: 1;
  align-items: center;
  white-space: nowrap;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.1rem;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover { color: var(--accent); text-decoration: none; }
.main-nav a.active { color: var(--accent); }
.header-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-dark);
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .15s;
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,215,0,0.35);
  color: var(--accent-dark);
  text-decoration: none;
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1.6rem;
  margin-left: auto;
}

/* ===== MOBILE DRAWER ===== */
.drawer {
  position: fixed;
  top: 0; left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  z-index: 200;
  padding: 1.5rem 1.2rem;
  transition: left .3s ease;
  overflow-y: auto;
}
.drawer.open { left: 0; }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.drawer-close {
  background: none; border: 0;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  top: 0.6rem; right: 0.8rem;
}
.drawer nav { display: flex; flex-direction: column; gap: 0.2rem; margin-top: 2.4rem; }
.drawer nav a {
  color: var(--text);
  padding: 0.85rem 0.6rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.drawer nav a:hover { background: var(--surface); text-decoration: none; }
.drawer .header-cta { margin-top: 1rem; text-align: center; }

/* ===== HERO / PAGE HEADER ===== */
.hero {
  padding: 3.5rem 1.2rem 2.5rem;
  text-align: center;
  position: relative;
}
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--accent); }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 1.6rem;
}
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 1rem;
  text-align: left;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.4rem;
}
.breadcrumbs a { color: var(--text-3); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 0.4rem; }

/* ===== CONTAINER & SECTIONS ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.2rem;
}
.content {
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 1.2rem 4rem;
}
.content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 2.4rem 0 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.8rem 0 0.7rem;
  color: var(--text);
}
.content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.2rem 0 0.5rem;
  color: var(--text);
}
.content p { margin-bottom: 1.1rem; color: var(--text); }
.content ul li, .content ol li { margin-bottom: 0.6rem; }

/* ===== QUICK VERDICT BOX ===== */
.verdict-box {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin: 1.8rem 0;
  box-shadow: var(--shadow);
}
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1rem;
}
.verdict-grid h4 { margin-top: 0; font-size: 1rem; }
.verdict-grid ul { list-style: none; padding: 0; }
.verdict-grid li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-2);
}
.verdict-grid .pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.verdict-grid .cons li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}
.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-2);
}
.rating-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.rating-num {
  background: var(--accent);
  color: var(--accent-dark);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* ===== CTA BUTTONS ===== */
.cta-block {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem 1.4rem;
  background: linear-gradient(135deg, rgba(106,61,240,0.18), rgba(255,215,0,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cta-block p {
  margin-bottom: 1.2rem;
  color: var(--text-2);
  font-size: 1.05rem;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-dark);
  padding: 0.95rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.4);
  color: var(--accent-dark);
  text-decoration: none;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 0.85rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: all .2s;
}
.btn-secondary:hover { background: var(--accent); color: var(--accent-dark); text-decoration: none; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; margin: 1.4rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}
thead { background: var(--surface); }
th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th { font-weight: 600; color: var(--text); }
td { color: var(--text-2); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--bg-3); }

/* ===== PROMO CODE BOX ===== */
.promo-box {
  background: linear-gradient(135deg, var(--surface), var(--bg-3));
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.6rem 0;
  text-align: center;
  box-shadow: 0 0 24px rgba(255,215,0,0.15);
}
.promo-box h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-2);
  margin-bottom: 0.6rem;
  margin-top: 0;
}
.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-dark);
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  margin: 0.5rem 0 0.8rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  letter-spacing: 2px;
}
.copy-btn {
  background: var(--accent);
  color: var(--accent-dark);
  border: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background .15s;
  font-family: var(--font);
}
.copy-btn:hover { background: var(--accent-2); }
.copy-btn.copied { background: var(--success); color: white; }
.promo-box .reward {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-top: 0.6rem;
}

/* ===== CALLOUT / INFO BOX ===== */
.callout {
  background: var(--bg-2);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin: 1.4rem 0;
  color: var(--text-2);
  font-size: 0.95rem;
}
.callout strong { color: var(--text); }
.callout.warn { border-left-color: var(--danger); }
.callout.info { border-left-color: var(--purple); }

/* ===== FAQ ===== */
.faq {
  margin: 2rem 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  background: var(--bg-2);
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  position: relative;
  list-style: none;
  font-size: 1rem;
  padding-right: 3rem;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--surface); }
.faq-item .faq-body {
  padding: 0 1.3rem 1.1rem;
  color: var(--text-2);
  font-size: 0.97rem;
}

/* ===== FIGURES / IMAGES ===== */
figure {
  margin: 1.8rem auto;
  text-align: center;
}
figure img {
  width: 90%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}
figcaption {
  font-size: 0.88rem;
  color: var(--text-3);
  margin-top: 0.6rem;
  font-style: italic;
}

/* ===== STEPS ===== */
.steps {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0.8rem 0 0.8rem 3.4rem;
  margin-bottom: 0.6rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.6rem;
  background: var(--accent);
  color: var(--accent-dark);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
}
.steps li strong { display: block; margin-bottom: 0.2rem; color: var(--text); }

/* ===== HOMEPAGE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: transform .2s, border-color .2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.feature-card h3 {
  margin-top: 0;
  font-size: 1.15rem;
  color: var(--accent);
}
.feature-card p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 0.9rem; }
.feature-card a { font-weight: 600; font-size: 0.92rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2.4rem 1.2rem 1.6rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.footer-col h5 {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.footer-col p, .footer-col li, .footer-col a {
  color: var(--text-3);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-3);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--danger);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.85rem;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .main-nav, .header-cta:not(.mobile-show) { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .verdict-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero { padding: 2.5rem 1rem 1.8rem; }
  figure img { width: 100%; }
  .steps li { padding-left: 3rem; }
  .steps li::before { width: 2rem; height: 2rem; font-size: 0.9rem; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .content { padding: 0.6rem 1rem 3rem; }
  .verdict-box, .promo-box { padding: 1.2rem; }
  th, td { padding: 0.6rem 0.7rem; font-size: 0.88rem; }
  .promo-code-display { font-size: 1.1rem; padding: 0.55rem 0.8rem; }
}
