:root {
  --primary: #0F3D2E;
  --primary-dark: #082418;
  --primary-light: #1a5b45;
  --accent: #C4F542;
  --accent-dark: #a8d930;
  --magenta: #b026ff;
  --magenta-dark: #8a1dcc;
  --bg: #f4f7f5;
  --card: #ffffff;
  --text: #0f2a21;
  --text-muted: #5a6b64;
  --border: #dce5e0;
  --shadow: 0 4px 16px rgba(15, 61, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 61, 46, 0.14);
  --radius: 10px;
  --radius-sm: 6px;
}

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

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

/* Header */
.site-header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo:hover { color: var(--accent); }

.nav-desktop {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-desktop a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 10px;
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
}
.mobile-drawer:target { display: block; }
.mobile-drawer-inner {
  background: var(--primary);
  width: 85%;
  max-width: 320px;
  height: 100%;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-drawer a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 16px;
}
.mobile-drawer a:hover { color: var(--accent); }
.drawer-close {
  display: block;
  margin-left: auto;
  margin-bottom: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  width: 36px;
  text-align: center;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
main.container { padding-top: 36px; padding-bottom: 60px; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; }

/* Typography */
h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--primary-dark);
  margin: 36px 0 16px;
  line-height: 1.25;
}
h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--primary);
  margin: 26px 0 12px;
}
h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 18px 0 8px;
}
p { margin-bottom: 14px; }
ul, ol { margin: 0 0 16px 24px; }
li { margin-bottom: 6px; }
a { color: var(--primary); }
a:hover { color: var(--magenta); }
strong { color: var(--primary-dark); }

/* Figures/images */
figure {
  margin: 22px 0;
  text-align: center;
}
figure img {
  width: 90%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
figure.mobile-screen img {
  width: 50%;
  max-width: 280px;
}
figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
@media (max-width: 640px) {
  figure img { width: 100%; }
  figure.mobile-screen img { width: 70%; max-width: 260px; }
}

/* Verdict box */
.verdict-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin: 28px 0;
  box-shadow: var(--shadow-lg);
}
.verdict-box h2, .verdict-box h3 { color: #fff; margin-top: 0; }
.verdict-rating {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.verdict-rating span { font-size: 18px; color: rgba(255,255,255,0.7); }
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}
@media (max-width: 640px) { .verdict-grid { grid-template-columns: 1fr; } }
.verdict-grid h4 { color: var(--accent); margin-top: 0; }
.verdict-grid ul { margin-left: 20px; }
.verdict-grid li { color: rgba(255,255,255,0.92); }

/* CTA button */
.cta-wrap {
  text-align: center;
  margin: 32px 0;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(176, 38, 255, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(176, 38, 255, 0.45);
}
.cta-button.accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary-dark) !important;
  box-shadow: 0 6px 20px rgba(196, 245, 66, 0.4);
}
.cta-button.accent:hover { color: var(--primary-dark) !important; }

/* Promo code callout */
.promo-callout {
  background: #fff;
  border: 2px dashed var(--magenta);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 24px 0;
  text-align: center;
}
.promo-callout h4 { margin-top: 0; color: var(--magenta-dark); }
.promo-code-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff8e1;
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  margin-top: 8px;
}
.promo-code-val {
  font-family: 'Courier New', monospace;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary-dark);
  letter-spacing: 1px;
}
.copy-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.copy-btn:hover { background: var(--magenta); }
.copy-btn.copied { background: var(--accent); color: var(--primary-dark); }

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 15px;
}
thead { background: var(--primary); color: #fff; }
th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
}
td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: #f9fbfa; }
@media (max-width: 640px) {
  table { font-size: 13px; }
  th, td { padding: 10px 8px; }
}

/* Info card */
.info-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.info-card h3 { margin-top: 0; }

.warning-card {
  background: #fff9e6;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  border-left: 4px solid #f59e0b;
  font-size: 14px;
}

/* Step list */
.step-list {
  counter-reset: step;
  list-style: none;
  margin-left: 0;
}
.step-list li {
  counter-increment: step;
  position: relative;
  padding-left: 52px;
  margin-bottom: 16px;
  min-height: 40px;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

/* FAQ */
.faq-section { margin-top: 40px; }
.faq-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-dark);
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--magenta);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 22px 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Feature grid (homepage) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 26px 0;
}
.feature-item {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}
.feature-item h4 { margin-top: 0; color: var(--primary); }
.feature-item p { margin-bottom: 0; font-size: 14px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: #fff;
  padding: 50px 0 40px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,245,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { color: #fff; position: relative; }
.hero .lead {
  font-size: 18px;
  max-width: 720px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  position: relative;
}

/* Pros/cons inline */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 22px 0;
}
@media (max-width: 640px) { .proscons { grid-template-columns: 1fr; } }
.proscons-col {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.proscons-col.pros { border-top: 3px solid #16a34a; }
.proscons-col.cons { border-top: 3px solid #dc2626; }
.proscons-col h3 { margin-top: 0; }
.proscons-col.pros h3 { color: #16a34a; }
.proscons-col.cons h3 { color: #dc2626; }

/* Footer */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  padding: 44px 0 22px;
  margin-top: 60px;
  font-size: 14px;
}
footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 720px) { footer .container { grid-template-columns: 1fr; gap: 24px; } }
footer h4 { color: var(--accent); font-size: 15px; margin-bottom: 14px; }
footer ul { list-style: none; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
footer a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.age-badge::before {
  content: '18+';
  background: #dc2626;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

/* Mobile nav toggle */
@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
}
