/* =====================================================
   WINNA REVIEW — BLOG STYLES 2026
   All blog pages use this stylesheet.
   ===================================================== */

/* ── CSS Variables (mirrors styles.css) ── */
:root {
  --gold: #f5c518;
  --gold-dark: #c9960d;
  --gold-light: #ffe87a;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --blue: #0ea5e9;
  --blue-dark: #0369a1;
  --red: #ef4444;
  --green: #22c55e;
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #17171f;
  --border: rgba(255,255,255,0.08);
  --text: #e2e8f0;
  --muted: #8892a4;
  --r: 14px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Reading Progress Bar ── */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #ff9500, var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245,197,24,0.6);
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #ff9500 50%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 66px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 16px;
  box-shadow: 0 0 14px rgba(245,197,24,0.35);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: nowrap;
}
.nav-links li a {
  padding: 6px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links li a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links li a.active { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.25s;
  box-shadow: 0 0 18px rgba(245,197,24,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(245,197,24,0.5);
}
.pulse-btn { animation: pulseBtn 2.5s ease-in-out infinite; }
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 16px rgba(245,197,24,0.35); }
  50% { box-shadow: 0 0 30px rgba(245,197,24,0.65); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   BLOG HERO
   ============================================================ */
.blog-hero {
  background: linear-gradient(180deg, #0d0d16 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(124,58,237,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.blog-hero p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--text); }

/* ============================================================
   ARTICLE GRID (Blog Hub)
   ============================================================ */
.blog-section { padding: 80px 0; }
.section-header { margin-bottom: 40px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.section-sub { color: var(--muted); margin-top: 10px; font-size: 15px; }

/* ── Featured Article ── */
.featured-article {
  background: linear-gradient(135deg, #13131e 0%, #1a1a2a 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  transition: all 0.3s;
  position: relative;
}
.featured-article::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245,197,24,0.04), rgba(124,58,237,0.04));
  pointer-events: none;
}
.featured-article:hover {
  transform: translateY(-3px);
  border-color: rgba(245,197,24,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,197,24,0.1);
}
.fa-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.fa-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}
.fa-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.fa-excerpt {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.fa-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.fa-meta span { display: flex; align-items: center; gap: 5px; }
.fa-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 10px;
  transition: all 0.25s;
  width: fit-content;
}
.fa-read-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.4); }
.fa-graphic {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(245,197,24,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}
.fa-graphic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245,197,24,0.06), transparent 70%);
}
.fa-score {
  background: rgba(10,10,15,0.8);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.fa-score-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.fa-score-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Article Grid ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.ac-thumb {
  background: linear-gradient(135deg, #1a1a28, #222235);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ac-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 0;
}
.ac-body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.ac-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}
.ac-tag.tag-privacy { background: rgba(14,165,233,0.12); color: var(--blue); border: 1px solid rgba(14,165,233,0.25); }
.ac-tag.tag-guide { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.ac-tag.tag-bonus { background: rgba(245,197,24,0.12); color: var(--gold); border: 1px solid rgba(245,197,24,0.25); }
.ac-tag.tag-compare { background: rgba(124,58,237,0.12); color: var(--purple-light); border: 1px solid rgba(124,58,237,0.25); }
.ac-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}
.ac-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ac-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.ac-footer .ac-meta { display: flex; align-items: center; gap: 10px; }
.ac-read-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.article-card:hover .ac-read-link { gap: 8px; }

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-hero {
  background: linear-gradient(180deg, #0d0d18 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(124,58,237,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.article-hero .container--narrow { position: relative; z-index: 1; }

.art-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.art-category.cat-review { background: rgba(245,197,24,0.12); color: var(--gold); border: 1px solid rgba(245,197,24,0.3); }
.art-category.cat-privacy { background: rgba(14,165,233,0.12); color: var(--blue); border: 1px solid rgba(14,165,233,0.3); }
.art-category.cat-guide { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.art-category.cat-bonus { background: rgba(245,197,24,0.12); color: var(--gold); border: 1px solid rgba(245,197,24,0.3); }
.art-category.cat-compare { background: rgba(124,58,237,0.12); color: var(--purple-light); border: 1px solid rgba(124,58,237,0.3); }

.article-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}
.article-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 700px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.article-meta-item i { color: var(--gold); font-size: 13px; }
.article-meta-item .author-name { color: var(--text); font-weight: 600; }

/* ── Article Featured Image ── */
.article-featured-img {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  position: relative;
  margin: 0;
  line-height: 0;
}
.article-featured-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
}
.article-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.9) 100%);
  pointer-events: none;
}

/* ── Article Body Layout ── */
.article-body-wrap {
  padding: 64px 0 100px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 56px;
  align-items: start;
}

