/* ===== JACKPOT CITY CASINO UK — STYLESHEET ===== */

:root {
  --gold:       #FFD700;
  --gold-light: #FFE566;
  --gold-dark:  #C9A800;
  --black:      #0A0A0F;
  --dark:       #12121A;
  --dark-mid:   #1C1C2A;
  --dark-card:  #22223A;
  --red:        #E8003A;
  --red-dark:   #B5002C;
  --white:      #FFFFFF;
  --off-white:  #F0EDE4;
  --muted:      #9A98B0;
  --border:     rgba(255,215,0,0.18);
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 32px rgba(0,0,0,0.55);
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

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

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

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

img { display: none !important; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--gold);
  letter-spacing: .01em;
}
h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); margin-bottom: .85rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: .65rem; }
h4 { font-size: 1rem; color: var(--gold-light); margin-bottom: .4rem; }
p  { margin-bottom: 1rem; color: var(--off-white); }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

/* ===== UTILITY ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.section    { padding: 64px 0; overflow: hidden; }
.section--dark { background: var(--dark); }
.section--mid  { background: var(--dark-mid); }
.text-center   { text-align: center; }
.text-gold     { color: var(--gold); }
.text-muted    { color: var(--muted); font-size: .9rem; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255,215,0,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,.5);
  color: var(--black);
}
.btn--red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(232,0,58,.4);
}
.btn--red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(232,0,58,.55);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn--lg { padding: 16px 44px; font-size: 1.05rem; }

/* ===== TOP BONUS BANNER (first screen) ===== */
.bonus-hero-banner {
  background: linear-gradient(90deg, #B5002C 0%, #E8003A 40%, #C9A800 80%, #FFD700 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.bonus-hero-banner::before {
  content: '★ ♠ ♦ ★ ♣ ♥ ★ ♠ ♦ ★ ♣ ♥ ★';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: rgba(255,255,255,.12);
  white-space: nowrap;
  pointer-events: none;
}
.bonus-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  flex-wrap: wrap;
}
.bonus-hero-text {
  flex: 1;
  min-width: 220px;
}
.bonus-hero-text strong {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--white);
  font-family: var(--font-display);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.bonus-hero-text span {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
}
.bonus-hero-badge {
  background: var(--black);
  color: var(--gold);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  font-family: var(--font-display);
  white-space: nowrap;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  gap: 16px;
  box-sizing: border-box;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .03em;
}
.logo-text .logo-sub {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 7px 13px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--off-white);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.site-nav a:hover { background: var(--dark-card); color: var(--gold); }
.header-cta { flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--dark) 0%, #18081C 50%, var(--dark) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255,215,0,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232,0,58,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--gold-dark));
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 22px;
  flex-wrap: wrap;
}
.stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.hero-rating span { color: var(--muted); font-size: .88rem; }
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .8rem;
  color: var(--off-white);
}
.badge svg { flex-shrink: 0; }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.casino-visual-box {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  box-shadow: 0 8px 48px rgba(255,215,0,.1), var(--shadow);
  position: relative;
  overflow: hidden;
}
.casino-visual-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.casino-big-logo {
  width: 160px;
  height: 80px;
}
.casino-stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.casino-stat {
  text-align: center;
}
.casino-stat .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
}
.casino-stat .lbl {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ===== QUICK STATS STRIP ===== */
.stats-strip {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  width: 100%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item .num {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
}
.stat-item .lbl {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ===== SECTION DIVIDER ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-label span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  white-space: nowrap;
}

/* ===== GAME CATEGORIES ===== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.game-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.game-card:hover::before { transform: scaleX(1); }
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 40px rgba(255,215,0,.15);
}
.game-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.game-card p  { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }

/* ===== BONUS STRIP (mid-page) ===== */
.bonus-strip {
  background: linear-gradient(100deg, #18081C 0%, #2A0A1A 50%, #18081C 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.bonus-strip::after {
  content: '♠  ♦  ♣  ♥  ♠  ♦  ♣  ♥  ♠  ♦  ♣  ♥';
  position: absolute;
  bottom: 8px;
  right: 0;
  font-size: .9rem;
  color: rgba(255,215,0,.08);
  letter-spacing: .4em;
  white-space: nowrap;
  pointer-events: none;
}
.bonus-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bonus-strip-text strong {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--gold);
  font-family: var(--font-display);
}
.bonus-strip-text p {
  color: var(--muted);
  margin: 0;
  font-size: .9rem;
}

/* ===== WHY SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color .2s;
}
.why-card:hover { border-color: var(--gold-dark); }
.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255,215,0,.18), rgba(255,215,0,.04));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p  { font-size: .88rem; color: var(--muted); margin: 0; }

/* ===== REVIEW ARTICLE ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.article-body h2 { margin-top: 40px; margin-bottom: 12px; }
.article-body h3 { margin-top: 28px; margin-bottom: 10px; color: var(--gold-light); }
.article-body p  { line-height: 1.75; }
.article-body ul { margin-bottom: 1rem; }
.article-body ul li { color: var(--off-white); }
.article-body strong { color: var(--gold-light); }

.sidebar-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: 16px; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list .label { color: var(--muted); }
.sidebar-list .value { color: var(--off-white); font-weight: 600; text-align: right; max-width: 55%; }
.score-big {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.score-big .score-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}
.score-big .score-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ===== PROS CONS ===== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-cons-box {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.pros-cons-box.pros { border-top: 3px solid #00C96B; }
.pros-cons-box.cons { border-top: 3px solid var(--red); }
.pros-cons-box h3  { font-size: 1rem; margin-bottom: 14px; }
.pros-cons-box.pros h3 { color: #00C96B; }
.pros-cons-box.cons h3 { color: var(--red); }
.pros-cons-list { list-style: none; padding: 0; margin: 0; }
.pros-cons-list li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--off-white);
}
.pros-cons-list li:last-child { border-bottom: none; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: #00C96B; font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.data-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: .875rem;
}
.data-table th {
  background: var(--dark-card);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 2px solid var(--gold-dark);
}
.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--off-white);
}
.data-table tr:hover td { background: rgba(255,215,0,.04); }
.data-table .good { color: #00C96B; font-weight: 600; }
.data-table .ok   { color: var(--gold); font-weight: 600; }
.data-table .bad  { color: var(--red); }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--off-white);
  gap: 12px;
}
.faq-q:hover { background: rgba(255,215,0,.05); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform .25s;
  color: var(--gold);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 800px;
  padding: 0 22px 18px;
}
.faq-a p { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.7; }

/* ===== PAYMENT METHODS ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 14px;
}
.payment-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .2s;
}
.payment-card:hover { border-color: var(--gold-dark); }
.payment-icon {
  width: 48px;
  height: 30px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-card .name { font-size: .82rem; font-weight: 600; color: var(--off-white); }
.payment-card .meta { font-size: .72rem; color: var(--muted); margin-top: 2px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: .85rem; color: var(--muted); margin-top: 12px; max-width: 280px; }
.footer-col h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .85rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal p { font-size: .75rem; color: var(--muted); line-height: 1.6; max-width: 700px; }
.responsible-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.resp-badge {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== RATING STARS INLINE ===== */
.inline-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .82rem;
  margin-bottom: 14px;
}
.inline-rating .stars { font-size: .9rem; letter-spacing: 1px; }
.inline-rating span  { color: var(--muted); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,215,0,.08), rgba(232,0,58,.05));
  border: 1px solid rgba(255,215,0,.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; font-size: .92rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .site-nav     { display: none; }
  .bonus-hero-inner { flex-direction: column; text-align: center; }
  .bonus-strip-inner { flex-direction: column; text-align: center; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 10px 16px; gap: 10px; }
  .logo-text .logo-sub { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .btn--lg { padding: 13px 22px; font-size: .88rem; }
  .btn { padding: 11px 20px; font-size: .85rem; }
  .bonus-hero-badge { white-space: normal; font-size: .95rem; }
  .bonus-hero-inner { padding: 14px 16px; gap: 12px; }
  .bonus-hero-text strong { font-size: 1rem; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 44px 0; }
  .container { padding: 0 16px; }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .article-body h2 { font-size: 1.15rem; }
  .article-body h3 { font-size: 1rem; }
  .sidebar-card { padding: 16px; }
  .score-big .score-num { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .site-footer { padding: 36px 0 20px; }
  .footer-bottom { flex-direction: column; }
  .faq-q { font-size: .88rem; padding: 14px 16px; }
  .faq-a { padding: 0 16px; }
  .faq-item.open .faq-a { padding: 0 16px 14px; }
  .pros-cons-box { padding: 18px 16px; }
  .why-card { padding: 20px 16px; }
}
