/* ============================================================
   FlyingWager — flyingwager.com
   Shared stylesheet
   Mobile-first. Pure CSS. No frameworks.
   ============================================================ */

/* -------- Tokens -------- */
:root {
  --green: #63A832;
  --green-hover: #74BC3D;
  --green-dark: #0D1B0E;
  --black: #0A0A0A;
  --gray-900: #1A1A1A;
  --gray-700: #4A4F4B;
  --gray-500: #797F7B;
  --gray-300: #D6DAD7;
  --gray-200: #E8ECEA;
  --gray-100: #F1F3F1;
  --gray-50: #F7F8FA;
  --white: #FFFFFF;

  --status-loss: #D14B3F;
  --status-info: #2E7BD9;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(13,27,14,.06), 0 1px 2px rgba(13,27,14,.04);
  --shadow-md: 0 4px 12px rgba(13,27,14,.08), 0 2px 4px rgba(13,27,14,.04);
  --shadow-lg: 0 12px 32px rgba(13,27,14,.12), 0 4px 8px rgba(13,27,14,.06);
  --shadow-green: 0 6px 18px rgba(99,168,50,.32);

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --dur: 200ms;

  --max: 1200px;
  --gutter: 20px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-hover); text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding-left: 1.2em; }
ul.clean, ol.clean { list-style: none; padding: 0; margin: 0; }

/* -------- Type -------- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; margin: 0; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(34px, 6vw, 52px); }
h2 { font-size: clamp(28px, 4.5vw, 40px); }
h3 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 500; letter-spacing: 0; }
p  { margin: 0; line-height: 1.65; text-wrap: pretty; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green);
}
.lede { font-size: 18px; color: var(--gray-700); line-height: 1.6; }

/* -------- Layout -------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 64px 0; }
.section--tight { padding: 48px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--green { background: var(--green-dark); color: var(--white); }
.section--gray { background: var(--gray-50); }
.section h2 { margin-bottom: 12px; }
.section .lede { margin-bottom: 32px; max-width: 640px; }

@media (min-width: 768px) { .section { padding: 88px 0; } }

/* -------- Header -------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0; z-index: 50;
}
.site-header .brand__mark { color: var(--black); }
.site-header .brand__mark .accent { color: var(--green); }
.site-header .brand__tag { color: var(--gray-500); }
.site-header .nav__link { color: var(--black); }
.site-header .nav__link:hover { color: var(--green); }
.site-header .menu-btn { color: var(--black); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-search {
  background: transparent; border: 0; padding: 10px;
  width: 44px; height: 44px; border-radius: 50%;
  color: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.header-search:hover { background: var(--gray-100); }
.header-country {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200); background: var(--white);
  font-family: inherit; font-weight: 600; font-size: 14px; color: var(--black);
  cursor: pointer; min-height: 40px;
}
.header-country:hover { border-color: var(--green); }
.header-country__flag {
  width: 22px; height: 16px; border-radius: 2px; overflow: hidden;
  display: inline-flex; flex-shrink: 0;
  background: linear-gradient(to right, #008751 33%, #fff 33%, #fff 66%, #008751 66%);
}
.brand__logo { width: 40px; height: 40px; flex-shrink: 0; }
/* Dark variant for non-home pages */
.site-header--dark { background: var(--black); border-bottom: 2px solid var(--green); }
.site-header--dark .brand__mark { color: var(--white); }
.site-header--dark .nav__link { color: var(--white); }
.site-header--dark .nav__link:hover { color: var(--green-hover); }
.site-header--dark .menu-btn { color: var(--white); }
.site-header--dark .header-search { color: var(--white); }
.site-header--dark .header-search:hover { background: rgba(255,255,255,.08); }
.site-header--dark .header-country { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: var(--white); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px;
  color: var(--white); letter-spacing: -0.02em; line-height: 1;
}
.brand__mark .accent { color: var(--green); }
.brand__tag { display: block; font-size: 11px; color: var(--gray-500); margin-top: 2px; letter-spacing: .04em; }

.nav { display: none; }
.nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  color: var(--white); font-weight: 500; font-size: 15px;
  padding: 8px 0; position: relative;
}
.nav__link:hover { color: var(--green-hover); text-decoration: none; }
.nav__link[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--green);
}

