﻿/* ============================================
   HelloMillions.de – Design System
   Brand: Lime Yellow #D4FF3B + Dark Maroon #2A0A0A
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Brand Colors */
  --yellow:       #D4FF3B;
  --yellow-light: #E8FF7A;
  --yellow-dark:  #A8CC00;
  --maroon:       #2A0A0A;
  --maroon-mid:   #3D1010;
  --maroon-light: #5A1A1A;
  --red-accent:   #E63030;

  /* UI Colors */
  --bg:           #1A0606;
  --surface:      #2A0E0E;
  --surface-2:    #350F0F;
  --card-bg:      #3A1212;
  --border:       rgba(212,255,59,0.15);
  --border-bright:rgba(212,255,59,0.35);

  /* Text */
  --text:         #F5F0D0;
  --text-muted:   #A89060;
  --text-dim:     #7A6040;

  /* Fonts */
  --font-head:    'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  /* Shadows */
  --shadow-y:     0 0 40px rgba(212,255,59,0.12);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.5);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--yellow); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: sticky; top: 0; z-index: 10000;
  background: rgba(26,6,6,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--yellow);
  box-shadow: 0 2px 30px rgba(212,255,59,.15);
  /* NO transform here — transform breaks position:fixed children */
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 76px; max-width: 1400px; margin: 0 auto;
}
.header-logo img { height: 54px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  color: var(--text); padding: 8px 14px; border-radius: 8px;
  transition: all .2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--yellow); background: rgba(212,255,59,.08); }
.header-cta {
  background: var(--yellow); color: var(--maroon) !important;
  font-family: var(--font-head); font-weight: 800; font-size: .92rem;
  padding: 10px 22px; border-radius: 50px;
  transition: all .2s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,255,59,.35);
  display: flex; align-items: center; gap: 6px;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,255,59,.5); opacity: 1 !important; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span {
  display: block; width: 24px; height: 2px; background: var(--yellow);
  margin: 5px 0; transition: .3s; border-radius: 2px;
}

/* Mobile-only CTA in header (hidden on desktop) */
.mobile-cta {
  display: none;
  background: var(--yellow);
  color: var(--maroon) !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  padding: 8px 14px;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(212,255,59,.4);
  transition: all .2s;
}
.mobile-cta:hover { opacity: 1 !important; transform: translateY(-1px); }

/* Mobile nav – must be OUTSIDE any transformed ancestor */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(26,6,6,.98);
  padding: 32px 24px;
  z-index: 9999;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 1.1rem; padding: 14px 20px; border-radius: 12px; }
.mobile-nav .header-cta { text-align: center; justify-content: center; font-size: 1.1rem; padding: 16px; margin-top: 8px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,6,6,.92) 0%, rgba(42,10,10,.75) 50%, rgba(26,6,6,.85) 100%);
}
/* Comic dot pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,255,59,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px; padding: 80px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,255,59,.12); border: 1px solid var(--border-bright);
  color: var(--yellow); font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 24px; letter-spacing: .5px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 22px;
  text-shadow: 2px 4px 20px rgba(0,0,0,.6);
}
.hero h1 .accent { color: var(--yellow); }
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--yellow);
  display: block;
}
.hero-stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 50px; transition: all .25s;
  cursor: pointer; border: none; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--yellow); color: var(--maroon);
  box-shadow: 0 6px 24px rgba(212,255,59,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(212,255,59,.5); opacity: 1; }
.btn-outline {
  background: transparent; color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-outline:hover { background: rgba(212,255,59,.1); opacity: 1; }
.btn-dark {
  background: var(--maroon-light); color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover { background: var(--surface-2); opacity: 1; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .88rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-dark { background: var(--surface); }
.section-alt { background: var(--bg); }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,255,59,.08); border: 1px solid var(--border-bright);
  color: var(--yellow); font-size: .82rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; letter-spacing: .5px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; line-height: 1.15;
}
.section-title .grad { color: var(--yellow); }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 16px auto 0; font-size: 1.05rem; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .25s; box-shadow: var(--shadow-card);
}
.card:hover { border-color: var(--border-bright); transform: translateY(-4px); box-shadow: var(--shadow-y); }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }

/* Bonus Card */
.bonus-card {
  background: linear-gradient(135deg, rgba(212,255,59,.08) 0%, var(--card-bg) 100%);
  border: 2px solid rgba(212,255,59,.25); border-radius: var(--radius-lg); padding: 32px;
  text-align: center; transition: all .25s;
}
.bonus-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.bonus-amount {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 900;
  color: var(--yellow); margin: 12px 0 6px;
}
.bonus-label { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }

