/* =============================================================
   energy-casino-pl.com — affiliate review site
   Brand colors taken from the actual Energy Casino logo:
     - Yellow primary (#ffd400 / #f5c100)
     - Dark backdrop (#0e0f14)
     - Subtle red accent for emphasis only
   ============================================================= */

:root {
  --c-yellow:     #ffd400;
  --c-yellow-d:   #f5c100;
  --c-yellow-s:   #fff36b;
  --c-bg:         #0a0b10;
  --c-bg-2:       #14161f;
  --c-bg-3:       #1c1f2b;
  --c-card:       #161823;
  --c-card-bd:    #2a2d3d;
  --c-text:       #ececf0;
  --c-text-mute:  #b1b3c2;
  --c-text-dim:   #7a7e92;
  --c-success:    #2ecc71;
  --c-warning:    #f39c12;
  --c-danger:     #e6172a;

  --maxw:         1200px;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 8px 28px rgba(0,0,0,.4);
  --shadow-soft:  0 4px 14px rgba(0,0,0,.3);

  --ff-display:   'Bebas Neue', 'Impact', sans-serif;
  --ff-body:      'Manrope', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background:
    radial-gradient(1100px 600px at 80% -200px, rgba(255,212,0,.10), transparent 60%),
    radial-gradient(800px 500px at -10% 20%, rgba(255,212,0,.04), transparent 60%),
    var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: var(--c-yellow);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: color .15s, border-color .15s;
}
a:hover { color: var(--c-yellow-s); border-bottom-color: var(--c-yellow); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 1.6em 0 .6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-top: 0; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing:.01em; }
h4 { font-size: 1.1rem; font-family: var(--ff-body); font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 1.1em; color: var(--c-text); }
strong { color: #fff; }
ul, ol { padding-left: 1.4em; margin: 0 0 1.2em; }
li { margin-bottom: .35em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- HEADER ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,11,16,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .2s, border-color .2s;
}
header.scrolled {
  box-shadow: var(--shadow-soft);
  border-bottom-color: rgba(255,212,0,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 0;
  flex-shrink: 0;
}
.brand img {
  height: 36px;
  width: auto;
  display: block;
}
.brand:hover { border: 0; }

nav.primary { display: flex; align-items: center; gap: 1px; }
nav.primary a {
  color: var(--c-text);
  font-size: .88rem;
  font-weight: 600;
  padding: 8px 9px;
  border-radius: 6px;
  border: 0;
  position: relative;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
nav.primary a:hover { color: var(--c-yellow); background: rgba(255,212,0,.06); }
nav.primary a.active {
  color: var(--c-yellow);
}
nav.primary a.active::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 9px; right: 9px;
  height: 2px;
  background: var(--c-yellow);
  border-radius: 2px;
}

.header-cta {
  display: inline-block;
  background: var(--c-yellow);
  color: #1b1100;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: 999px;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .82rem;
  border: 0;
  box-shadow: 0 4px 14px rgba(255,212,0,.28);
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--c-yellow-s);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,212,0,.4);
  border: 0;
  color: #1b1100;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, top .2s, opacity .15s;
}
.menu-toggle span      { top: 19px; }
.menu-toggle span::before { top: -7px; left: 0; }
.menu-toggle span::after  { top:  7px; left: 0; }

@media (max-width: 1180px) {
  nav.primary {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-bg-2);
    padding: 14px 22px 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-130%);
    transition: transform .25s ease;
    box-shadow: 0 16px 30px rgba(0,0,0,.5);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  nav.primary.open { transform: translateY(0); }
  nav.primary a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    border-radius: 0;
    font-size: .95rem;
  }
  nav.primary a.active::after { display: none; }
  .menu-toggle { display: block; }
  .header-cta { padding: 9px 14px; font-size: .75rem; }
  .brand img { height: 30px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 70px 0 50px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 380px at 75% 30%, rgba(255,212,0,.16), transparent 60%),
    radial-gradient(500px 320px at 15% 80%, rgba(255,212,0,.06), transparent 60%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-yellow);
  background: rgba(255,212,0,.1);
  border: 1px solid rgba(255,212,0,.3);
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em { color: var(--c-yellow); font-style: normal; }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--c-text-mute);
  max-width: 560px;
  margin-bottom: 28px;
}

