:root {
  --bg: #120f13;
  --bg-alt: #1a1620;
  --card: #201b26;
  --border: #322b3a;
  --text: #ece7ef;
  --text-dim: #ab9fb8;
  --accent: #b5174b;
  --accent-light: #e3225f;
  --gold: #cba15b;
  --radius: 10px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #fff;
  line-height: 1.25;
}
a { color: var(--accent-light); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; display: block; }

/* ---- Age gate ---- */
.age-gate {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(6,5,8,.97);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate.hidden { display: none; }
.age-gate-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 480px;
  padding: 32px;
  text-align: center;
}
.age-gate-box h2 { margin-top: 0; }
.age-gate-box p { color: var(--text-dim); font-size: .95rem; }
.age-gate-actions {
  display: flex; flex-direction: column; gap: 12px; margin-top: 24px;
}
.age-gate-actions button, .age-gate-actions a.btn-quit {
  padding: 14px; border-radius: 6px; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600;
}
#age-yes { background: var(--accent); color: #fff; }
#age-yes:hover { background: var(--accent-light); }
.btn-quit { background: transparent; border: 1px solid var(--border) !important; color: var(--text-dim); }

/* ---- Header ---- */
.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
}
.logo { font-family: Georgia, serif; font-size: 1.4rem; color: #fff; font-weight: bold; }
.logo span { color: var(--accent-light); }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a { color: var(--text); font-size: .95rem; }
.dropdown { position: relative; }
.dropdown-content {
  display: none; position: absolute; top: 130%; left: 0;
  background: var(--card); border: 1px solid var(--border); border-radius: 6px;
  min-width: 220px; padding: 8px 0; z-index: 50;
}
.dropdown-content a { display: block; padding: 8px 16px; white-space: nowrap; color: var(--text); }
.dropdown-content a:hover { background: var(--bg-alt); text-decoration: none; }
.dropdown:hover .dropdown-content { display: block; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  padding: 64px 0 48px;
  text-align: center;
  background: radial-gradient(circle at top, #241a2b 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--border);
}
.hero h1 { font-size: 2.2rem; max-width: 780px; margin: 0 auto 16px; }
.hero p.lead { color: var(--text-dim); max-width: 620px; margin: 0 auto 28px; font-size: 1.05rem; }
.badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.badge {
  background: var(--card); border: 1px solid var(--border); border-radius: 30px;
  padding: 8px 18px; font-size: .85rem; color: var(--text-dim);
}

/* ---- Sections ---- */
section { padding: 56px 0; }
section.alt { background: var(--bg-alt); }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-dim); max-width: 640px; margin: 0 auto 40px; }

/* ---- Category / product cards ---- */
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.card h3 { margin: 0; font-size: 1.15rem; }
.card .meta { color: var(--text-dim); font-size: .88rem; }
.card ul { padding-left: 18px; margin: 0; color: var(--text-dim); font-size: .92rem; }
.card .price-tag { color: var(--gold); font-weight: bold; font-size: 1.05rem; }
.card .cta { margin-top: auto; }
.btn {
  display: inline-block; background: var(--accent); color: #fff; padding: 10px 20px;
  border-radius: 6px; font-weight: 600; font-size: .92rem; text-align: center;
}
.btn:hover { background: var(--accent-light); text-decoration: none; }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent-light); }

.rank-badge {
  display: inline-block; background: var(--gold); color: #241a06; font-size: .75rem;
  font-weight: bold; padding: 3px 10px; border-radius: 20px; margin-bottom: 4px;
}

/* ---- Icon list (why choose) ---- */
.icon-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.icon-item { text-align: center; }
.icon-circle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--bg-alt);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.5rem;
}
.icon-item h3 { font-size: 1rem; margin-bottom: 6px; }
.icon-item p { color: var(--text-dim); font-size: .9rem; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; color: #fff; }
.faq-item p { color: var(--text-dim); margin-top: 10px; }

/* ---- Guide content ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 26px; }
.prose p { color: var(--text-dim); }
.callout {
  background: var(--card); border-left: 3px solid var(--gold); padding: 16px 20px;
  border-radius: 6px; color: var(--text-dim); margin: 24px 0;
}
table.compare { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .92rem; }
table.compare th, table.compare td {
  border: 1px solid var(--border); padding: 10px 12px; text-align: left; color: var(--text-dim);
}
table.compare th { background: var(--bg-alt); color: #fff; }

/* ---- Breadcrumb ---- */
.breadcrumb { color: var(--text-dim); font-size: .85rem; padding: 16px 0 0; }
.breadcrumb a { color: var(--text-dim); }

/* ---- Footer ---- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 48px 0 20px; margin-top: 40px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-grid h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
.footer-grid a { color: var(--text-dim); display: block; margin-bottom: 8px; font-size: .9rem; }
.footer-bottom {
  text-align: center; color: var(--text-dim); font-size: .8rem; margin-top: 32px;
  padding-top: 20px; border-top: 1px solid var(--border);
}

@media (max-width: 780px) {
  .main-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--bg-alt);
    flex-direction: column; gap: 0; border-top: 1px solid var(--border); display: none; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 20px; border-bottom: 1px solid var(--border); }
  .dropdown-content { position: static; display: block; background: var(--bg); border: none; }
  .nav-toggle { display: block; }
}
