:root {
  --bg: #10130f;
  --bg-soft: #171b14;
  --surface: #ffffff;
  --surface-2: #f3f6ef;
  --surface-dark: #20271d;
  --text: #182014;
  --text-on-dark: #f8fbf2;
  --muted: #667061;
  --line: #dfe7d6;
  --brand: #13a064;
  --brand-2: #f5c542;
  --danger: #c72323;
  --radius: 8px;
  --max: 1180px;
  --font: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(180deg, #f6f8f2 0, #edf4e8 360px, #f7f9f4 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: #087a49; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #111810;
  border-bottom: 3px solid var(--brand-2);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}
.nav { display: flex; align-items: center; gap: 1rem; min-height: 66px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
}
.brand__icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-2), #ffe89a);
  color: #17200f;
  font-weight: 900;
}
.nav-links { display: flex; gap: .35rem; list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav-links a {
  color: #dce8d6;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 700;
  padding: .55rem .72rem;
  border-radius: 6px;
}
.nav-links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .2rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.lang-switcher a {
  color: #dce8d6;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 900;
  padding: .28rem .45rem;
  border-radius: 999px;
  line-height: 1;
}
.lang-switcher a.is-active {
  background: var(--brand-2);
  color: #17200f;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  background: var(--danger);
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
  border-radius: 999px;
  padding: .22rem .55rem;
  line-height: 1;
}
.age-badge--lg { font-size: 1rem; padding: .38rem .75rem; margin-bottom: .6rem; }

.hero-shell {
  background:
    linear-gradient(90deg, rgba(10,15,9,.98), rgba(10,15,9,.86) 48%, rgba(10,15,9,.52)),
    #10130f;
  color: var(--text-on-dark);
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 197, 66, .34);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 2rem;
  align-items: center;
  min-height: 520px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #0b5d38;
  background: #e9f8ee;
  border: 1px solid #c9ebd5;
  border-radius: 999px;
  padding: .25rem .62rem;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-shell .eyebrow { color: #1b1907; background: var(--brand-2); border: 0; }
.hero h1,
.hero-copy h1,
.page-title h1 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.05;
  margin: .8rem 0 1rem;
  letter-spacing: 0;
}
.lead { color: var(--muted); font-size: 1.08rem; max-width: 64ch; }
.hero-shell .lead { color: #d7e2d0; }
.hero__cta { display: flex; gap: .75rem; margin-top: 1.35rem; flex-wrap: wrap; }
.hero-media {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
  background: #0b100b;
}
.hero-media img { width: 100%; height: 390px; object-fit: cover; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .72rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: inset 0 -2px 0 rgba(0,0,0,.22), 0 10px 18px rgba(19, 160, 100, .18); }
.btn--primary:hover { background: #0f8a57; box-shadow: inset 0 -2px 0 rgba(0,0,0,.22), 0 12px 22px rgba(19, 160, 100, .22); }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: #b9c9ad; background: #f8fbf5; }

.risk-warning {
  background: #fff8dd;
  border: 1px solid #e0bb35;
  border-left: 5px solid #d9a700;
  border-radius: var(--radius);
  padding: .95rem 1rem;
  margin: 1.2rem 0;
  font-size: .94rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin: 1.2rem 0;
}
.stats-strip div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(37, 55, 30, .06);
}
.stats-strip strong { display: block; font-size: 1.65rem; color: #0a7a49; line-height: 1; }
.stats-strip span { color: var(--muted); font-size: .88rem; font-weight: 700; }

.ad-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 2rem;
  padding: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #1d2418, #0f6d45);
  border-radius: var(--radius);
  border-bottom: 4px solid var(--brand-2);
}
.ad-banner h2 { margin: .35rem 0 0; font-size: clamp(1.2rem, 2.4vw, 1.75rem); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1rem;
}
.section-head h2,
.check-panel h2,
.faq-section h2 { margin: .45rem 0 0; line-height: 1.15; }

.page-title { padding: 1.5rem 0 .3rem; }
.breadcrumb { color: var(--muted); font-size: .9rem; margin: 1.1rem 0 0; }
.breadcrumb a { text-decoration: none; }

.filters { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.25rem 0; }
.filter-btn {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  padding: .5rem .86rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.filter-btn.is-active { background: var(--brand); color: #fff; border-color: var(--brand); }

.comparison-matrix {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 1rem;
  align-items: start;
  margin: 1.25rem 0 1.5rem;
}
.comparison-matrix__intro {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 8px 22px rgba(37, 55, 30, .05);
}
.comparison-matrix__intro h2 {
  margin: .55rem 0 .45rem;
  line-height: 1.15;
}
.comparison-matrix__intro p {
  margin: 0;
  color: var(--muted);
}
.comparison-matrix__table {
  display: grid;
  gap: .45rem;
}
.comparison-matrix__row {
  display: grid;
  grid-template-columns: .8fr 1.1fr 1.1fr;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .82rem .9rem;
  box-shadow: 0 7px 18px rgba(37, 55, 30, .04);
}
.comparison-matrix__row span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.comparison-matrix__row--head {
  background: #20271d;
  color: #dce8d6;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-table-head {
  display: grid;
  grid-template-columns: 80px 1.25fr 1.4fr 160px;
  gap: .75rem;
  padding: .75rem 1rem;
  background: #20271d;
  color: #dce8d6;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.ranking-list { display: grid; gap: .85rem; margin: 1rem 0 2rem; }
.offer-grid__item[hidden] { display: none; }
.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(360px, 1.05fr) minmax(260px, .95fr) minmax(260px, .8fr);
  gap: .9rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(37, 55, 30, .07);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.offer-card:hover {
  transform: translateY(-2px);
  border-color: #c8d9bc;
  box-shadow: 0 16px 36px rgba(37, 55, 30, .11);
}
.offer-card--compact { grid-template-columns: 54px minmax(360px, 1.05fr) minmax(250px, .95fr) minmax(260px, .8fr); }
.offer-card__rank {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: #172015;
  color: var(--brand-2);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.2);
}
.offer-card__head { display: grid; grid-template-columns: 176px minmax(0, 1fr) auto; gap: 1.05rem; align-items: center; }
.site-shot {
  display: block;
  width: 176px;
  height: 88px;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.site-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}
.site-shot--logo {
  display: grid;
  place-items: center;
  background: transparent;
  padding: 0;
}
.site-shot--logo img {
  object-fit: contain;
}
.site-shot--logo span {
  display: none;
}
.site-shot--fallback img {
  display: none;
}
.site-shot--fallback span,
.site-shot--text {
  display: grid;
  place-items: center;
  color: #111810;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}
.site-shot--fallback span,
.site-shot--text span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
}
.offer-card__title { margin: 0; font-size: 1.08rem; line-height: 1.15; }
.offer-card__bonus { margin: .18rem 0 0; color: #0d7a49; font-weight: 900; }
.score {
  background: #fff6d0;
  border: 1px solid #efcf58;
  border-radius: 6px;
  padding: .25rem .45rem;
  font-weight: 900;
  min-width: 50px;
  text-align: center;
}
.offer-card__summary { color: var(--muted); margin: 0; font-size: .92rem; }
.offer-card__terms { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: .45rem; margin: 0; min-width: 0; }
.offer-card__terms div { background: var(--surface-2); border-radius: 6px; padding: .45rem .5rem; }
.offer-card__terms div:hover { background: #edf5e9; }
.offer-card__terms dt { color: var(--muted); font-size: .72rem; margin: 0 0 .12rem; font-weight: 800; overflow-wrap: anywhere; line-height: 1.15; }
.offer-card__terms dd { margin: 0; font-weight: 900; font-size: .88rem; overflow-wrap: anywhere; line-height: 1.25; }
.tag-list {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: .55rem 0 0;
  grid-column: 3;
}
.tag-list li {
  background: #edf8ef;
  color: #146444;
  border-radius: 999px;
  padding: .18rem .45rem;
  font-size: .72rem;
  font-weight: 800;
}
.offer-card__actions { display: grid; gap: .5rem; }
.offer-card__actions .btn { width: 100%; }
.offer-card__significant {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: .75rem;
  margin: -.25rem 0 0;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin: 2rem 0;
}
.brand-cloud a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  padding: .85rem .6rem;
  box-shadow: 0 8px 20px rgba(37, 55, 30, .05);
}
.brand-cloud a:hover { border-color: var(--brand); color: #087a49; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.25rem;
  align-items: start;
  margin: 2rem 0;
}
.prose {
  max-width: 76ch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.prose h2 { margin-top: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin: 1rem 0 1.25rem;
  padding: .8rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.related-links strong {
  color: var(--text);
  margin-right: .25rem;
}
.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .35rem .6rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #d4e2cb;
  color: #087a49;
  font-weight: 800;
  text-decoration: none;
}
.related-links a:hover { border-color: var(--brand); }
.check-panel {
  background: #20271d;
  color: #f7fbef;
  border-radius: var(--radius);
  padding: 1.15rem;
  border-bottom: 4px solid var(--brand-2);
}
.check-panel ul { padding-left: 1.1rem; margin-bottom: 0; }

.faq-section { margin: 2.5rem 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  margin-bottom: .7rem;
  box-shadow: 0 7px 18px rgba(37, 55, 30, .05);
}
.faq-item summary { cursor: pointer; font-weight: 900; }

.card-list { list-style: none; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
.card h2 { margin-top: 0; font-size: 1.1rem; }
.byline { color: var(--muted); font-size: .9rem; }

.site-footer {
  border-top: 3px solid var(--brand-2);
  background: #111810;
  color: #dfe8d9;
  margin-top: 3rem;
  padding: 2rem 0;
}
.site-footer a { color: #f5d264; }
.rg-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-size: .92rem;
}
.footer-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); padding: 1.5rem 0; }
.footer-grid h3 { font-size: .86rem; text-transform: uppercase; color: #9fb395; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; font-size: .92rem; }
.footer-grid a { text-decoration: none; color: #f2f7ed; }
.footer-legal { color: #aebca8; font-size: .82rem; border-top: 1px solid rgba(255,255,255,.13); padding-top: 1rem; }

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.84);
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.age-gate__panel {
  background: #fff;
  border-radius: 8px;
  max-width: 440px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.age-gate__actions { display: flex; gap: .75rem; justify-content: center; margin: 1.25rem 0 .5rem; flex-wrap: wrap; }
.age-gate__help { color: var(--muted); font-size: .85rem; }

@media (max-width: 920px) {
  .nav { flex-wrap: wrap; padding: .7rem 1rem; }
  .nav-links { width: 100%; overflow-x: auto; margin-left: 0; padding-bottom: .15rem; }
  .lang-switcher { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-media img { height: 280px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .offer-table-head { display: none; }
  .offer-card,
  .offer-card--compact { grid-template-columns: 52px 1fr; align-items: start; }
  .offer-card__terms,
  .tag-list,
  .offer-card__actions,
  .offer-card__significant,
  .offer-card__summary { grid-column: 2; }
  .offer-card__terms { grid-template-columns: repeat(2, minmax(118px, 1fr)); }
  .offer-card__head { grid-column: 2; }
  .content-grid { grid-template-columns: 1fr; }
  .comparison-matrix { grid-template-columns: 1fr; }
  .brand-cloud { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .offer-card,
  .offer-card--compact {
    grid-template-columns: 52px minmax(320px, 1fr) minmax(230px, .9fr) minmax(220px, .8fr);
  }
  .offer-card__head {
    grid-template-columns: 150px minmax(0, 1fr) auto;
  }
  .site-shot { width: 150px; height: 76px; }
  .offer-card__terms {
    grid-template-columns: repeat(2, minmax(96px, 1fr));
  }
}

@media (max-width: 560px) {
  .brand span:last-child { max-width: 170px; }
  .hero-grid { padding-top: 1.25rem; }
  .hero-copy h1,
  .page-title h1 { font-size: 2rem; }
  .stats-strip { grid-template-columns: 1fr; }
  .ad-banner,
  .section-head { align-items: stretch; flex-direction: column; }
  .offer-card__terms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-card__terms div { min-width: 0; }
  .offer-card__head { grid-template-columns: 1fr auto; }
  .site-shot { grid-column: 1 / -1; width: 100%; height: 92px; }
  .comparison-matrix__row {
    grid-template-columns: 1fr;
    gap: .35rem;
  }
  .comparison-matrix__row--head { display: none; }
  .brand-cloud { grid-template-columns: 1fr; }
}