.verdict-card {
  background: linear-gradient(150deg, rgba(255,212,0,.08), rgba(20,22,32,.95));
  border: 1px solid rgba(255,212,0,.35);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.verdict-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 4px;
  background: linear-gradient(90deg, var(--c-yellow), var(--c-yellow-s));
  border-radius: 16px 16px 0 0;
}
.verdict-card .rating-row {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px;
}
.verdict-card .score {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--c-yellow);
  line-height: 1;
}
.verdict-card .score small {
  font-size: 1rem; color: var(--c-text-mute);
}
.verdict-card .stars { color: var(--c-yellow); letter-spacing: 2px; font-size:1.05rem; }
.verdict-card h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin: 18px 0 8px;
}
.verdict-card .pros, .verdict-card .cons {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  font-size: .94rem;
}
.verdict-card .pros li::before { content: "✓ "; color: var(--c-success); font-weight: 700; }
.verdict-card .cons li::before { content: "✕ "; color: var(--c-danger); font-weight: 700; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .92rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-yellow) 0%, var(--c-yellow-d) 100%);
  color: #1c1100;
  box-shadow: 0 8px 22px rgba(255,212,0,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,212,0,.45);
  background: var(--c-yellow-s);
  color: #1c1100;
  border: 0;
}
.btn-block { display: block; width: 100%; margin: 14px 0 4px; }
.btn-secondary {
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.05);
  color: var(--c-yellow);
  border-color: var(--c-yellow);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 40px 0 36px; }
}

/* ---------- ARTICLE BODY ---------- */
.article {
  padding: 24px 0 60px;
}
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 50px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-body p { color: var(--c-text); }
.article-body h2 { color: #fff; padding-top: 8px; }
.article-body h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--c-yellow);
  margin-top: 8px;
  border-radius: 2px;
}
.article-body h3 { color: #fff; margin-top: 1.8em; }
.article-body ul li::marker { color: var(--c-yellow); }

aside.toc {
  position: sticky;
  top: 90px;
  background: var(--c-card);
  border: 1px solid var(--c-card-bd);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: .92rem;
}
aside.toc h4 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--c-text-mute);
}
aside.toc ul { list-style: none; padding: 0; margin: 0; }
aside.toc li { margin: 0; }
aside.toc a {
  display: block;
  padding: 6px 0;
  color: var(--c-text-mute);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  border-radius: 0;
}
aside.toc a:hover { color: var(--c-yellow); border: 0; border-bottom: 1px solid rgba(255,255,255,.05); }
aside.toc li:last-child a { border-bottom: 0; }

@media (max-width: 980px) {
  .article-grid { grid-template-columns: 1fr; gap: 28px; }
  aside.toc { position: static; }
}

/* ---------- FIGURES / IMAGES ---------- */
/* All screenshots are 1376x689 (2:1) — uniform, full-width within prose column */
figure {
  margin: 32px 0;
  text-align: center;
}
figure img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.04);
  display: block;
  background: var(--c-card);
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
figcaption {
  margin-top: 12px;
  font-size: .88rem;
  color: var(--c-text-mute);
  font-style: italic;
}

