/* ================================================================
   CasinoBewertung24 V1 stylesheet
   Palette: deep-purple + amber-gold
   ================================================================ */

:root {
  /* Backgrounds — deep purple */
  --bg-page:       #0c0a14;
  --bg-utility:    #0a0812;
  --bg-strip:      #110e1c;
  --bg-card:       #161225;
  --bg-card-hover: #1e1830;
  --bg-elevated:   #1e1830;

  /* Borders */
  --border-soft:   rgba(255,255,255,0.06);
  --border-mid:    rgba(255,255,255,0.10);
  --border-accent: rgba(251, 191, 36, 0.40);

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: #a0a3b8;
  --text-micro:     #6b6f85;
  --text-cta:       #0c0a04;

  /* Accents */
  --accent-primary:       #fbbf24;
  --accent-primary-hover: #fcd34d;
  --accent-green:         #34d399;
  --accent-red:           #f87171;
  --accent-warn:          #f97316;
  --accent-violet:        #c084fc;

  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

strong, b { font-weight: 700; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; margin: 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

/* ---------- UTILITY BAR ---------- */
.utility {
  background: var(--bg-utility);
  border-bottom: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text-secondary);
  position: sticky; top: 0; z-index: 100;
}
.utility .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 34px; gap: 16px;
}
.utility .left, .utility .right { display: flex; align-items: center; gap: 14px; }
.utility .payout-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--text-primary);
}
.live-dot {
  width: 7px; height: 7px; background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-primary);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%      { opacity: 0.6; transform: scale(1.2); }
}
.utility .discord { color: var(--text-secondary); }
.utility .currency {
  background: transparent; border: 1px solid var(--border-soft);
  color: var(--text-primary); font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
}
.utility .geo { color: var(--text-micro); }

/* ---------- BRAND BAR ---------- */
.brandbar {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}
.brandbar .row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.brand .mark {
  width: 36px; height: 36px; background: var(--accent-primary);
  color: var(--text-cta); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; font-family: 'Inter', sans-serif;
}
.brand .domain-tld { color: var(--text-micro); font-weight: 400; font-size: 14px; margin-left: 4px; }
.brand-socials { display: flex; align-items: center; gap: 8px; }
.brand-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: transform .2s var(--ease-spring), color .2s var(--ease-soft), border-color .2s;
}
.brand-socials a:hover {
  transform: translateY(-1px); color: var(--accent-primary);
  border-color: var(--border-accent);
}

/* ---------- STICKY TOP-3 TOPBAR (glass) ---------- */
.v13-topbar {
  position: sticky; top: 34px; z-index: 90;
  background: rgba(10, 18, 32, 0.72);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
}
.v13-topbar-inner {
  display: flex; align-items: center; gap: 10px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.v13-topbar-inner::-webkit-scrollbar { display: none; }
.v13-topbar-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-micro); white-space: nowrap;
}
.v13-topbar-tile {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border-soft);
  padding: 6px 10px; border-radius: 999px;
  white-space: nowrap; font-size: 12px; font-weight: 700;
  color: var(--text-primary);
  transition: transform .18s var(--ease-spring), box-shadow .18s var(--ease-soft), border-color .18s;
}
.v13-topbar-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  border-color: var(--border-accent);
}
.v13-topbar-tile .rank {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--accent-primary); font-size: 13px;
}
.v13-topbar-tile .mini {
  background: linear-gradient(135deg, #10b981, #0d9488);
  color: #fff; font-size: 10px; padding: 3px 8px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ---------- HERO ---------- */
.hero { padding: 42px 0 24px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 46px; line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.hero h1 .accent {
  font-style: italic; font-weight: 700;
  background: linear-gradient(180deg, #5eead4 0%, #2dd4bf 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 32px rgba(45,212,191,0.18);
}
.hero .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400; font-size: 19px;
  color: #a7f3d0; margin: 0; max-width: 660px;
}

/* ---------- GRID SECTION ---------- */
.v13-grid-section { padding: 24px 0 8px; }
.v13-grid-head { margin-bottom: 22px; }
.v13-grid-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 32px; line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.v13-grid-head h2 .accent {
  background: linear-gradient(180deg, #5eead4 0%, #2dd4bf 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v13-grid-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px; color: var(--text-secondary);
}
.v13-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1100px) { .v13-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (max-width: 820px)  { .v13-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 540px)  { .v13-grid { grid-template-columns: 1fr; } }

/* ---------- CASINO CARD (the conversion atom) ---------- */
.v13-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  min-height: 380px;
  display: flex; flex-direction: column;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.30),
    0 10px 30px rgba(0,0,0,0.30),
    0 20px 60px rgba(45,212,191,0.04);
  transition: transform .28s var(--ease-spring),
              border-color .22s var(--ease-soft),
              box-shadow .28s var(--ease-soft);
}
.v13-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45,212,191,0.22);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.35),
    0 14px 40px rgba(0,0,0,0.45),
    0 24px 72px rgba(45,212,191,0.10);
}

