:root {
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-dark: #A07810;
  --red: #C0392B;
  --red-dark: #922B21;
  --bg-dark: #0D0D0D;
  --bg-card: #181818;
  --bg-section: #111111;
  --text-main: #F0EAD6;
  --text-muted: #A89070;
  --text-bright: #FFFFFF;
  --border: #2A2A2A;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --max-w: 1100px;
}

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

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

body {
  background: var(--bg-dark);
  color: var(--text-main);
  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); text-decoration: underline; }

img { display: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── SITE HEADER ── */
.site-header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1000 100%);
  border-bottom: 2px solid var(--gold-dark);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
}

.header-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── BONUS BANNER (Top) ── */
.bonus-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #2a1500 40%, #1a0a00 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 28px 0;
  text-align: center;
}

.bonus-banner .bonus-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.bonus-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.bonus-banner .bonus-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.bonus-banner .bonus-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.bonus-meta-item {
  text-align: center;
}

.bonus-meta-item .val {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.bonus-meta-item .lbl {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: #0D0D0D;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 42px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.45);
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.6);
  color: #0D0D0D;
  text-decoration: none;
}

.btn-cta:active { transform: translateY(0); }

.bonus-disclaimer {
  margin-top: 10px;
  font-size: 0.7rem;
  color: #6a5a40;
}

/* ── MAIN LAYOUT ── */
.main-content {
  padding: 48px 0 60px;
}

/* ── ARTICLE HEADER ── */
.article-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.article-header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.15;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  padding: 8px 16px;
}

.rating-score {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-display);
  line-height: 1;
}

.rating-stars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.rating-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ── QUICK FACTS TABLE ── */
.quick-facts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.quick-facts-title {
  background: linear-gradient(90deg, #1a1000, #222);
  padding: 14px 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

.facts-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 380px;
}

.facts-table tr {
  border-bottom: 1px solid var(--border);
}

.facts-table tr:last-child { border-bottom: none; }

.facts-table td {
  padding: 12px 20px;
  font-size: 0.9rem;
  vertical-align: top;
}

.facts-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 38%;
  white-space: nowrap;
}

.facts-table td:last-child {
  color: var(--text-main);
}

.facts-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* ── CONTENT TYPOGRAPHY ── */
.content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-bright);
  font-weight: 700;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-dark);
  line-height: 1.25;
}

.content-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--gold-light);
  font-weight: 700;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.content-body p {
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: var(--text-main);
}

.content-body ul, .content-body ol {
  margin: 0 0 18px 20px;
}

.content-body li {
  margin-bottom: 8px;
  font-size: 0.97rem;
  color: var(--text-main);
}

.content-body ul li::marker { color: var(--gold); }

.highlight-box {
  background: linear-gradient(135deg, #1a1200, #1e1500);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.highlight-box p { margin-bottom: 0; color: var(--text-main); }

/* ── PROS / CONS TABLE ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
}

.pros-box { border-top: 3px solid #27AE60; }
.cons-box { border-top: 3px solid var(--red); }

.pros-box h3 { color: #27AE60; margin-top: 0; margin-bottom: 14px; font-size: 1rem; }
.cons-box h3 { color: var(--red); margin-top: 0; margin-bottom: 14px; font-size: 1rem; }

.pros-box ul, .cons-box ul { margin-left: 0; list-style: none; }
.pros-box li, .cons-box li { padding-left: 24px; position: relative; font-size: 0.88rem; margin-bottom: 8px; }
.pros-box li::before { content: '✓'; color: #27AE60; position: absolute; left: 0; font-weight: 700; }
.cons-box li::before { content: '✗'; color: var(--red); position: absolute; left: 0; font-weight: 700; }

/* ── PAYMENT TABLE ── */
.payment-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.payment-table th {
  background: #1a1000;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 2px solid var(--gold-dark);
}

.payment-table td {
  padding: 11px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  vertical-align: middle;
}

.payment-table tr:last-child td { border-bottom: none; }
.payment-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* ── BONUS BANNER 2 (Mid-page) ── */
.bonus-banner-2 {
  background: linear-gradient(135deg, #1a0000 0%, #2a0a00 50%, #1a0000 100%);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  padding: 32px 0;
  text-align: center;
  margin: 48px 0;
}

.bonus-banner-2 .banner2-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
}

.bonus-banner-2 h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  color: var(--text-bright);
  margin-bottom: 8px;
  line-height: 1.25;
}

.bonus-banner-2 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.btn-cta-red {
  display: inline-block;
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
  text-decoration: none;
}

.btn-cta-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.6);
  color: #fff;
  text-decoration: none;
}

/* ── CARDS GRID ── */
.cards-section {
  margin: 48px 0;
}

.cards-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-bright);
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ACCORDION (CSS only) ── */
.faq-section {
  margin: 48px 0;
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-bright);
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-dark);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-main);
  user-select: none;
  gap: 12px;
}

.faq-label:hover { background: rgba(212, 160, 23, 0.06); }

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-top: 0px solid var(--border);
}

.faq-body-inner {
  padding: 0 20px;
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item input[type="checkbox"]:checked ~ .faq-body {
  max-height: 500px;
  border-top-width: 1px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-label .faq-arrow {
  transform: rotate(45deg);
  background: var(--gold);
}

.faq-item input[type="checkbox"]:checked ~ .faq-body .faq-body-inner {
  padding: 16px 20px 20px;
}

/* ── TRUST BADGES ── */
.trust-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 36px 0;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.trust-item strong { color: var(--text-main); font-weight: 600; }

/* ── FOOTER ── */
.site-footer {
  background: #080808;
  border-top: 2px solid var(--gold-dark);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-about .footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-about p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col a:hover { color: var(--gold-light); text-decoration: none; }

.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: #4a3a20;
}

.footer-legal {
  font-size: 0.73rem;
  color: #3a3020;
  max-width: 600px;
  line-height: 1.5;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #4a3a20;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: #4a3a20;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .bonus-banner .bonus-meta {
    gap: 16px;
  }

  .article-meta {
    gap: 12px;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  h1 { font-size: 1.9rem; }

  .trust-bar {
    gap: 14px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .btn-cta { padding: 13px 28px; font-size: 0.95rem; }
  .btn-cta-red { padding: 12px 26px; font-size: 0.9rem; }
  .bonus-banner h2 { font-size: 1.5rem; }
  .bonus-banner-2 h2 { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