/* ---------- TABLES ---------- */
.table-wrap { overflow-x: auto; margin: 22px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
  background: var(--c-card);
  border: 1px solid var(--c-card-bd);
  border-radius: var(--radius);
  overflow: hidden;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--c-card-bd);
}
th {
  background: rgba(255,212,0,.12);
  color: var(--c-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .82rem;
}
tr:last-child td { border-bottom: 0; }
tr:nth-child(even) td { background: rgba(255,255,255,.015); }

/* ---------- CALLOUT BOXES ---------- */
.callout {
  background: linear-gradient(135deg, rgba(255,212,0,.06), rgba(255,212,0,.02));
  border-left: 4px solid var(--c-yellow);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 26px 0;
  position: relative;
}
.callout.warn { border-left-color: var(--c-warning); background: rgba(243,156,18,.06); }
.callout.tip  { border-left-color: var(--c-yellow); background: rgba(255,212,0,.06); }
.callout h4 {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  color: var(--c-yellow);
}
.callout.warn h4 { color: var(--c-warning); }
.callout p:last-child { margin-bottom: 0; }

/* Promo code box */
.promo-box {
  background:
    repeating-linear-gradient(135deg, rgba(255,212,0,.04) 0 14px, transparent 14px 28px),
    var(--c-card);
  border: 2px dashed var(--c-yellow);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 28px 0;
  text-align: center;
}
.promo-box .label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-text-mute);
  margin-bottom: 10px;
}
.promo-code-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.promo-code-value {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--c-yellow);
  background: var(--c-bg);
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid rgba(255,212,0,.4);
}
.copy-btn {
  background: var(--c-yellow);
  color: #1b1100;
  border: 0;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  font-family: inherit;
  font-size: .85rem;
  text-transform: uppercase;
  transition: background .15s;
}
.copy-btn.copied { background: var(--c-success); color: #fff; }
.copy-btn:hover { background: var(--c-yellow-s); }

/* ---------- BONUS CARD GRID ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 26px 0;
}
.bonus-card {
  background: var(--c-card);
  border: 1px solid var(--c-card-bd);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.bonus-card:hover { transform: translateY(-3px); border-color: var(--c-yellow); }
.bonus-card .ribbon {
  position: absolute;
  top: 14px; right: -28px;
  background: var(--c-yellow);
  color: #1b1100;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 32px;
  transform: rotate(35deg);
}
.bonus-card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: #fff;
}
.bonus-card .amount {
  font-size: 1rem;
  color: var(--c-yellow);
  font-weight: 700;
  margin-bottom: 12px;
}
.bonus-card ul { font-size: .9rem; color: var(--c-text-mute); }

/* ---------- QUICK FACTS ---------- */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.fact {
  background: var(--c-card);
  border: 1px solid var(--c-card-bd);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.fact .label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-text-mute);
  margin-bottom: 6px;
}
.fact .value { font-weight: 700; color: #fff; font-size: 1rem; }

/* ---------- STEPS ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  counter-reset: step;
}
.steps > li {
  counter-increment: step;
  background: var(--c-card);
  border: 1px solid var(--c-card-bd);
  border-radius: var(--radius);
  padding: 18px 20px 18px 64px;
  margin-bottom: 14px;
  position: relative;
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  top: 18px; left: 18px;
  width: 32px; height: 32px;
  background: var(--c-yellow);
  color: #1b1100;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(255,212,0,.35);
}
.steps > li strong { display:block; margin-bottom: 4px; color:#fff; font-size:1.05rem; }

/* ---------- FAQ ---------- */
.faq { margin: 30px 0; }
details.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-card-bd);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s;
}
details.faq-item[open] { border-color: var(--c-yellow); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-size: 1.02rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--c-yellow);
  line-height: 1;
  transition: transform .2s;
}
details.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
details.faq-item .answer { padding: 0 22px 18px; color: var(--c-text-mute); }
details.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- BREADCRUMBS ---------- */
.crumbs {
  font-size: .85rem;
  color: var(--c-text-dim);
  padding: 14px 0 0;
}
.crumbs a { color: var(--c-text-mute); border: 0; }
.crumbs a:hover { color: var(--c-yellow); }
.crumbs span.sep { margin: 0 6px; opacity: .6; }
.crumbs .current { color: var(--c-text); }