.menu-btn {
  background: transparent; border: 0; padding: 10px;
  color: var(--white); display: inline-flex; align-items: center; gap: 8px;
  border-radius: 8px;
  min-width: 44px; min-height: 44px;
  justify-content: center;
}
.menu-btn:hover { background: rgba(255,255,255,.06); }
.menu-btn svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .nav { display: block; }
  .menu-btn { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.08);
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.mobile-nav.open { max-height: 500px; }
.mobile-nav__list { list-style: none; margin: 0; padding: 8px 0; }
.mobile-nav__link {
  display: block; color: var(--white); font-weight: 500;
  padding: 14px var(--gutter); border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav__link:hover { background: rgba(255,255,255,.04); color: var(--green-hover); text-decoration: none; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 14px 22px;
  min-height: 48px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-green); }
.btn--primary:hover { background: var(--green-hover); color: var(--white); }

.btn--outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--black); }

.btn--outline { background: transparent; color: var(--green-dark); border-color: var(--gray-300); }
.btn--outline:hover { border-color: var(--green); color: var(--green); background: var(--white); }

.btn--ghost { background: transparent; color: var(--green-dark); }
.btn--ghost:hover { color: var(--green); }

.btn--block { width: 100%; }
.btn--lg { padding: 16px 28px; font-size: 16px; min-height: 52px; }
.btn--sm { padding: 10px 16px; min-height: 40px; font-size: 14px; }

/* -------- Hero (light) -------- */
.hero { background: var(--white); padding: 48px 0 56px; position: relative; }
.hero__grid { display: grid; gap: 32px; align-items: center; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,168,50,.10); color: var(--green-dark);
  border: 1px solid rgba(99,168,50,.25);
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
}
.hero__pill svg { color: var(--green); }
.hero h1 { color: var(--black); margin-top: 20px; margin-bottom: 18px; line-height: 1.05; }
.hero h1 .accent { color: var(--green); display: block; }
.hero__sub { font-size: 17px; color: var(--gray-700); max-width: 520px; margin-bottom: 28px; line-height: 1.6; }
.hero__stats { display: grid; grid-template-columns: repeat(2, auto); gap: 18px 32px; margin-bottom: 28px; }
@media (min-width: 540px) { .hero__stats { grid-template-columns: repeat(4, auto); } }
.hero__stat { display: flex; align-items: center; gap: 10px; }
.hero__stat-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(99,168,50,.10); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero__stat-num { font-weight: 800; font-size: 16px; line-height: 1.1; letter-spacing: -0.01em; }
.hero__stat-lbl { font-size: 12px; color: var(--gray-500); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--gray-200); flex-wrap: wrap; }
.hero__author-photo {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-dark); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.hero__author-text { font-size: 13px; color: var(--gray-700); line-height: 1.4; }
.hero__author-text strong { color: var(--black); font-weight: 700; }
.hero__author-meta { color: var(--gray-500); font-size: 12px; }
.hero__author-link { margin-left: auto; font-weight: 600; font-size: 13px; }

.hero__art {
  display: flex; justify-content: center; align-items: center;
  position: relative; min-height: 320px;
}
.hero__art::before {
  content: ''; position: absolute; width: 90%; max-width: 460px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,168,50,.22), rgba(99,168,50,.06) 60%, transparent 75%);
  z-index: 0;
}
.hero__art img { position: relative; z-index: 1; max-width: 420px; width: 100%; }

.hero__panel {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-md);
  display: none;
}
.hero__panel-title {
  font-size: 14px; font-weight: 700; color: var(--black);
  margin-bottom: 14px;
}
.hero__panel ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.hero__panel li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.4; color: var(--gray-700); }
.hero__panel li svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.hero__panel-divider { border: 0; border-top: 1px solid var(--gray-200); margin: 18px 0; }
.hero__panel-sub { font-size: 12px; font-weight: 700; color: var(--black); margin-bottom: 10px; letter-spacing: 0.02em; }
.hero__panel-pays { display: flex; gap: 8px; flex-wrap: wrap; }
.hero__panel-pay {
  font-size: 11px; font-weight: 700; padding: 6px 10px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-pill);
  color: var(--gray-700); background: var(--gray-50);
}

@media (min-width: 900px) {
  .hero { padding: 64px 0 72px; }
  .hero__grid { grid-template-columns: 1.1fr 1fr 0.7fr; gap: 32px; }
  .hero__panel { display: block; }
  .hero__art { min-height: 480px; }
}
@media (max-width: 899px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
}

