/* ===== CSS VARIABLES ===== */
:root {
  --bg-light: #FFF5F5;
  --white: #FFFFFF;
  --pink: #FF6B9D;
  --orange: #FFA552;
  --purple: #7C3AED;
  --success: #10B981;
  --danger: #EF4444;
  --text-dark: #1F2937;
  --text-body: #374151;
  --text-muted: #6B7280;
  --border-pink: rgba(255,107,157,0.2);
  --shadow-pink: rgba(255,107,157,0.1);
  --shadow-card: 0 4px 24px rgba(255,107,157,0.08);
  --gradient: linear-gradient(135deg, var(--pink), var(--orange));
  --gradient-h: linear-gradient(90deg, var(--pink), var(--orange));
  --max-width: 1200px;
  --font-heading: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-light);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--orange); opacity: .9; }
ul, ol { padding-left: 1.5em; }
li { margin-bottom: .4em; }
strong { font-weight: 700; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text-dark);
}
h1 { font-size: 44px; margin-bottom: 24px; }
h2 { font-size: 34px; margin-top: 64px; margin-bottom: 20px; }
h3 { font-size: 26px; margin-top: 40px; margin-bottom: 16px; }
h4 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
p { margin-bottom: 1.1em; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--white); }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-pink);
  box-shadow: 0 2px 12px var(--shadow-pink);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo:hover { color: var(--text-dark); opacity: 1; }
.nav-logo img { height: 28px; width: auto; vertical-align: middle; margin-right: 6px; }
.nav-links {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  white-space: nowrap;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
  opacity: 1;
}
.nav-cta { display: inline-block; }

/* Mobile nav */
#nav-toggle { display: none; }
.hamburger-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform .3s, opacity .3s;
}
#nav-toggle:checked ~ .nav-overlay { display: flex; }
#nav-toggle:checked ~ .hamburger-label span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#nav-toggle:checked ~ .hamburger-label span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .hamburger-label span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  gap: 24px;
  z-index: 99;
}
.nav-overlay a {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-dark);
  text-decoration: none;
}
.nav-overlay a:hover { color: var(--pink); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 16px 0 0; font-size: 14px; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--pink); }
.breadcrumbs .sep { margin: 0 8px; }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,107,157,0.08) 0%, transparent 60%);
}
.hero h1 { max-width: 900px; margin: 0 auto 20px; }
.hero .subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .stat-value {
  font-family: var(--font-heading);
  font-size: 40px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-stat .stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== CTA BUTTONS ===== */
.cta-primary {
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: box-shadow .3s, transform .1s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
.cta-primary:hover {
  box-shadow: 0 8px 30px rgba(255,107,157,0.4);
  transform: translateY(-2px);
  color: #fff;
  opacity: 1;
}
.cta-secondary {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  font-family: var(--font-heading);
  font-size: 18px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: box-shadow .3s, transform .1s, background .2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
.cta-secondary:hover {
  box-shadow: 0 4px 20px rgba(255,107,157,0.25);
  background: rgba(255,107,157,0.06);
  transform: translateY(-1px);
  opacity: 1;
}
.cta-center { text-align: center; margin: 40px 0; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: border-color .3s, box-shadow .3s, transform .2s;
}
.card:hover {
  border-color: rgba(255,107,157,0.5);
  box-shadow: 0 8px 32px rgba(255,107,157,0.15);
  transform: translateY(-2px);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.card h3 { margin-top: 0; }
.card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(124,58,237,0.1);
  color: var(--purple);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.card-tag.green { background: rgba(16,185,129,0.1); color: var(--success); }
.card-tag.red { background: rgba(239,68,68,0.1); color: var(--danger); }
.card-tag.pink { background: rgba(255,107,157,0.1); color: var(--pink); }

/* ===== DATA TABLES ===== */
.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-pink);
  box-shadow: var(--shadow-card);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 16px;
}
.data-table th {
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-heading);
  padding: 16px;
  text-align: left;
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255,107,157,0.1);
}
.data-table tr:hover { background: rgba(255,107,157,0.03); }
.data-table .num { font-family: var(--font-heading); }
.data-table .green { color: var(--success); }
.data-table .red { color: var(--danger); }
.data-table .cta-sm {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow .3s;
}
.data-table .cta-sm:hover {
  box-shadow: 0 4px 16px rgba(255,107,157,0.35);
  opacity: 1;
  color: #fff;
}