/* ---------- CARD GRID FOR HOME ---------- */
.section-head {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin: 50px 0 20px; gap: 20px; flex-wrap: wrap;
}
.section-head h2 { margin: 0; }
.section-head h2::after { display:none; }
.section-head .kicker {
  font-family: var(--ff-display); color: var(--c-yellow); font-size: .9rem;
  letter-spacing: .15em; text-transform: uppercase; display: block; margin-bottom: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 24px 0 40px;
}
.card {
  background: var(--c-card);
  border: 1px solid var(--c-card-bd);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-yellow);
  box-shadow: 0 14px 30px rgba(255,212,0,.12);
}
.card .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,212,0,.12);
  border-radius: 8px;
  color: var(--c-yellow);
  margin-bottom: 14px;
}
.card h3 { font-family: var(--ff-body); font-weight: 800; font-size:1.15rem; letter-spacing: 0; margin: 0 0 8px; color: #fff; }
.card p { color: var(--c-text-mute); font-size: .94rem; margin: 0 0 14px; }
.card a.read-more {
  display: inline-block;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-yellow);
  border: 0;
}
.card a.read-more::after { content: " →"; transition: transform .15s; display: inline-block; }
.card:hover a.read-more::after { transform: translateX(4px); }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background:
    radial-gradient(700px 220px at 80% 50%, rgba(255,212,0,.15), transparent 60%),
    linear-gradient(135deg, #1c1f2b, #0f1119);
  border: 1px solid rgba(255,212,0,.25);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-strip h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: .02em;
}
.cta-strip p { color: var(--c-text-mute); margin: 0; font-size: 1.02rem; }
.cta-strip .btn-primary { white-space: nowrap; }
@media (max-width: 720px) {
  .cta-strip { grid-template-columns: 1fr; padding: 26px; text-align: center; }
}

/* ---------- TL;DR / KEY TAKEAWAYS ---------- */
.tldr {
  background: linear-gradient(135deg, rgba(255,212,0,.08), rgba(255,212,0,.02));
  border: 1px solid rgba(255,212,0,.25);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 24px 0 28px;
}
.tldr h3 {
  margin: 0 0 8px;
  font-family: var(--ff-body); font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--c-yellow);
}
.tldr p:last-child { margin-bottom: 0; }
.tldr ul { margin-bottom: 0; }

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: #07080c;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 50px 0 24px;
  margin-top: 60px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  font-family: var(--ff-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  color: var(--c-yellow);
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--c-text-mute); border: 0; font-weight: 500; }
.footer-grid a:hover { color: var(--c-yellow); }

.footer-brand img { height: 32px; margin-bottom: 12px; }
.footer-brand p { color: var(--c-text-mute); font-size: .9rem; max-width: 320px; }

.footer-badges {
  display: flex; gap: 12px; align-items: center; margin-top: 16px;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--c-text-mute);
  letter-spacing: .05em;
}
.footer-badge.age { color: #1b1100; background: var(--c-yellow); border-color: var(--c-yellow); }

.disclaimer-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0 0;
  color: var(--c-text-dim);
  font-size: .82rem;
  line-height: 1.55;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.disclaimer-bar p { margin: 0; max-width: 720px; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 404 ---------- */
.error-page {
  text-align: center;
  padding: 90px 22px 60px;
}
.error-page .code {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 22vw, 12rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--c-yellow), var(--c-yellow-s));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}
.error-page h1 { margin-top: 0; }

/* ---------- HELPERS ---------- */
.text-center { text-align: center; }
.muted { color: var(--c-text-mute); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 28px; }
.mb-3 { margin-bottom: 28px; }
.spacer-lg { height: 40px; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p.lead, .hero .hero-eyebrow, .hero .btn {
  animation: fadeUp .6s ease forwards;
}
.hero p.lead   { animation-delay: .08s; }
.hero .btn     { animation-delay: .14s; }
.verdict-card  { animation: fadeUp .7s ease .1s both; }

/* Print-safe */
@media print {
  header, footer, aside.toc, .cta-strip, .header-cta { display: none; }
  body { background: #fff; color: #000; }
}