/* -------- Filter bar -------- */
.filterbar {
  background: var(--green-dark);
  padding: 20px 0;
}
.filterbar__inner {
  display: grid; gap: 14px 20px;
  align-items: end;
  grid-template-columns: 1fr;
}
.filterbar__title {
  color: var(--white); font-weight: 700; font-size: 16px;
  line-height: 1.3;
}
.filterbar__field { display: flex; flex-direction: column; gap: 6px; }
.filterbar__lbl {
  display: flex; align-items: center; gap: 6px;
  color: var(--white); font-size: 12px; font-weight: 600;
}
.filterbar__lbl svg { color: var(--green); }
.filterbar__select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white); padding: 10px 14px;
  border-radius: var(--radius); font-family: inherit;
  font-size: 14px; min-height: 42px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='1 1 6 6 11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.filterbar__btn {
  background: var(--green); color: var(--white);
  border: 0; padding: 12px 20px; border-radius: var(--radius);
  font-family: inherit; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 44px;
  transition: background-color var(--dur) var(--ease);
}
.filterbar__btn:hover { background: var(--green-hover); }
@media (min-width: 768px) {
  .filterbar__inner { grid-template-columns: 1.2fr repeat(4, 1fr) auto; }
}

/* -------- Ranked cards (1xBet/MelBet/etc style) -------- */
.ranked {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .ranked { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ranked { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .ranked { grid-template-columns: repeat(5, 1fr); } }

.ranked-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ranked-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ranked-card__rank {
  background: var(--black); color: var(--white);
  width: 32px; height: 32px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  margin: 14px 0 0 14px;
}
.ranked-card__brand {
  padding: 12px 18px 8px; min-height: 60px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; letter-spacing: -0.01em;
}
.ranked-card__rating {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 4px 18px 14px; font-size: 13px; font-weight: 700; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.ranked-card__stars { color: #F5A623; letter-spacing: 1px; }
.ranked-card__features {
  padding: 14px 18px; list-style: none; margin: 0; flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.ranked-card__features li {
  font-size: 13px; color: var(--gray-700);
  padding-left: 18px; position: relative; line-height: 1.4;
}
.ranked-card__features li::before {
  content: '›'; position: absolute; left: 0; color: var(--green);
  font-weight: 800;
}
.ranked-card__bonus {
  padding: 10px 18px 14px;
  border-top: 1px dashed var(--gray-200);
  margin-top: 6px;
}
.ranked-card__bonus-lbl { font-size: 11px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.ranked-card__bonus-val { font-size: 15px; font-weight: 700; color: var(--black); margin-top: 2px; }
.ranked-card__actions { padding: 0 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.ranked-card__visit {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  padding: 8px;
}
.ranked-card__visit:hover { color: var(--green); text-decoration: none; }

/* -------- Latest guides (image cards) -------- */
.guides-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .guides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .guides-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .guides-grid { grid-template-columns: repeat(5, 1fr); } }

.guide-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-card__cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a1d 60%, #0a1a0c 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.guide-card__cover::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(99,168,50,.35), transparent 60%);
}
.guide-card__cover-mark {
  position: relative; z-index: 1; font-weight: 800; font-size: 32px;
  color: rgba(99,168,50,0.7); letter-spacing: -0.02em;
}
.guide-card__cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(0,0,0,0.7); color: var(--white);
  padding: 5px 10px; border-radius: 4px;
}
.guide-card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.guide-card__title { font-size: 16px; font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; }
.guide-card__title a { color: var(--black); }
.guide-card__title a:hover { color: var(--green); text-decoration: none; }
.guide-card__excerpt { font-size: 13px; color: var(--gray-700); line-height: 1.5; flex: 1; }
.guide-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--gray-500);
  border-top: 1px solid var(--gray-100); padding-top: 10px; margin-top: 4px;
}

/* -------- Stats strip -------- */
.stats-strip {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(5, 1fr); padding: 32px; } }
.stats-strip__item { display: flex; align-items: center; gap: 14px; }
.stats-strip__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(99,168,50,.10); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stats-strip__num { font-weight: 800; font-size: 22px; line-height: 1; letter-spacing: -0.02em; }
.stats-strip__lbl { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* -------- Footer (modernized) -------- */
.site-footer-v2 {
  background: var(--green-dark); color: var(--white);
  padding: 56px 0 32px;
}
.site-footer-v2 .wrap {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer-v2 .wrap {
    grid-template-columns: 1.4fr repeat(3, 1fr) 1.4fr;
  }
}
.site-footer-v2 .brand__mark { font-size: 22px; }
.site-footer-v2 p { color: #C8CECA; font-size: 14px; margin-top: 12px; }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--white);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #C8CECA; font-size: 14px; }
.footer-col a:hover { color: var(--green-hover); text-decoration: none; }
.footer-newsletter form { display: flex; gap: 8px; margin-top: 12px; }
.footer-newsletter input {
  flex: 1; padding: 10px 12px; min-height: 42px;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: var(--white);
  font-family: inherit; font-size: 14px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter input:focus { outline: 0; border-color: var(--green); }
.footer-newsletter button {
  background: var(--green); color: var(--white); border: 0;
  padding: 0 18px; border-radius: var(--radius); font-family: inherit;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: background-color var(--dur) var(--ease);
}
.footer-newsletter button:hover { background: var(--green-hover); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color var(--dur) var(--ease);
}
.footer-socials a:hover { background: var(--green); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; margin-top: 8px;
  font-size: 12px; color: #9DA5A0; line-height: 1.6;
  text-align: center;
}

/* -------- Trust bar -------- */
.trust {
  background: var(--gray-50);
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.trust__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.trust__icon {
  width: 44px; height: 44px; color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(99,168,50,.1); border-radius: 50%;
}
.trust__icon svg { width: 22px; height: 22px; }
.trust__label { font-weight: 600; font-size: 14px; color: var(--black); }

@media (min-width: 768px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .trust__item { flex-direction: row; text-align: left; }
  .trust__label { font-size: 15px; }
}

/* -------- Cards / Site cards -------- */
.cards-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.site-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.site-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); transform: translateY(-2px); }
.site-card__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; gap: 12px; }
.site-card__name { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.site-card__score {
  font-size: 32px; font-weight: 800; color: var(--green);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.site-card__score small { font-size: 14px; color: var(--gray-500); font-weight: 500; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(99,168,50,.12); color: var(--green-dark);
  border: 1px solid rgba(99,168,50,.3);
}
.site-card__desc { color: var(--gray-700); margin-bottom: 20px; flex: 1; line-height: 1.55; font-size: 15px; }
.site-card .btn { align-self: stretch; }

/* -------- Steps (How we review) -------- */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.step { display: flex; flex-direction: column; gap: 14px; }
.step__num {
  font-size: 14px; font-weight: 800; color: var(--white);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
}
.step__title { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.step__desc { color: var(--gray-700); line-height: 1.6; }

/* -------- Article cards -------- */
.article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card__cover {
  background: linear-gradient(135deg, var(--green-dark), var(--black));
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  color: rgba(99,168,50,.7); font-weight: 800; font-size: 28px;
  letter-spacing: -0.02em;
  position: relative;
}
.article-card__cover::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(99,168,50,.18), transparent 60%);
}
.article-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-card__cat {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--green); color: var(--white);
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.article-card__title { font-size: 18px; font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; }
.article-card__title a { color: var(--black); }
.article-card__title a:hover { color: var(--green); text-decoration: none; }
.article-card__meta { font-size: 13px; color: var(--gray-500); }
.article-card__excerpt { font-size: 14px; color: var(--gray-700); line-height: 1.55; flex: 1; }
.article-card__more { font-weight: 600; color: var(--green); font-size: 14px; margin-top: 4px; }

/* -------- FAQ -------- */
.faq { display: flex; flex-direction: column; gap: 10px; max-width: 820px; }
.faq__item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq__btn {
  width: 100%; background: transparent; border: 0;
  padding: 18px 20px; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; font-weight: 600; font-size: 16px; color: var(--black);
  min-height: 56px;
}
.faq__btn:hover { background: var(--gray-50); }
.faq__icon { color: var(--green); transition: transform var(--dur) var(--ease); flex-shrink: 0; }
.faq__btn[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__body {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.faq__body-inner { padding: 0 20px 20px; color: var(--gray-700); line-height: 1.65; }

/* -------- Banner (Responsible gambling) -------- */
.banner {
  background: var(--green-dark); color: var(--white);
  padding: 56px 0; text-align: center;
}
.banner h2 { color: var(--white); margin-bottom: 12px; max-width: 720px; margin-inline: auto; }
.banner p { color: #C8CECA; max-width: 560px; margin: 0 auto 24px; font-size: 16px; }

/* -------- Footer -------- */
.site-footer {
  background: var(--green-dark); color: var(--white);
  padding: 56px 0 32px;
}
.site-footer .wrap { display: flex; flex-direction: column; gap: 32px; }
.footer__brand .brand__mark { font-size: 24px; }
.footer__brand p { color: #C8CECA; margin-top: 8px; max-width: 320px; font-size: 14px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; padding: 0; margin: 0; }
.footer__links a { color: var(--white); font-weight: 500; font-size: 14px; }
.footer__links a:hover { color: var(--green-hover); }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; display: flex; flex-direction: column; gap: 12px;
  color: #9DA5A0; font-size: 13px; line-height: 1.6;
}
.footer__legal strong { color: var(--white); font-weight: 600; }
.footer__copy { font-size: 12px; color: #7F857F; }

@media (min-width: 768px) {
  .site-footer .wrap {
    display: grid; grid-template-columns: 2fr 1fr; gap: 32px 48px;
  }
  .footer__legal { grid-column: 1 / -1; }
}

/* -------- Breadcrumbs -------- */
.crumbs {
  font-size: 13px; color: var(--gray-500);
  padding: 16px 0; border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs li::after { content: '/'; color: var(--gray-300); margin-left: 6px; }
.crumbs li:last-child::after { content: ''; }
.crumbs a { color: var(--gray-700); }
.crumbs li:last-child { color: var(--black); font-weight: 500; }

/* -------- Page header -------- */
.page-head {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 0;
}
.page-head h1 { margin-bottom: 12px; }
.page-head .lede { max-width: 720px; }

/* -------- Prose -------- */
.prose { max-width: 720px; }
.prose h2 { margin-top: 48px; margin-bottom: 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 32px; margin-bottom: 12px; }
.prose p, .prose ul, .prose ol { margin-bottom: 16px; color: var(--gray-700); }
.prose ul li, .prose ol li { margin-bottom: 6px; line-height: 1.65; }
.prose strong { color: var(--black); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--gray-200); margin: 40px 0; }

/* -------- Review-specific -------- */
.review-head {
  display: grid; gap: 24px; align-items: start;
  padding: 40px 0; border-bottom: 1px solid var(--gray-200);
}
@media (min-width: 768px) {
  .review-head { grid-template-columns: 1.5fr 1fr; gap: 40px; }
}
.review-head__meta { font-size: 13px; color: var(--gray-500); margin-top: 12px; }
.score-box {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
}
.score-box__overall {
  display: flex; align-items: baseline; gap: 8px;
  border-bottom: 1px solid var(--gray-200); padding-bottom: 16px; margin-bottom: 16px;
}
.score-box__big {
  font-size: 56px; font-weight: 800; color: var(--green);
  line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.score-box__big small { font-size: 18px; color: var(--gray-500); font-weight: 600; }
.score-box__overall-label { font-size: 14px; font-weight: 600; color: var(--gray-700); margin-left: auto; }
.score-rows { display: flex; flex-direction: column; gap: 12px; }
.score-row { display: grid; grid-template-columns: 100px 1fr 36px; gap: 12px; align-items: center; font-size: 14px; }
.score-row__bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.score-row__fill { height: 100%; background: var(--green); border-radius: 3px; }
.score-row__num { font-weight: 700; text-align: right; color: var(--green-dark); font-variant-numeric: tabular-nums; }

.proscons { display: grid; gap: 20px; grid-template-columns: 1fr; margin: 32px 0; }
@media (min-width: 640px) { .proscons { grid-template-columns: 1fr 1fr; } }
.proscons__col {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
}
.proscons__col h3 { font-size: 16px; margin-bottom: 12px; }
.proscons ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.proscons li { padding-left: 28px; position: relative; font-size: 14px; line-height: 1.55; color: var(--gray-700); }
.proscons li::before {
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--white);
}
.proscons__pros li::before { content: '✓'; background: var(--green); }
.proscons__cons li::before { content: '✕'; background: var(--status-loss); }

.facts {
  width: 100%; border-collapse: collapse; margin: 32px 0;
  border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden;
}
.facts th, .facts td { padding: 12px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--gray-200); }
.facts tr:last-child th, .facts tr:last-child td { border-bottom: 0; }
.facts th { background: var(--gray-50); font-weight: 600; color: var(--gray-700); width: 180px; }
.facts td { color: var(--black); }

/* -------- Author box -------- */
.author {
  display: grid; gap: 16px; grid-template-columns: 64px 1fr; align-items: start;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
  margin-top: 40px;
}
.author__photo {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-dark);
  color: var(--green); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px;
}
.author__name { font-weight: 700; font-size: 15px; }
.author__role { font-size: 12px; color: var(--gray-500); margin-bottom: 6px; }
.author__bio { font-size: 14px; color: var(--gray-700); line-height: 1.55; }

/* -------- Forms (contact) -------- */
.form { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-weight: 600; font-size: 14px; }
.form__input, .form__textarea {
  font-family: inherit; font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  background: var(--white); color: var(--black);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  min-height: 48px;
}
.form__textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form__input:focus, .form__textarea:focus {
  outline: 0; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(99,168,50,.18);
}

/* -------- Utility -------- */
.center { text-align: center; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