/* ===== BAR CHART ===== */
.bar-chart { margin: 32px 0; display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label {
  min-width: 120px;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-muted);
}
.bar-track {
  flex: 1;
  height: 28px;
  background: rgba(255,107,157,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 8px;
  background: var(--gradient-h);
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.bar-fill.purple-bar { background: linear-gradient(90deg, var(--purple), #A78BFA); }
.bar-fill.green-bar { background: linear-gradient(90deg, var(--success), #6EE7B7); }
.bar-val {
  font-family: var(--font-heading);
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
}
.bar-val-out {
  min-width: 50px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-dark);
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--white);
  border-left: 4px solid var(--purple);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}
.info-box.warning { border-left-color: var(--danger); }
.info-box.tip { border-left-color: var(--success); }
.info-box p:last-child { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-list { margin: 32px 0; display: flex; flex-direction: column; gap: 12px; }
details.faq-item {
  background: var(--white);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color .3s;
}
details.faq-item[open] { border-color: rgba(255,107,157,0.5); }
details.faq-item summary {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--pink);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
details.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 24px 20px; color: var(--text-body); font-size: 16px; line-height: 1.7; }

/* ===== TOC ===== */
.toc {
  background: var(--white);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  box-shadow: var(--shadow-card);
}
.toc h4 {
  margin-top: 0; margin-bottom: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.toc ul { list-style: none; padding: 0; }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--text-muted); font-size: 15px; text-decoration: none; }
.toc a:hover { color: var(--pink); }

/* ===== CONTENT ===== */
.content .container { max-width: 800px; }
.content { padding: 48px 0 80px; }
.content a { text-decoration: underline; text-underline-offset: 3px; }
.content a:hover { text-decoration-color: var(--pink); }
.last-updated { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.content blockquote {
  border-left: 3px solid var(--purple);
  padding: 12px 20px;
  margin: 24px 0;
  color: var(--text-muted);
  font-style: italic;
  background: rgba(124,58,237,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h5 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}
.footer p, .footer a { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer a { text-decoration: none; display: block; }
.footer a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.age-badge {
  display: inline-block;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ===== SCROLL BALL ===== */
.scroll-ball {
  position: fixed;
  right: 24px;
  bottom: 20%;
  width: 32px;
  height: 32px;
  opacity: 0.5;
  z-index: 50;
  animation: ball-drop linear;
  animation-timeline: scroll();
  pointer-events: none;
}
.scroll-ball svg { width: 32px; height: 32px; }
@keyframes ball-drop {
  from { bottom: 85%; opacity: 0.3; }
  to { bottom: 10%; opacity: 0.8; }
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-pink);
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.sticky-bottom .cta-primary {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 12px 20px;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color .3s, box-shadow .3s, transform .2s;
}
.blog-card:hover {
  border-color: rgba(255,107,157,0.4);
  box-shadow: 0 8px 32px rgba(255,107,157,0.12);
  transform: translateY(-2px);
}
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { margin-top: 0; font-size: 22px; }
.blog-card p { font-size: 15px; color: var(--text-muted); }

/* ===== STEP LIST ===== */
.step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.step-list li {
  counter-increment: step;
  padding: 20px 20px 20px 70px;
  background: var(--white);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 20px; top: 20px;
  width: 36px; height: 36px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
}

/* ===== RATING ===== */
.rating { color: #FBBF24; font-size: 18px; letter-spacing: 2px; }

/* ===== RG NOTICE ===== */
.rg-notice {
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.rg-notice a { color: var(--danger); }

/* ===== MULTIPLIER BADGE ===== */
.mult {
  display: inline-block;
  font-family: var(--font-heading);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.95em;
}
.mult.low { background: rgba(16,185,129,0.12); color: var(--success); }
.mult.high { background: rgba(239,68,68,0.12); color: var(--danger); }
.mult.mid { background: rgba(124,58,237,0.12); color: var(--purple); }

/* ===== PLINKO GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PLINKO BALL BOUNCE ANIMATION ===== */
@keyframes ball-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ball-bounce { animation: ball-bounce 1.5s ease-in-out infinite; }

/* ===== NEON GLOW (PLAYFUL) ===== */
@keyframes plinko-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(255,107,157,0.3); }
  50% { text-shadow: 0 0 20px rgba(255,107,157,0.5), 0 0 40px rgba(255,165,82,0.2); }
}
.plinko-glow { animation: plinko-glow 3s ease-in-out infinite; }

/* ===== SHARE BUTTONS ===== */
.share-buttons { display:flex; align-items:center; gap:8px; margin:24px 0; padding:16px; border-top:1px solid var(--border-pink); }
.share-buttons span { font-size:13px; color: var(--text-muted); }
.share-btn { display:inline-flex; align-items:center; justify-content:center; padding:6px 14px; border-radius:6px; font-size:13px; text-decoration:none; color:#fff; }
.share-x { background:#000; }
.share-wa { background:#25D366; }
.share-tg { background:#0088cc; }

/* ===== AUTHOR E-E-A-T SYSTEM ===== */
.author-byline { display:flex; align-items:center; gap:12px; margin:16px 0 24px; padding:12px 16px; background:rgba(255,107,157,0.04); border-radius:var(--radius-sm); }
.author-avatar { width:40px; height:40px; border-radius:50%; object-fit:cover; }
.author-info { display:flex; flex-direction:column; }
.author-name { font-weight:700; font-size:14px; display:flex; align-items:center; gap:4px; color: var(--text-dark); }
.author-role { font-size:12px; color: var(--text-muted); }
.verified-badge { flex-shrink:0; }
.author-box { display:flex; gap:20px; padding:24px; margin:40px 0 20px; border:1px solid var(--border-pink); border-radius:var(--radius); background:var(--white); box-shadow: var(--shadow-card); }
.author-box-photo { width:80px; height:80px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.author-box-content { flex:1; }
.author-box-name { font-size:18px; margin:0 0 8px; display:flex; align-items:center; gap:6px; font-family: var(--font-heading); color: var(--text-dark); }
.author-box-bio { font-size:14px; color: var(--text-muted); margin:0 0 12px; line-height:1.5; }
.author-box-links { display:flex; gap:16px; font-size:13px; }
.author-link { color:inherit; text-decoration:underline; }
.reviewer-line { font-size:13px; color: var(--text-muted); margin:8px 0 32px; padding-left:24px; border-left:3px solid var(--border-pink); }
.reviewer-line strong { color: var(--text-dark); }

@media(max-width:600px) {
  .author-box { flex-direction:column; align-items:center; text-align:center; }
  .author-box-links { justify-content:center; }
}

/* ===== AFFILIATE DISCLOSURE ===== */
.affiliate-disclosure { font-size:12px; color: var(--text-muted); margin:4px 0 16px; font-style:italic; }

/* ===== DATA NOTE ===== */
.data-note { font-size:13px; color: var(--text-muted); border-left:3px solid var(--border-pink); padding-left:12px; margin:8px 0 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 30px; }
  h2 { font-size: 24px; margin-top: 48px; }
  h3 { font-size: 20px; }
  h4 { font-size: 17px; }
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
  .hero-stats { gap: 24px; }
  .hero-stat .stat-value { font-size: 28px; }
  .nav-links { display: none; }
  .nav-cta.desk-only { display: none; }
  .hamburger-label { display: flex; }
  .sticky-bottom { display: flex; }
  .scroll-ball { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .bar-label { min-width: 80px; font-size: 12px; }
  .data-table { font-size: 14px; }
  .data-table th, .data-table td { padding: 10px 12px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .cta-primary, .cta-secondary { font-size: 16px; padding: 14px 24px; }
}

/* ===== UTILITIES ===== */
.text-green { color: var(--success); }
.text-red { color: var(--danger); }
.text-pink { color: var(--pink); }
.text-purple { color: var(--purple); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ===== FIX OVERFLOW ===== */
.share-buttons, .author-box, .reviewer-line { max-width: 100%; overflow: hidden; box-sizing: border-box; }
.content { overflow-x: hidden; }

/* ===== PROS CONS ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.pros-list, .cons-list { background: var(--white); border-radius: var(--radius-sm); padding: 20px; border: 1px solid var(--border-pink); box-shadow: var(--shadow-card); }
.pros-list h4, .cons-list h4 { margin-top: 0; }
.pros-list h4 { color: var(--success); }
.cons-list h4 { color: var(--danger); }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

/* ===== CONTEXT VISUALS ===== */
.context-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.context-visual {
  background: var(--white);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.context-visual img {
  width: 100%;
  height: auto;
}
.context-visual figcaption {
  padding: 14px 18px 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 700px) {
  .context-visual-grid { grid-template-columns: 1fr; }
}

/* ===== 404 ===== */
.page-404 { text-align: center; padding: 120px 24px; min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.page-404 h1 { font-size: 120px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.page-404 p { font-size: 20px; color: var(--text-muted); margin-bottom: 32px; }

@media print {
  .navbar, .footer, .sticky-bottom, .scroll-ball { display: none; }
  body { background: #fff; color: #111; }
  a { color: #111; }
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-body);
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #F0F0F0;
  line-height: 1.5;
}
.cookie-banner p a {
  color: var(--pink);
  text-decoration: underline;
}
.cookie-banner p a:hover {
  color: var(--orange);
}
.cookie-banner button {
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.1s;
  white-space: nowrap;
}
.cookie-banner button:hover {
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.4);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px 20px;
  }
}
