:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --deep: #0A0D14;
  --surface: #111520;
  --surface2: #181D2E;
  --surface3: #1E2438;
  --text: #E8E4DA;
  --text-muted: #8A8FA8;
  --text-dim: #5A607A;
  --accent: #C9A84C;
  --accent-glow: rgba(201,168,76,0.18);
  --green: #3DBE7A;
  --border: rgba(201,168,76,0.18);
  --border-soft: rgba(255,255,255,0.06);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--deep);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── SITE HEADER ─────────────────────────────── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.header-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.age-badge {
  background: var(--surface3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* ─── BONUS BANNER TOP ────────────────────────── */
.bonus-banner {
  background: linear-gradient(135deg, #0D1525 0%, #1A2240 40%, #0D1525 100%);
  border-bottom: 2px solid var(--gold);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.bonus-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.banner-left { flex: 1; min-width: 240px; }
.banner-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.banner-headline span { color: var(--gold); }
.banner-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.banner-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.promo-pill {
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
  white-space: nowrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0A0D14;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  color: #0A0D14;
}
.btn-cta:active { transform: translateY(0); }
.btn-cta svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-cta-outline:hover {
  background: var(--accent-glow);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

/* ─── HERO / INTRO ─────────────────────────────── */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--deep) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,190,122,0.1);
  border: 1px solid rgba(61,190,122,0.3);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
h1.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.meta-icon {
  width: 28px; height: 28px;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── SCORE CARD ──────────────────────────────── */
.score-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: sticky;
  top: 80px;
}
.score-card-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 16px;
}
.score-big {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.score-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.score-denom { font-size: 1.2rem; color: var(--text-dim); }
.score-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.score-stars span {
  display: inline-block;
  width: 22px; height: 22px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.score-stars span.half {
  background: linear-gradient(90deg, var(--gold) 50%, var(--surface3) 50%);
}
.score-breakdown { margin-bottom: 22px; }
.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.score-row-label { font-size: 0.82rem; color: var(--text-muted); flex: 1; min-width: 90px; }
.score-bar-track {
  flex: 2;
  height: 5px;
  background: var(--surface3);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
}
.score-row-val { font-size: 0.8rem; color: var(--gold); font-weight: 700; width: 28px; text-align: right; }

/* ─── MAIN CONTENT ─────────────────────────────── */
.main-content { padding: 60px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.content-body { min-width: 0; }
.sidebar { position: sticky; top: 80px; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  line-height: 1.25;
}
h2:first-child { margin-top: 0; }

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 28px 0 10px;
  line-height: 1.3;
}

p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.8;
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
li::marker { color: var(--gold); }

strong { color: #fff; font-weight: 700; }

/* ─── INFO BOX ─────────────────────────────────── */
.info-box {
  background: var(--surface2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.info-box p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }
.info-box strong { color: var(--gold); }

/* ─── PROS / CONS ─────────────────────────────── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.pros, .cons {
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 20px;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid #E05A5A; }
.pros-cons-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 14px;
}
.pros .pros-cons-title { color: var(--green); }
.cons .pros-cons-title { color: #E05A5A; }
.pros-cons ul { padding-left: 0; list-style: none; margin: 0; }
.pros-cons li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.pros li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}
.cons li::before {
  content: '✗';
  position: absolute; left: 0;
  color: #E05A5A;
  font-weight: 700;
}

/* ─── TABLES ──────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.9rem;
}
thead tr { background: var(--surface3); }
thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border-soft); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.02); }
tbody td {
  padding: 12px 16px;
  color: var(--text);
  vertical-align: middle;
}
.td-highlight { color: var(--gold); font-weight: 700; }
.td-green { color: var(--green); font-weight: 600; }

/* ─── CARDS ───────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.12);
}
.card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--surface3), var(--surface2));
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── BONUS BANNER MIDDLE ─────────────────────── */
.bonus-banner-mid {
  background: linear-gradient(135deg, #10182A 0%, #1C2A45 50%, #10182A 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bonus-banner-mid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.bonus-banner-mid .banner-label {
  display: block;
  margin-bottom: 8px;
  text-align: center;
}
.bonus-banner-mid .banner-headline {
  text-align: center;
  margin-bottom: 8px;
}
.bonus-banner-mid .banner-sub {
  text-align: center;
  margin-bottom: 24px;
}
.mid-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.mid-pill {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ─── SIDEBAR WIDGETS ─────────────────────────── */
.widget {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 20px;
}
.widget-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.quick-facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  margin: 0;
  font-size: 0.85rem;
}
.quick-facts li:last-child { border-bottom: none; }
.qf-label { color: var(--text-muted); }
.qf-value { color: #fff; font-weight: 600; text-align: right; max-width: 55%; }

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-chip {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─── FAQ ACCORDION (CSS only) ─────────────────── */
.faq-section { padding: 60px 0; background: var(--surface); }
.faq-section h2 { border-color: var(--border); }
.faq-list { margin-top: 28px; }
.faq-item { margin-bottom: 10px; }
.faq-toggle { display: none; }
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  user-select: none;
  gap: 14px;
}
.faq-label:hover {
  border-color: var(--gold);
  color: #fff;
}
.faq-icon {
  width: 22px; height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
  transition: transform var(--transition);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.22s ease;
}
.faq-body-inner {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-toggle:checked ~ .faq-label { border-color: var(--gold); border-radius: var(--radius) var(--radius) 0 0; color: #fff; }
.faq-toggle:checked ~ .faq-label .faq-icon { transform: rotate(45deg); }
.faq-toggle:checked ~ .faq-body { max-height: 600px; }
.faq-toggle:checked ~ .faq-body .faq-body-inner { padding: 16px 20px; }

/* ─── SAFETY SECTION ──────────────────────────── */
.safety-section { padding: 56px 0; }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.safety-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.safety-icon { font-size: 2rem; margin-bottom: 10px; }
.safety-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.safety-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── BOTTOM BANNER ───────────────────────────── */
.bottom-cta {
  background: linear-gradient(135deg, var(--surface) 0%, #0D1525 100%);
  border-top: 1px solid var(--border);
  padding: 56px 0;
  text-align: center;
}
.bottom-cta h2 {
  border: none;
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.bottom-cta p { max-width: 560px; margin: 0 auto 28px; color: var(--text-muted); }
.bottom-cta .btn-cta { font-size: 1.1rem; padding: 16px 44px; }

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 24px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.83rem; color: var(--text-dim); line-height: 1.7; }
.footer-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.disclaimer {
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 580px;
  text-align: right;
}
.resp-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.resp-badge {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .score-card { position: static; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .bonus-banner .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .btn-cta, .btn-cta-outline { width: 100%; justify-content: center; }
  .pros-cons { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .disclaimer { text-align: left; max-width: 100%; }
  .resp-badges { justify-content: flex-start; }
  .bonus-banner-mid { padding: 28px 20px; }
}