/* Game Card */
.game-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all .25s;
}
.game-card:hover { transform: translateY(-5px); border-color: var(--yellow); }
.game-card img { width: 100%; height: 180px; object-fit: cover; }
.game-card-body { padding: 16px; }
.game-badge {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 8px;
}
.badge-hot { background: rgba(230,48,48,.2); color: #FF6B6B; border: 1px solid rgba(230,48,48,.3); }
.badge-new { background: rgba(212,255,59,.15); color: var(--yellow); border: 1px solid rgba(212,255,59,.3); }
.badge-top { background: rgba(255,180,0,.15); color: #FFB800; border: 1px solid rgba(255,180,0,.3); }
.game-card-body h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 4px; }
.game-card-body p { font-size: .82rem; color: var(--text-muted); }

/* Feature list */
.feature-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.feature-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================
   TABLES
   ============================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.hm-table { width: 100%; border-collapse: collapse; }
.hm-table th {
  background: rgba(212,255,59,.08); color: var(--yellow);
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  padding: 14px 18px; text-align: left; white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.hm-table td {
  padding: 13px 18px; border-bottom: 1px solid rgba(212,255,59,.06);
  font-size: .92rem; color: var(--text);
}
.hm-table tr:last-child td { border-bottom: none; }
.hm-table tr:hover td { background: rgba(212,255,59,.04); }
.td-yes { color: #5AE87A; font-weight: 700; }
.td-no { color: #E85A5A; font-weight: 700; }
.td-val { color: var(--yellow); font-weight: 700; }
.td-best { color: var(--yellow); font-weight: 800; background: rgba(212,255,59,.06) !important; }

/* ============================================
   BARS / CHARTS
   ============================================ */
.rating-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.rating-label { width: 120px; font-size: .85rem; color: var(--text-muted); flex-shrink: 0; }
.rating-track { flex: 1; height: 8px; background: rgba(212,255,59,.1); border-radius: 4px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--yellow-dark), var(--yellow)); border-radius: 4px; transition: width 1.2s ease; }
.rating-val { width: 40px; text-align: right; font-family: var(--font-head); font-weight: 700; color: var(--yellow); font-size: .9rem; }

/* Donut */
.donut-wrap { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.donut-svg circle { fill: none; stroke-width: 18; }
.donut-track { stroke: rgba(212,255,59,.1); }
.donut-fill { stroke: var(--yellow); stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; transition: stroke-dashoffset 1.5s ease; }
.donut-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.donut-pct { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--yellow); }
.donut-lbl { font-size: .72rem; color: var(--text-muted); }
.donut-relative { position: relative; width: 140px; height: 140px; }
.donut-legend-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .85rem; }
.donut-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ============================================
   STEPS
   ============================================ */
.steps { display: flex; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(212,255,59,.2) 100%);
}
.step-card { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--yellow); color: var(--maroon);
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; z-index: 2;
  box-shadow: 0 4px 20px rgba(212,255,59,.4);
}
.step-card h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .88rem; color: var(--text-muted); }

/* ============================================
   NOTICE / ALERT
   ============================================ */
.notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px; border-radius: var(--radius); margin: 24px 0;
}
.notice-info { background: rgba(212,255,59,.07); border: 1px solid rgba(212,255,59,.2); }
.notice-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.notice p { font-size: .92rem; color: var(--text-muted); }

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  background: linear-gradient(135deg, rgba(212,255,59,.08) 0%, rgba(42,10,10,.5) 100%);
  border: 2px solid rgba(212,255,59,.3); border-radius: var(--radius-xl);
  padding: 48px 32px; text-align: center;
}
.big-score {
  font-family: var(--font-head); font-size: 5rem; font-weight: 900;
  color: var(--yellow); line-height: 1; text-shadow: 0 0 40px rgba(212,255,59,.5);
}
.stars { color: var(--yellow); font-size: 1.6rem; letter-spacing: 3px; margin: 12px 0; }