/* Top-3 special ring */
.v13-card.v13-top3 { padding: 0; }
.v13-card.v13-top3::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 13px; padding: 1px;
  background: linear-gradient(135deg, #5eead4 0%, #14b8a6 50%, #5eead4 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.v13-card-top {
  position: relative;
  height: 132px;
  border-radius: 12px 12px 0 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(45,212,191,0.16), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(168,85,247,0.10), transparent 55%),
    linear-gradient(135deg, #101a2b, #070d18);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.v13-rank-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--text-primary);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-soft);
}

.v13-score-pill {
  position: absolute; top: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, #14b8a6, #0891b2);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  padding: 4px 10px; border-radius: 14px;
  box-shadow: 0 4px 12px rgba(20,184,166,0.45);
}
.v13-score-pill svg { width: 12px; height: 12px; }

.v13-monthpick {
  position: absolute; bottom: 10px; right: 10px;
  background: var(--accent-primary);
  color: var(--text-cta);
  font-size: 9.5px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.v13-logo {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: 20px;
}
.v13-logo .textmark {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 30px;
  color: #fff; letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.v13-card-body {
  padding: 14px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.v13-bonus-tag {
  display: inline-block;
  background: rgba(45,212,191,0.10);
  color: var(--accent-primary);
  font-size: 12px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid rgba(45,212,191,0.20);
  align-self: flex-start;
}
.v13-data-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  padding: 8px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.v13-data-col { display: flex; flex-direction: column; gap: 2px; }
.v13-data-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  line-height: 1.1;
}
.v13-data-lbl {
  font-size: 9.5px; font-weight: 700; color: var(--text-micro);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.v13-payout-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.v13-payout-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(68,190,76,0.10); color: #7cd97f;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(68,190,76,0.22);
}
.v13-extra-tag {
  background: rgba(168,85,247,0.10); color: #c4b5fd;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(168,85,247,0.22);
}
.v13-cta-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 4px; }
.v13-cta-primary {
  background: linear-gradient(135deg, #10b981, #0d9488);
  color: #fff;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 11px 14px; border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(16,185,129,0.35);
  transition: transform .18s var(--ease-spring), box-shadow .2s var(--ease-soft);
}
.v13-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16,185,129,0.50);
}
.v13-cta-secondary {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 10px 14px; border-radius: 8px;
  transition: color .18s, border-color .18s;
}
.v13-cta-secondary:hover {
  color: var(--accent-primary);
  border-color: var(--border-accent);
}
.v13-fineprint {
  margin: 0;
  font-size: 9px; color: var(--text-micro);
  text-align: center;
  padding-top: 4px;
  line-height: 1.5;
}
.v13-fineprint a { color: inherit; border-bottom: 1px dotted var(--text-micro); }

/* ---------- FAQ ---------- */
.v13-faq-section {
  padding: 48px 0 32px;
}
.v13-faq-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 28px;
  margin-bottom: 20px;
}
.v13-faq-section h2 .accent {
  background: linear-gradient(180deg, #5eead4 0%, #2dd4bf 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v13-faq {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  background: transparent; border: none;
  color: var(--text-primary);
  font-size: 15px; font-weight: 700;
  text-align: left;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  min-height: 56px;
}
.faq-q:hover { color: var(--accent-primary); }
.faq-q .ind {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; color: var(--text-secondary);
  transition: transform .2s var(--ease-soft);
  flex-shrink: 0;
}
.faq-item.open .faq-q .ind {
  transform: rotate(45deg);
  color: var(--accent-primary);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s var(--ease-soft);
  font-size: 14px; color: var(--text-secondary); line-height: 1.65;
}
.faq-a-inner { padding: 0 22px 18px; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-foot {
  margin-top: 14px;
  font-size: 13px; color: var(--text-secondary);
  font-style: italic;
}
.faq-foot a {
  color: var(--accent-primary);
  border-bottom: 1px dotted rgba(45,212,191,0.35);
}

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--bg-utility);
  border-top: 1px solid var(--border-soft);
  margin-top: 60px;
  padding: 44px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); } }
@media (max-width: 820px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .brand { font-size: 22px; margin-bottom: 8px; }
.footer-brand p { font-size: 12px; color: var(--text-secondary); line-height: 1.55; margin: 0 0 12px; }
.footer-brand .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px;
  color: #a7f3d0; margin-bottom: 8px;
}
.footer-brand .feeds { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-brand .feeds a {
  font-size: 10px; font-weight: 700; color: var(--text-micro);
  text-transform: uppercase; letter-spacing: 0.06em;
  border: 1px solid var(--border-soft); padding: 4px 8px; border-radius: 4px;
}
.footer-brand .feeds a:hover { color: var(--accent-primary); border-color: var(--border-accent); }
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-micro); margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col li a { font-size: 12.5px; color: var(--text-secondary); }
.footer-col li a:hover { color: var(--accent-primary); }

.compliance {
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 20px;
  align-items: center;
}
@media (max-width: 820px) { .compliance { grid-template-columns: 1fr; } }
.compliance .legal { font-size: 10px; color: var(--text-micro); line-height: 1.6; }
.compliance .legal a { color: var(--text-secondary); border-bottom: 1px dotted var(--border-soft); }
.compliance .logos { display: flex; gap: 10px; flex-wrap: wrap; }
.gov-logo {
  background: var(--bg-elevated); border: 1px solid var(--border-soft);
  border-radius: 4px; padding: 6px 10px;
  font-size: 10px; font-weight: 700; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease-soft), transform .5s var(--ease-soft); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- FOCUS RINGS ---------- */
:focus-visible { outline: 2px solid var(--accent-primary); outline-offset: 2px; border-radius: 4px; }

/* ---------- MOBILE ---------- */
@media (max-width: 720px) {
  .container { padding: 0 14px; }
  .hero { padding: 28px 0 16px; }
  .hero h1 { font-size: 34px; }
  .hero .subtitle { font-size: 16px; }
  .v13-grid-head h2 { font-size: 26px; }
  .v13-topbar-inner { gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero .subtitle { font-size: 15px; }
  .v13-grid-head h2 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   REVIEW TEMPLATE (violet accent — differentiated from luggo crimson)
   ================================================================ */
.review-body {
  --bg: #050914;
  --fg: #e8ecf5;
  --muted: #9aa3b8;
  --accent: #a855f7;
  --card: #0f1826;
  --border: #1e2a3d;
  --good: #34c759;
  --warn: #f59e0b;
  background: var(--bg);
  color: var(--fg);
  font-size: 17px; line-height: 1.65;
}
.review-body .wrap { max-width: 820px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.review-body .hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 1.5rem; border: 1px solid var(--border); background: linear-gradient(135deg, rgba(168,85,247,0.14), rgba(45,212,191,0.10)); aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 3rem; color: rgba(255,255,255,0.85); letter-spacing: -0.02em; }
.review-body .meta-strip { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; font-size: 0.92rem; }
.review-body .meta-strip .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; padding: 0.4rem 0; }
.review-body .meta-strip .row + .row { border-top: 1px solid var(--border); }
.review-body .meta-strip .label { color: var(--muted); font-weight: 500; }
.review-body .meta-strip .value { color: var(--fg); font-weight: 600; }
.review-body .eic-signoff { background: var(--card); border-left: 3px solid var(--accent); padding: 1rem 1.25rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0; font-size: 0.95rem; color: var(--muted); }
.review-body .eic-signoff strong { color: var(--fg); }
.review-body h1 { font-family: 'Inter', system-ui, sans-serif; font-size: 2.15rem; line-height: 1.2; margin: 0 0 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.review-body h2 { font-family: 'Inter', system-ui, sans-serif; font-size: 1.55rem; line-height: 1.25; margin: 2.75rem 0 1rem; font-weight: 700; letter-spacing: -0.015em; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.review-body h3 { font-family: 'Inter', system-ui, sans-serif; font-size: 1.2rem; line-height: 1.3; margin: 2rem 0 0.75rem; font-weight: 700; }
.review-body p { margin: 0 0 1rem; }
.review-body a { color: var(--accent); text-decoration: none; }
.review-body a:hover { text-decoration: underline; }
.review-body .cta-primary { display: inline-block; background: var(--accent); color: #fff !important; font-weight: 700; padding: 0.9rem 1.5rem; border-radius: 8px; text-decoration: none !important; margin: 1rem 0; font-size: 1.05rem; box-shadow: 0 4px 14px rgba(168,85,247,0.32); }
.review-body .cta-primary:hover { background: #9333ea; }
.review-body .cta-inline { display: inline-block; background: transparent; color: var(--accent) !important; border: 1px solid var(--accent); font-weight: 600; padding: 0.65rem 1.15rem; border-radius: 6px; text-decoration: none !important; margin: 0.75rem 0; }
.review-body table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.95rem; background: var(--card); border-radius: 8px; overflow: hidden; }
.review-body th, .review-body td { text-align: left; padding: 0.7rem 0.85rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.review-body th { background: #131c2c; font-weight: 700; color: #fff; }
.review-body tr:last-child td { border-bottom: none; }
.review-body ul, .review-body ol { padding-left: 1.4rem; }
.review-body li { margin-bottom: 0.35rem; }
.review-body strong { color: #fff; }
.review-body hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.review-body .cta-fineprint { font-size: 0.82rem; color: var(--muted); margin: 0.4rem 0 1rem; font-style: italic; }
.review-body .rating-box { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin: 2rem 0; }
.review-body .rating-box .overall { background: #131c2c; border-top: 1px solid var(--border); margin: 1rem -1.5rem -1.5rem; padding: 1rem 1.5rem; border-radius: 0 0 12px 12px; font-size: 1.1rem; }
.review-body .rating-box .row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dashed var(--border); }
.review-body .rating-box .row:last-of-type { border-bottom: none; }
.review-body .rating-box .cat { font-weight: 600; color: #fff; }
.review-body .rating-box .score { color: var(--accent); font-weight: 700; }
.review-body .rating-box .note { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 400; margin-top: 0.1rem; }
.review-body .pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
@media (max-width: 640px) { .review-body .pc-grid { grid-template-columns: 1fr; } }
.review-body .pros, .review-body .cons { padding: 14px 16px; border-radius: 8px; }
.review-body .pros { background: rgba(52,199,89,0.06); border: 1px solid rgba(52,199,89,0.22); }
.review-body .cons { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.22); }
.review-body .pc-h { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.review-body .pros .pc-h { color: var(--good); }
.review-body .cons .pc-h { color: #ef4444; }
.review-body .callout { background: #131c2c; border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; margin: 1.25rem 0; }
.review-body .callout.warn { border-left: 3px solid var(--warn); }
.review-body .callout.good { border-left: 3px solid var(--good); }

/* ================================================================
   CALCULATOR / GENERIC ARTICLE PAGE
   ================================================================ */
.article-body { padding: 32px 0 80px; }
.article-body .wrap { max-width: 820px; margin: 0 auto; padding: 0 16px; }
.article-body h1 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 42px; line-height: 1.1; margin: 12px 0 12px; letter-spacing: -0.01em; }
.article-body h1 .accent { background: linear-gradient(180deg, #5eead4 0%, #2dd4bf 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; font-weight: 700; }
.article-body .lede { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 19px; color: #a7f3d0; margin: 0 0 24px; max-width: 660px; }
.article-body h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 28px; margin: 32px 0 12px; }
.article-body h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 18px; margin: 20px 0 8px; }
.article-body p, .article-body li { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.article-body p, .article-body ul, .article-body ol { margin: 0 0 14px; }
.article-body ul, .article-body ol { padding-left: 1.4rem; }
.article-body strong { color: var(--text-primary); }
.article-body a.inline-link { color: var(--accent-primary); border-bottom: 1px dotted rgba(45,212,191,0.35); }
.article-body .breadcrumbs { font-size: 12px; color: var(--text-micro); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.article-body .breadcrumbs a { color: var(--text-secondary); }
.article-body .breadcrumbs a:hover { color: var(--accent-primary); }
.article-body .callout {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent-primary);
  border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 20px 0;
  color: var(--text-primary);
}
.article-body .callout b { color: var(--accent-primary); text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; display: block; margin-bottom: 4px; }

/* Calculator UI */
.calc {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 26px;
  margin: 24px 0;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field label {
  font-size: 11px; font-weight: 700; color: var(--text-micro);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.calc-field input, .calc-field select {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  font: inherit; font-size: 16px; font-weight: 700;
  padding: 12px 14px; border-radius: 8px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.calc-field input:focus, .calc-field select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(45,212,191,0.14);
}
.calc-field .hint { font-size: 11px; color: var(--text-micro); }
.calc-results {
  margin-top: 22px;
  padding: 20px;
  background: var(--bg-elevated);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
}
.calc-results h3 {
  font-size: 12px; font-weight: 700; color: var(--text-micro);
  text-transform: uppercase; letter-spacing: 0.10em; margin: 0 0 10px;
}
.calc-metric { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--border-soft); }
.calc-metric:last-of-type { border-bottom: none; }
.calc-metric .k { color: var(--text-secondary); font-size: 14px; }
.calc-metric .v { color: var(--text-primary); font-weight: 700; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; }
.calc-verdict {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}
.calc-verdict.good  { background: rgba(52,199,89,0.10); color: #7cd97f; border: 1px solid rgba(52,199,89,0.32); }
.calc-verdict.warn  { background: rgba(245,158,11,0.10); color: #fbbf24; border: 1px solid rgba(245,158,11,0.32); }
.calc-verdict.bad   { background: rgba(239,68,68,0.10); color: #f87171; border: 1px solid rgba(239,68,68,0.32); }

.about-team {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0;
}
@media (max-width: 720px) { .about-team { grid-template-columns: 1fr; } }
.about-team .person {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 16px;
}
.about-team .person h4 { color: var(--text-primary); font-size: 15px; margin-bottom: 4px; }
.about-team .person .role { color: var(--accent-primary); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.about-team .person p { color: var(--text-secondary); font-size: 13px; margin: 0; }