/* ── Main Article Content ── */
.article-content { min-width: 0; }

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin: 60px 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(245,197,24,0.25);
  line-height: 1.2;
}
.article-content h2:first-child { margin-top: 0; }

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 40px 0 14px;
  line-height: 1.3;
}

.article-content p {
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.85;
  margin-bottom: 24px;
}
.article-content p:last-child { margin-bottom: 0; }

/* Lead paragraph — first p after TOC/CTA */
.article-content > h2 + p,
.article-content > .toc-inline + h2 + p,
.article-content > .cta-box + h2 + p {
  font-size: 17.5px;
  line-height: 1.9;
  color: rgba(226,232,240,0.95);
}

.article-content ul, .article-content ol {
  margin: 18px 0 28px 0;
  padding: 0;
  list-style: none;
}
.article-content ul li, .article-content ol li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.article-content ol { counter-reset: ol-counter; }
.article-content ol li { counter-increment: ol-counter; }
.article-content ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 18px; height: 18px;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.article-content strong { color: var(--gold-light); font-weight: 700; }
.article-content em { color: var(--muted); font-style: italic; }

/* ── Stat Callout Boxes ── */
.stat-box {
  background: linear-gradient(135deg, rgba(245,197,24,0.06), rgba(245,197,24,0.02));
  border: 1px solid rgba(245,197,24,0.2);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
}
.stat-box.stat-blue {
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(14,165,233,0.02));
  border-color: rgba(14,165,233,0.2);
  border-left-color: var(--blue);
}
.stat-box.stat-green {
  background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(34,197,94,0.02));
  border-color: rgba(34,197,94,0.2);
  border-left-color: var(--green);
}
.stat-box.stat-purple {
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(124,58,237,0.02));
  border-color: rgba(124,58,237,0.2);
  border-left-color: var(--purple);
}
.stat-box-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.stat-box.stat-blue .stat-box-label { color: var(--blue); }
.stat-box.stat-green .stat-box-label { color: var(--green); }
.stat-box.stat-purple .stat-box-label { color: var(--purple-light); }
.stat-box p { margin: 0; font-size: 15px; }

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.stat-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-item .stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* ── CTA Boxes ── */
.cta-box {
  background: linear-gradient(135deg, #1c1408, #1f1a06);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 18px;
  padding: 32px 36px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.05), transparent 70%);
  pointer-events: none;
}
.cta-box-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.cta-box h3 {
  font-family: var(--font-heading) !important;
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 0 10px !important;
  border: none !important;
  padding: 0 !important;
  letter-spacing: -0.3px;
}
.cta-box p {
  color: var(--muted) !important;
  font-size: 14.5px !important;
  margin-bottom: 22px !important;
  line-height: 1.65 !important;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(245,197,24,0.3);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.5);
}
.cta-disclaimer {
  font-size: 11px;
  color: rgba(136,146,164,0.7);
  margin-top: 12px;
  display: block;
}

/* ── Pros/Cons Table ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.pros-box, .cons-box {
  background: var(--bg2);
  border-radius: 14px;
  padding: 22px 24px;
}
.pros-box { border: 1px solid rgba(34,197,94,0.2); }
.cons-box { border: 1px solid rgba(239,68,68,0.2); }
.pros-cons-title {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pros-box .pros-cons-title { color: var(--green); }
.cons-box .pros-cons-title { color: var(--red); }
.pros-box ul li::before { background: var(--green); }
.cons-box ul li::before { background: var(--red); }

/* ── Comparison Table ── */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 28px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 14.5px;
}
.compare-table th {
  background: var(--bg2);
  color: var(--gold);
  font-weight: 700;
  padding: 13px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(245,197,24,0.2);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .check { color: var(--green); }
.compare-table .cross { color: var(--red); }
.compare-table .highlight-col { background: rgba(245,197,24,0.04); }

/* ── Score Display ── */
.score-display {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 24px 0;
}
.score-big {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.score-stars { display: flex; gap: 3px; color: var(--gold); font-size: 18px; margin-bottom: 6px; }
.score-verdict { color: var(--muted); font-size: 14px; }

/* ── Sidebar ── */
.article-sidebar { position: sticky; top: 86px; }

/* Table of Contents */
.toc-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.toc-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { margin-bottom: 2px; }
.toc-list a {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 7px;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.toc-list a:hover, .toc-list a.active {
  color: var(--gold);
  background: rgba(245,197,24,0.07);
  border-left-color: var(--gold);
}
.toc-list .toc-sub a {
  padding-left: 20px;
  font-size: 12px;
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, #1c1408, #1a1020);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-cta h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sidebar-cta .cta-btn-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 16px;
  border-radius: 10px;
  transition: all 0.25s;
  width: 100%;
}
.sidebar-cta .cta-btn-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }
.sidebar-cta .sc-perks { margin-top: 14px; }
.sidebar-cta .sc-perk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.sidebar-cta .sc-perk i { color: var(--green); font-size: 11px; }

/* Related Articles Sidebar */
.related-sidebar h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.related-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.related-item:last-child { border-bottom: none; }
.related-item:hover .ri-title { color: var(--gold); }
.ri-icon {
  width: 38px; height: 38px;
  background: var(--bg3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.ri-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}
.ri-meta { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.author-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  margin: 52px 0 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #000;
  flex-shrink: 0;
}
.author-info h4 {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}
.author-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.author-bio { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   RELATED ARTICLES SECTION
   ============================================================ */
.related-articles {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.related-articles .section-title { font-size: 1.6rem; margin-bottom: 28px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Tag Badges ── */
.tag-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.tag-badge:hover { color: var(--gold); border-color: rgba(245,197,24,0.3); background: rgba(245,197,24,0.05); }

/* ── Inline TOC ── */
.toc-inline {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0;
}
.toc-inline-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-inline-title i { color: var(--gold); }
.toc-inline ol {
  margin: 0;
  padding: 0;
  counter-reset: toc-counter;
  list-style: none;
}
.toc-inline ol li {
  counter-increment: toc-counter;
  padding: 5px 0 5px 28px;
  font-size: 14px;
  border: none;
  margin: 0;
}
.toc-inline ol li::before {
  content: counter(toc-counter);
  position: absolute;
  left: 0;
  top: 6px;
  width: 19px; height: 19px;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.toc-inline ol li a { color: var(--muted); transition: color 0.2s; }
.toc-inline ol li a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050509;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.ft-brand p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 16px;
  max-width: 380px;
}
.ft-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.ft-links h5 {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.ft-links ul li { margin-bottom: 10px; }
.ft-links ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.ft-links ul li a:hover { color: var(--gold); }
.footer-bottom { padding: 28px 0; }
.rg-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.rg-notice i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.rg-notice p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.copy { font-size: 12.5px; color: rgba(136,146,164,0.7); line-height: 1.6; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .toc-box { display: none; }
  .related-sidebar { display: none; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: rgba(10,10,15,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
    z-index: 800;
  }
  .hamburger { display: flex; }
  .featured-article { grid-template-columns: 1fr; }
  .fa-graphic { height: 160px; }
  .article-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .blog-hero { padding: 48px 0 40px; }
  .article-hero { padding: 40px 0 32px; }
  .article-body-wrap { padding: 40px 0 60px; }
}
@media (max-width: 480px) {
  .article-content h2 { font-size: 1.35rem; }
  .article-content h3 { font-size: 1.1rem; }
  .article-content p, .article-content ul li, .article-content ol li { font-size: 15.5px; }
  .cta-box { padding: 24px 20px; }
  .author-box { flex-direction: column; }
  .score-display { flex-direction: column; text-align: center; }
  .article-featured-img img { height: 220px; }
  .article-meta { flex-direction: column; gap: 8px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .toc-inline { padding: 18px 20px; }
  .toc-inline ol li { font-size: 13px; }
  .container--narrow { padding: 0 16px; }
  .article-body-wrap { padding: 32px 0 50px; }
}

/* ── Better Article Visual Breaks ── */
.article-content h2 + p:first-of-type {
  font-size: 17px;
  line-height: 1.9;
}

/* ── Responsive Featured Image ── */
@media (max-width: 768px) {
  .article-featured-img img { height: 300px; }
}
@media (max-width: 480px) {
  .article-featured-img img { height: 200px; }
  .article-featured-img::after {
    background: linear-gradient(180deg, transparent 20%, rgba(10,10,15,0.95) 100%);
  }
}

/* ===== ARTICLE FAQ SECTION ===== */
.article-faq {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.article-faq h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}
.article-faq h2 span { color: var(--gold); }
.faq-item-blog {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg2);
}
.faq-item-blog summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: background 0.2s;
}
.faq-item-blog summary::-webkit-details-marker { display: none; }
.faq-item-blog summary::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item-blog[open] summary::after { content: '−'; }
.faq-item-blog summary:hover { background: var(--bg3); }
.faq-item-blog .faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}
.faq-item-blog .faq-answer p { margin-bottom: 8px; }
.faq-item-blog .faq-answer p:last-child { margin-bottom: 0; }
.faq-item-blog .faq-answer strong { color: var(--text); }
.faq-item-blog .faq-answer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