/* ============================================
   PROS/CONS
   ============================================ */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros, .cons { background: var(--card-bg); border-radius: var(--radius); padding: 24px; }
.pros { border-left: 3px solid #5AE87A; }
.cons { border-left: 3px solid #E85A5A; }
.pros h4, .cons h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 14px; }
.pros h4 { color: #5AE87A; }
.cons h4 { color: #E85A5A; }
.pros li, .cons li { font-size: .9rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); list-style: none; padding-left: 20px; position: relative; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: #5AE87A; font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: #E85A5A; font-weight: 700; }

/* ============================================
   FAQ
   ============================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  color: var(--text); font-family: var(--font-head); font-size: 1.02rem; font-weight: 600;
  text-align: left; gap: 16px; transition: color .2s;
}
.faq-btn:hover { color: var(--yellow); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(212,255,59,.1); border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 1.2rem; flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(212,255,59,.2); }
.faq-body { display: none; padding: 0 0 20px; }
.faq-item.open .faq-body { display: block; }
.faq-body p { color: var(--text-muted); line-height: 1.7; }

/* ============================================
   AUTHOR BLOCK
   ============================================ */
.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin: 40px 0 0;
}
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--yellow); flex-shrink: 0;
}
.author-role { font-size: .78rem; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.author-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.author-name a { color: var(--text); }
.author-name a:hover { color: var(--yellow); }
.author-bio { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--text-dim); margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { color: var(--text-dim); }
.breadcrumb-current { color: var(--yellow); }

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  position: relative; min-height: 50vh; display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,6,6,.5) 0%, rgba(26,6,6,.9) 70%, var(--bg) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 60px 24px 48px; width: 100%; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 16px; color: var(--text-muted); font-size: .88rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--surface); border-top: 2px solid var(--yellow);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 72px; width: auto; max-width: 260px; object-fit: contain; display: block; }
.footer-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-head); font-weight: 700; color: var(--yellow);
  font-size: .9rem; letter-spacing: .5px; margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--text-dim);
}
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.badge-18 {
  width: 32px; height: 32px; border-radius: 50%; background: var(--red-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: .7rem; color: #fff;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.anim.visible { opacity: 1; transform: none; }
.anim-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.anim-left.visible { opacity: 1; transform: none; }
.anim-scale { opacity: 0; transform: scale(.92); transition: opacity .5s ease, transform .5s ease; }
.anim-scale.visible { opacity: 1; transform: scale(1); }

/* ============================================
   SEO ARTICLE
   ============================================ */
.article-body h2 { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; margin: 36px 0 14px; color: var(--text); }
.article-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin: 28px 0 12px; color: var(--yellow); }
.article-body p { color: var(--text-muted); margin-bottom: 16px; }
.article-body ul, .article-body ol { list-style: none; margin-bottom: 16px; display: flex; flex-direction: column; gap: 10px; }
.article-body li { color: var(--text-muted); padding-left: 22px; position: relative; font-size: .95rem; }
.article-body li::before { content: '►'; position: absolute; left: 0; color: var(--yellow); font-size: .65rem; top: 5px; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a { color: var(--yellow); font-weight: 600; }

/* Stat boxes */
.stat-box {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--yellow);
}
.stat-lbl { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: block; }
  .mobile-cta { display: inline-flex; align-items: center; gap: 4px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 56px 0; }
  .donut-wrap { flex-direction: column; }
  .author-box { flex-direction: column; }
  .page-hero { min-height: 40vh; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .rating-label { width: 90px; font-size: .78rem; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--yellow); color: var(--maroon);
  font-family: var(--font-head); font-weight: 800;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  z-index: 99999; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }