/* TopCasinoPicks Africa — light savanna theme with terracotta + gold accents */

:root {
  /* Light, near-white palette with Pan-African accents */
  --bg: #fdfcfa;             /* Near-white with a hint of warmth */
  --bg-2: #f5f3ee;           /* Light cream-grey band */
  --bg-3: #ebe7df;           /* Slightly deeper for inputs/hover */
  --surface: #ffffff;        /* Pure white cards */
  --border: #e5e1d6;         /* Neutral light border */
  --text: #1f1812;           /* Dark text */
  --text-dim: #5e554a;       /* Muted body text */
  --muted: #8e8478;          /* Captions */
  --gold: #f4c20d;           /* Bright Ethiopian flag yellow */
  --gold-2: #c99a00;
  --gold-soft: rgba(244, 194, 13, 0.18);
  --terracotta: #d62828;     /* Vibrant African red (primary CTA) */
  --terracotta-2: #a91d1d;
  --terracotta-soft: rgba(214, 40, 40, 0.10);
  --green: #1c8c3a;          /* Ethiopian flag green */
  --green-2: #11652a;        /* Deeper jungle green */
  --green-light: #34c759;    /* Bright fresh green */
  --green-soft: rgba(28, 140, 58, 0.14);
  --red: #c14a3e;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(80, 50, 20, 0.10);
  --shadow-sm: 0 4px 12px rgba(80, 50, 20, 0.08);
  --max: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--terracotta); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--terracotta-2); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Notice bar ---------- */
.notice-bar {
  background: var(--bg-2);
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}
.notice-bar strong { color: var(--terracotta); }

/* ---------- Header ---------- */
.site-header {
  background: #efe7d8;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px; max-width: var(--max); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 17px; color: var(--text);
  text-decoration: none;
}
.brand-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 50%, var(--green) 100%);
  border-radius: 6px;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 900; font-size: 14px;
  box-shadow: 0 2px 8px rgba(200, 100, 45, 0.20);
}
.brand span { color: var(--terracotta); }

/* Nav — reset all list styling so no bullets appear before menu items */
.nav {
  display: flex; gap: 4px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav ul, .nav-list, .nav .nav-list, .nav li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav li::before, .nav li::marker { content: none !important; display: none !important; }
.nav a {
  color: var(--text-dim); font-weight: 500; font-size: 14px;
  padding: 6px 12px; border-radius: 7px;
  text-decoration: none;
}
.nav a:hover, .nav a.active, .nav .current-menu-item > a {
  color: var(--text); background: var(--bg-2);
}
.menu-toggle {
  display: none; background: var(--bg-2);
  border: 1px solid var(--border); color: var(--text);
  font-size: 18px; width: 34px; height: 34px;
  border-radius: 7px; cursor: pointer;
  padding: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 8px;
  font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-2));
  color: #fff;
  box-shadow: 0 6px 16px rgba(200, 100, 45, 0.30);
}
.btn-primary:hover {
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(200, 100, 45, 0.40);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1f17;
}
.btn-gold:hover { color: #2a1f17; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; border-color: var(--border); color: var(--text);
}
.btn-ghost:hover { background: var(--bg-2); color: var(--text); }
.btn-sm { padding: 8px 12px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { padding: 36px 0 22px; text-align: center; position: relative; }
.hero h1 {
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 14px; font-weight: 800;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--terracotta), var(--gold), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  color: var(--text-dim); font-size: 17px;
  max-width: 880px; margin: 0 auto 20px;
  text-wrap: balance;
}
.hero .meta-row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  color: var(--text-dim); font-size: 14px;
}
.hero .meta-row span { display: inline-flex; align-items: center; gap: 6px; }
.hero .meta-row strong { color: var(--terracotta); }

/* ---------- Sections ---------- */
section { padding: 40px 0; }
.section-head { margin-bottom: 22px; }
.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px;
}
.section-head p { color: var(--text-dim); max-width: 720px; }
.eyebrow {
  display: inline-block; color: var(--terracotta);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 10px;
}

/* ---------- Casino comparison rows ---------- */
.top-list { display: flex; flex-direction: column; gap: 14px; }
.casino-row {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: 60px 1.2fr 1.4fr 1.2fr 1fr;
  gap: 20px; align-items: center;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  box-shadow: var(--shadow-sm);
}

/* ---------- USP badge (top-left "sticker" on desktop/tablet) ---------- */
.casino-usp {
  position: absolute;
  top: -13px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(52, 199, 89, 0.32), 0 2px 4px rgba(0,0,0,0.08);
  white-space: nowrap;
  text-transform: uppercase;
  transition: transform .2s ease;
}
.casino-row:hover .casino-usp { transform: scale(1.05); }
.casino-usp-emoji {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}
.casino-row:hover {
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.casino-row.featured {
  border-color: var(--terracotta);
  background: linear-gradient(180deg, var(--terracotta-soft), var(--surface));
}
.casino-rank {
  font-size: 26px; font-weight: 800;
  color: var(--terracotta); text-align: center;
}
.casino-rank small {
  display: block; font-size: 10px; color: var(--muted); letter-spacing: 0.1em;
}
.casino-brand { display: flex; align-items: center; gap: 14px; }
.casino-logo {
  width: 70px; height: 70px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-soft), var(--bg-2));
  display: grid; place-items: center;
  color: var(--terracotta);
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  text-align: center; padding: 4px; line-height: 1.1;
  overflow: hidden;
}
.casino-logo img { max-width: 90%; max-height: 90%; object-fit: contain; }
.casino-meta h3 { font-size: 17px; margin-bottom: 4px; color: var(--text); }
.casino-meta .rating {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold-2); font-weight: 700; font-size: 14px;
}
.casino-meta .rating .out-of {
  color: var(--text-dim); font-weight: 400; font-size: 12px;
}
.casino-bonus { font-size: 15px; }
.casino-bonus strong {
  display: block; font-size: 18px; color: var(--text); margin-bottom: 4px;
}
.casino-bonus small { color: var(--text-dim); font-size: 12px; }
.casino-features {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px; color: var(--text-dim);
}
.casino-features li {
  list-style: none; display: flex; align-items: center; gap: 6px;
}
.casino-features li::before {
  content: "✓"; color: var(--green); font-weight: 800;
}
.casino-cta { display: flex; flex-direction: column; gap: 8px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.card h3 {
  font-size: 18px; margin-bottom: 8px; color: var(--text);
  position: relative; padding-left: 0;
}
.card p { color: var(--text-dim); font-size: 14px; }
.card::before {
  content: ""; display: block;
  width: 32px; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--green));
  border-radius: 2px; margin-bottom: 14px;
}

/* ---------- Blog post cards ---------- */
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta);
  box-shadow: var(--shadow);
}
.post-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--gold-soft), var(--terracotta-soft));
  position: relative;
  display: grid; place-items: center;
  color: var(--terracotta); font-size: 38px;
}
.post-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212, 164, 55, 0.20), transparent 60%);
}
.post-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.post-body .tag {
  display: inline-block;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--terracotta); background: var(--terracotta-soft);
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 10px; width: fit-content;
}
.post-body h3 { font-size: 17px; line-height: 1.3; margin-bottom: 8px; }
.post-body h3 a { color: var(--text); }
.post-body h3 a:hover { color: var(--terracotta); }
.post-body p { color: var(--text-dim); font-size: 14px; flex: 1; margin-bottom: 14px; }
.post-meta { display: flex; gap: 12px; color: var(--muted); font-size: 12px; }

/* ---------- Review page ---------- */
.review-hero {
  background: linear-gradient(135deg, var(--terracotta-soft), transparent 60%), var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 36px;
}
.review-hero-grid {
  display: grid; grid-template-columns: 130px 1fr auto;
  gap: 28px; align-items: center;
}
.review-hero .casino-logo { width: 130px; height: 130px; font-size: 22px; }
.review-hero h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.review-hero .breadcrumbs { font-size: 13px; color: var(--text-dim); margin-bottom: 14px; }
.review-hero .rating-big {
  display: inline-flex; gap: 10px; align-items: center;
  background: var(--gold-soft); color: var(--gold-2);
  padding: 8px 14px; border-radius: 10px; font-weight: 700;
}
.review-hero .rating-big .score { font-size: 22px; }
.review-hero-cta { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.review-body {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 40px; padding-top: 48px;
}
.review-main h2 { font-size: 24px; margin: 28px 0 12px; letter-spacing: -0.01em; }
.review-main h2:first-child { margin-top: 0; }
.review-main p { color: var(--text-dim); margin-bottom: 14px; }
.review-main ul { color: var(--text-dim); padding-left: 22px; margin-bottom: 14px; }
.review-main ul li { margin-bottom: 6px; }

.proscons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin: 20px 0 8px;
}
.proscons > div {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
}
.proscons h3 { font-size: 16px; margin-bottom: 10px; }
.proscons .pros h3 { color: var(--green); }
.proscons .cons h3 { color: var(--red); }
.proscons ul { padding: 0; list-style: none; margin: 0; }
.proscons li {
  position: relative; padding-left: 22px; margin-bottom: 8px;
  color: var(--text-dim); font-size: 14px;
}
.proscons .pros li::before {
  content: "+"; position: absolute; left: 0;
  color: var(--green); font-weight: 800;
}
.proscons .cons li::before {
  content: "−"; position: absolute; left: 0;
  color: var(--red); font-weight: 800;
}

.fact-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 18px;
}
.fact-table th, .fact-table td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.fact-table th { background: var(--bg-2); color: var(--text-dim); font-weight: 600; width: 40%; }
.fact-table tr:last-child th, .fact-table tr:last-child td { border-bottom: none; }
.fact-table td { color: var(--text); }

.review-aside {
  position: sticky; top: 80px; align-self: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.review-aside h4 { font-size: 16px; margin-bottom: 12px; }
.aside-rating {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-dim);
}
.aside-rating:last-of-type { border-bottom: none; }
.aside-rating strong { color: var(--gold-2); }
.aside-cta { margin-top: 16px; }
.aside-cta .btn { width: 100%; }

/* ---------- Article ---------- */
.article-hero {
  padding: 22px 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.article-hero .tag {
  display: inline-block;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--terracotta); background: var(--terracotta-soft);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 14px;
}
.article-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 820px; margin-bottom: 14px; letter-spacing: -0.02em;
}
.article-meta { display: flex; gap: 18px; color: var(--text-dim); font-size: 14px; }
.article { max-width: 760px; margin: 0 auto; padding: 48px 24px 24px; }
.article p, .article ul, .article ol {
  color: var(--text-dim); font-size: 16px; margin-bottom: 16px; line-height: 1.8;
}
.article ul, .article ol { padding-left: 22px; }
.article h2 { font-size: 26px; margin: 32px 0 12px; letter-spacing: -0.01em; color: var(--text); }
.article h3 { font-size: 20px; margin: 24px 0 10px; color: var(--text); }
.article blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 6px 0 6px 18px; margin: 18px 0;
  color: var(--text); font-style: italic;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  margin: 36px 0; padding: 32px;
  background: linear-gradient(135deg, var(--terracotta-soft), var(--gold-soft));
  border: 1px solid var(--terracotta);
  border-radius: var(--radius);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.cta-banner h3 { font-size: 20px; margin-bottom: 4px; color: var(--text); }
.cta-banner p { color: var(--text-dim); font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 64px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  color: var(--text-dim); font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 32px;
}
.footer-grid h5 {
  color: var(--text); font-size: 14px; margin-bottom: 14px; letter-spacing: 0.04em;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--text-dim); }
.footer-grid a:hover { color: var(--terracotta); }
.footer-about p { margin-top: 12px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; font-size: 13px; color: var(--muted);
}
.responsible-badges { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.responsible-badges span {
  border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; letter-spacing: 0.1em; color: var(--text-dim);
  background: var(--surface);
}

/* ---------- Article hero with optional side pick (top-right of header) ---------- */
.article-hero-grid { display: block; width: 100%; }
.article-hero-grid.has-pick {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.article-hero-text { min-width: 0; }
.tcp-hero-lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 12px 0 0;
  max-width: 640px;
}

/* Sidebar — "Casino of the Month" lives inside the hero block */
.tcp-side-pick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
}
.tcp-side-head { margin-bottom: 2px; }
.tcp-side-head .eyebrow { margin-bottom: 2px; }
.tcp-side-title {
  font-size: 18px !important;
  margin: 0 0 4px !important;
}
.tcp-side-intro {
  font-size: 12.5px !important;
  margin: 0 !important;
}
.tcp-side-head .eyebrow { margin-bottom: 4px; }
.tcp-side-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.tcp-side-intro {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

/* The compact casino card — mobile-style stacked layout */
.tcp-side-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tcp-side-card:hover { box-shadow: var(--shadow); border-color: var(--terracotta); }
/* Hide the verbose summary inside the side card to keep it short */
.tcp-side-card .casino-summary { display: none; }
/* Hide the long highlights list — keep card tight */
.tcp-side-card .casino-highlights { display: none; }

/* Logo + name header — logo on the LEFT, meta on the RIGHT */
.tcp-side-header {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-areas: "logo meta";
  gap: 14px;
  align-items: center;
}
.tcp-side-card .casino-rank { display: none !important; }
.tcp-side-card .casino-logo {
  grid-area: logo;
  width: 60px; height: 60px;
  font-size: 12px;
  justify-self: start;
  margin: 0;
}
.tcp-side-card .casino-meta {
  grid-area: meta;
  min-width: 0;
  text-align: left;
}
/* Reset the flex on the H4 title so it doesn't space-between */
.tcp-side-card .casino-meta h4,
.tcp-side-card .casino-meta h3 {
  display: block !important;
  justify-content: flex-start !important;
  text-align: left !important;
}
.tcp-side-card .casino-meta h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.tcp-side-card .score-badge { font-size: 12px; padding: 2px 8px; }
.tcp-side-card .casino-summary {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-dim);
  margin: 0;
}

/* Bonus blocks side-by-side */
.tcp-side-card .casino-bonus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px 0 0;
  border-top: 1px solid var(--border);
}
.tcp-side-card .casino-bonus .bonus-block {
  padding: 5px 8px;
  border-radius: 0 5px 5px 0;
}
.tcp-side-card .casino-bonus .bonus-block small { font-size: 8.5px; margin-bottom: 1px; }
.tcp-side-card .casino-bonus .bonus-block strong { font-size: 12.5px; line-height: 1.2; }

/* Highlights in sidebar */
.tcp-side-card .casino-highlights {
  background: var(--green-soft);
  padding: 9px 11px;
  border-radius: 8px;
}
.tcp-side-card .casino-highlights .highlights-label { font-size: 9.5px; margin-bottom: 4px; }
.tcp-side-card .casino-highlights .casino-features li { font-size: 12.5px; padding: 2px 0; gap: 7px; }
.tcp-side-card .casino-highlights .casino-features li::before { font-size: 12px; }

/* CTA stack — Play Now + Full Review side-by-side, fineprint below */
.tcp-side-card .casino-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6px;
  align-items: center;
}
.tcp-side-card .casino-cta .btn-primary { padding: 9px 12px; font-size: 13px; }
.tcp-side-card .casino-cta .btn-ghost { padding: 9px 10px; font-size: 12px; }
.tcp-side-card .casino-cta .tc-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 9.5px;
  margin-top: 1px;
}

/* USP badge — sit inside top-right corner of side card */
.tcp-side-card .casino-usp {
  position: absolute;
  top: -10px;
  right: 12px;
  left: auto;
  font-size: 10px;
  padding: 4px 10px;
}

@media (max-width: 980px) {
  .article-hero-grid.has-pick {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tcp-side-pick {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  /* Make sure the side card on mobile shows the SAME elements as desktop */
  .tcp-side-card .casino-summary,
  .tcp-side-card .casino-highlights {
    display: none !important;
  }
}

/* ---------- Front-page content block — same margins as casino list ---------- */
.front-page-content {
  width: 100%;
  max-width: none;
  margin: 0;
}
.front-page-content .entry-content {
  max-width: none;
}

/* ---------- Page content / entry-content ---------- */
.entry-content { color: var(--text-dim); }
.entry-content p, .entry-content ul, .entry-content ol {
  margin-bottom: 16px; line-height: 1.8; font-size: 16px;
}
.entry-content ul, .entry-content ol { padding-left: 22px; }
.entry-content h2 {
  font-size: 28px; margin: 36px 0 14px; color: var(--text); letter-spacing: -0.01em;
}
.entry-content h3 { font-size: 20px; margin: 26px 0 10px; color: var(--text); }
.entry-content a { color: var(--terracotta); }
.entry-content a:hover { color: var(--terracotta-2); }
.entry-content img { border-radius: 10px; margin: 16px 0; }
.entry-content blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 6px 0 6px 18px; margin: 18px 0;
  color: var(--text); font-style: italic;
}
.entry-content table {
  width: 100%; border-collapse: collapse;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin: 18px 0;
}
.entry-content th, .entry-content td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.entry-content th { background: var(--bg-2); color: var(--text); }
.entry-content strong { color: var(--text); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin: 40px 0; }
.pagination .page-numbers {
  padding: 8px 14px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-dim); text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--terracotta-soft); color: var(--terracotta);
  border-color: var(--terracotta);
}

/* ---------- Score badge (green) ---------- */
.score-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft);
  color: var(--green-2);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 800; font-size: 16px;
  border: 1px solid rgba(74, 139, 58, 0.3);
}
.score-badge .score-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
}

/* ---------- Bonus blocks ---------- */
.casino-bonus { display: flex; flex-direction: column; gap: 8px; }
.bonus-block {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
}
.bonus-block small {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 2px;
}
.bonus-block strong { display: block; color: var(--text); font-size: 15px; }
.bonus-block-spins {
  background: var(--green-soft);
  border-left-color: var(--green);
}
.bonus-block-spins small { color: var(--green-2); }
.bonus-terms { color: var(--muted); font-size: 11px; margin-top: 2px; }

/* ---------- Casino summary text ---------- */
.casino-summary {
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 6px;
}

/* ---------- Casino highlights (top 3 pros in topplistan) ---------- */
.casino-highlights { display: flex; flex-direction: column; gap: 6px; }
.casino-highlights .highlights-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-2);
}
.casino-highlights .casino-features li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  padding: 2px 0;
}
.casino-highlights .casino-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

/* ---------- 18+ note under CTA ---------- */
.tc-note {
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* ---------- Score circle (single review aside) ---------- */
.score-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(74, 139, 58, 0.30);
}

/* ---------- Section divider stripe (Pan-African ribbon) ---------- */
.tcp-ribbon {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--terracotta) 33%, var(--gold) 33%, var(--gold) 66%, var(--green) 66%, var(--green) 100%);
  width: 60px;
  border-radius: 2px;
  margin: 0 auto 18px;
}

/* ---------- Notice bar green accent ---------- */
.notice-bar { border-bottom-color: var(--green); }

/* ---------- Methodology hover restyling — green left border ---------- */
.eyebrow { color: var(--green-2); }

/* ---------- Category Quick-Picks (3 boxes inspired by casinogringos) ---------- */
.tcp-quickpicks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.tcp-quickpick {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}
.tcp-quickpick::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--terracotta);
}
.tcp-quickpick.is-gold::before { background: var(--gold); }
.tcp-quickpick.is-green::before { background: var(--green); }
.tcp-quickpick:hover {
  transform: translateY(-2px);
  border-color: var(--terracotta);
  box-shadow: var(--shadow);
  color: var(--text);
}
.tcp-quickpick.is-gold:hover { border-color: var(--gold-2); }
.tcp-quickpick.is-green:hover { border-color: var(--green); }
.tcp-quickpick-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--terracotta-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--terracotta);
}
.tcp-quickpick-icon svg { width: 24px; height: 24px; }
.tcp-quickpick.is-gold .tcp-quickpick-icon { background: var(--gold-soft); color: var(--gold-2); }
.tcp-quickpick.is-green .tcp-quickpick-icon { background: var(--green-soft); color: var(--green-2); }
.tcp-quickpick-text { flex: 1; min-width: 0; }
.tcp-quickpick-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.tcp-quickpick-sub {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.35;
}
.tcp-quickpick-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--terracotta);
  transition: transform .15s ease;
  font-weight: 700;
}
.tcp-quickpick.is-gold .tcp-quickpick-arrow { color: var(--gold-2); }
.tcp-quickpick.is-green .tcp-quickpick-arrow { color: var(--green-2); }
.tcp-quickpick:hover .tcp-quickpick-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .tcp-quickpicks {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0;
  }
}

/* ---------- Monthly Picks (Casino of the Month + Bonus of the Month) ---------- */
.tcp-monthly {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 36px 0 32px;
}
.tcp-monthly-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s, transform .15s, border-color .15s;
}
.tcp-monthly-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--terracotta);
}
.tcp-monthly-card.is-bonus:hover { border-color: var(--green); }
.tcp-monthly-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--green-light));
}
.tcp-monthly-card.is-bonus::before {
  background: linear-gradient(90deg, var(--green-light), var(--green), var(--gold));
}
.tcp-monthly-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-soft);
  padding: 4px 11px;
  border-radius: 20px;
  font-style: italic;
  width: fit-content;
}
.tcp-monthly-card.is-bonus .tcp-monthly-eyebrow {
  color: var(--green-2);
  background: var(--green-soft);
}
.tcp-monthly-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.tcp-monthly-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tcp-monthly-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.45;
}
.tcp-monthly-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.tcp-monthly-cta {
  margin-top: 6px;
  width: 100%;
}
.tcp-monthly-card.is-bonus .tcp-monthly-cta {
  background: linear-gradient(135deg, var(--green-light), var(--green-2));
  box-shadow: 0 6px 16px rgba(52, 199, 89, 0.30);
}
.tcp-monthly-card.is-bonus .tcp-monthly-cta:hover {
  box-shadow: 0 10px 22px rgba(52, 199, 89, 0.40);
}
.tcp-monthly-fineprint {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}
.tcp-monthly-fineprint a {
  color: var(--muted);
  text-decoration: underline;
}
.tcp-monthly-fineprint a:hover { color: var(--terracotta); }

@media (max-width: 780px) {
  .tcp-monthly { grid-template-columns: 1fr; gap: 16px; margin: 28px 0 24px; }
  .tcp-monthly-card { padding: 22px 20px 18px; }
  .tcp-monthly-title { font-size: 20px; }
}

/* ---------- Author byline ("✓ Written by X · ✓ Reviewed by Y") ---------- */
.tcp-byline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px 32px;
  align-items: center;
  padding: 12px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-dim);
  box-shadow: var(--shadow-sm);
  font-family: var(--font);
}
.tcp-byline-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.tcp-byline-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(52, 199, 89, 0.32);
}
.tcp-byline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.tcp-byline-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-2);
  font-style: italic;
}
.tcp-byline-name {
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  margin-top: 1px;
  letter-spacing: -0.01em;
}
.tcp-byline-name:hover { color: var(--terracotta); }
.tcp-byline-divider {
  width: 1px;
  height: 26px;
  background: var(--border);
}
@media (max-width: 540px) {
  .tcp-byline { gap: 10px 18px; padding: 10px 16px; border-radius: 12px; }
  .tcp-byline-divider { display: none; }
  .tcp-byline-name { font-size: 13px; }
}

/* ---------- Injected toplist (on country pages) ---------- */
.tcp-injected-toplist { margin: 36px 0 36px; }

/* Reset entry-content typography overrides so injected casino-rows look
   identical to the ones on the homepage (no extra margins, list padding, etc.) */
.entry-content .tcp-injected-toplist ul,
.entry-content .tcp-injected-toplist ol { padding: 0; margin: 0; list-style: none; }
.entry-content .tcp-injected-toplist li { margin: 0; padding: 0; }
.entry-content .tcp-injected-toplist p { margin: 0; }
.entry-content .tcp-injected-toplist h2,
.entry-content .tcp-injected-toplist h3 { margin: 0 0 8px; }

/* Force button colours — entry-content "a { color: var(--terracotta) }" would
   otherwise win over .btn-primary { color: #fff } due to higher specificity. */
.entry-content a.btn-primary,
.entry-content a.btn-primary:hover,
.entry-content a.btn-primary:visited {
  color: #fff;
}
.entry-content a.btn-gold,
.entry-content a.btn-gold:hover {
  color: #2a1f17;
}
.entry-content a.btn-ghost,
.entry-content a.btn-ghost:hover {
  color: var(--text);
}
/* Same fix for the sidebar pick which also lives inside the article-hero */
.tcp-side-card a.btn-primary,
.tcp-side-card a.btn-primary:hover {
  color: #fff;
}
.tcp-side-card a.btn-ghost,
.tcp-side-card a.btn-ghost:hover {
  color: var(--text);
}

/* ---------- Team block (when injected into content) ---------- */
.tcp-team-block { margin: 36px 0 32px; }
.tcp-team-block .section-head { margin-bottom: 22px; }
.tcp-team-block .eyebrow { margin-bottom: 4px; }
.entry-content .tcp-team-block h2,
.tcp-team-block .section-head h2 {
  margin-top: 0;
  margin-bottom: 6px;
}
.tcp-team-block .section-head p { margin-bottom: 0; }

/* ---------- Team profile cards ---------- */
.tcp-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.tcp-team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  position: relative;
  overflow: hidden;
}
.tcp-team-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--green-light));
}
.tcp-team-card.is-editor::before {
  background: linear-gradient(90deg, var(--green-light), var(--green), var(--green-2));
}
.tcp-team-card:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* --- Header section: avatar + name + role --- */
.tcp-team-header {
  display: flex;
  gap: 16px;
  align-items: center;
}
.tcp-team-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.tcp-team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  letter-spacing: -1px;
  border: 4px solid var(--surface);
  box-shadow: 0 0 0 2px var(--terracotta), 0 6px 16px rgba(0,0,0,0.08);
}
.tcp-team-card.is-editor .tcp-team-avatar {
  background: linear-gradient(135deg, var(--green-light), var(--green-2));
  box-shadow: 0 0 0 2px var(--green), 0 6px 16px rgba(0,0,0,0.08);
}
.tcp-team-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 26px;
  height: 26px;
  background: var(--green-light);
  color: #fff;
  border: 3px solid var(--surface);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(52,199,89,0.4);
}
.tcp-team-headtext { flex: 1; min-width: 0; }
.tcp-team-role {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-soft);
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-style: italic;
}
.tcp-team-card.is-editor .tcp-team-role {
  color: var(--green-2);
  background: var(--green-soft);
}
.tcp-team-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.tcp-team-name:hover { color: var(--terracotta); }
.tcp-team-title {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

/* --- Stats list (with green check icons) --- */
.tcp-team-stats {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tcp-team-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
}
.tcp-team-stat::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(52,199,89,0.3);
}

/* --- Bio --- */
.tcp-team-bio {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* --- Read more link --- */
.tcp-team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: none;
  margin-top: 2px;
}
.tcp-team-card.is-editor .tcp-team-link { color: var(--green-2); }
.tcp-team-link::after {
  content: "→";
  transition: transform .15s ease;
}
.tcp-team-link:hover::after { transform: translateX(3px); }

@media (max-width: 780px) {
  .tcp-team { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tcp-team-card { padding: 22px 20px; gap: 14px; }
  .tcp-team-avatar { width: 68px; height: 68px; font-size: 22px; }
  .tcp-team-verified { width: 22px; height: 22px; font-size: 10px; }
  .tcp-team-name { font-size: 18px; }
  .tcp-team-stats { padding: 12px 14px; }
}

/* ---------- FAQ accordion ---------- */
.tcp-faq { display: flex; flex-direction: column; gap: 10px; }
.tcp-faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.tcp-faq details[open] {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-sm);
}
.tcp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.tcp-faq summary::-webkit-details-marker { display: none; }
.tcp-faq summary::after {
  content: "";
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--terracotta);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .15s;
}
.tcp-faq summary { position: relative; }
.tcp-faq summary::before {
  content: "+";
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 800;
  color: var(--terracotta);
  pointer-events: none;
  z-index: 1;
  transition: transform .2s ease;
}
.tcp-faq details[open] summary::before {
  content: "−";
}
.tcp-faq details:hover summary::after { background: var(--terracotta-soft); }
.tcp-faq .faq-answer {
  padding: 0 22px 20px;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 15px;
}
.tcp-faq .faq-answer p { margin-bottom: 10px; }
.tcp-faq .faq-answer p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .tcp-faq summary { padding: 14px 18px; font-size: 15px; gap: 12px; }
  .tcp-faq summary::before { right: 23px; font-size: 18px; }
  .tcp-faq summary::after { width: 22px; height: 22px; }
  .tcp-faq .faq-answer { padding: 0 18px 16px; font-size: 14px; }
}

/* ---------- WP-specific ---------- */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.alignleft  { float: left;  margin: 6px 18px 6px 0; }
.alignright { float: right; margin: 6px 0 6px 18px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text {
  color: var(--muted); font-size: 13px; margin-top: 6px; text-align: center;
}
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px; width: 1px; overflow: hidden; position: absolute !important; word-wrap: normal !important;
}

/* ---------- Responsive ---------- */

/* Tablet / small laptop */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .casino-row {
    grid-template-columns: 50px 1fr;
    grid-template-areas:
      "rank  brand"
      "bonus bonus"
      "highlights highlights"
      "cta   cta";
    gap: 14px;
    padding: 16px;
  }
  .casino-rank      { grid-area: rank; font-size: 22px; }
  .casino-rank small { font-size: 9px; }
  .casino-brand     { grid-area: brand; }
  .casino-bonus     { grid-area: bonus; padding-top: 10px; border-top: 1px solid var(--border); flex-direction: row; flex-wrap: wrap; }
  .casino-bonus .bonus-block { flex: 1; min-width: 140px; }
  .casino-bonus .bonus-terms { flex-basis: 100%; }
  .casino-highlights { grid-area: highlights; padding-top: 4px; }
  .casino-cta       { grid-area: cta; flex-direction: row; gap: 8px; align-items: center; flex-wrap: wrap; }
  .casino-cta .btn  { flex: 1; min-width: 130px; }
  .casino-cta .tc-note { flex-basis: 100%; text-align: center; }

  .review-body { grid-template-columns: 1fr; }
  .review-aside { position: static; }
  .review-hero-grid { grid-template-columns: 90px 1fr; }
  .review-hero .casino-logo { width: 90px; height: 90px; font-size: 18px; }
  .review-hero-cta { grid-column: 1 / -1; flex-direction: row; }
  .review-hero-cta .btn { flex: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Phone */
@media (max-width: 640px) {
  .nav {
    display: none; position: absolute; top: 100%; right: 16px;
    flex-direction: column; background: var(--surface);
    border: 1px solid var(--border); border-radius: 10px;
    padding: 8px; min-width: 200px; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: grid; place-items: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 40px 0; }
  .hero { padding: 40px 0 20px; }

  /* Casino row — compact phone layout
     Rank sits in top-left corner; logo + name occupy the main row below. */
  .casino-row {
    position: relative;
    grid-template-columns: 68px 1fr;
    grid-template-areas:
      "logo meta"
      "bonus bonus"
      "highlights highlights"
      "cta cta";
    padding: 14px;
    padding-top: 50px;
    gap: 14px 16px;
    align-items: center;
  }

  /* USP badge on phone — INSIDE the box (top-right corner, level with rank) */
  .casino-usp {
    top: 10px;
    left: auto;
    right: 12px;
    font-size: 10px;
    padding: 5px 11px;
    box-shadow: 0 2px 6px rgba(52, 199, 89, 0.25);
  }
  .casino-usp-emoji { font-size: 11px; }
  /* Rank — absolute, top-left corner */
  .casino-rank {
    position: absolute;
    top: 12px;
    left: 14px;
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 1px;
    background: transparent;
    color: var(--terracotta);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    padding: 0;
    width: auto;
    margin: 0;
    z-index: 2;
  }
  .casino-rank::before {
    content: "#";
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    margin-right: 1px;
    align-self: baseline;
  }
  .casino-rank small {
    display: inline;
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--green-2);
    margin-left: 4px;
    font-weight: 700;
  }

  /* Logo as its own grid cell */
  .casino-brand {
    display: contents; /* let logo and meta flow into their own grid cells */
  }
  .casino-logo {
    grid-area: logo;
    width: 68px; height: 68px;
    font-size: 13px;
    margin: 0;
    justify-self: start;
  }
  .casino-meta {
    grid-area: meta;
    min-width: 0;
    width: 100%;
  }
  .casino-meta h3 {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 6px;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
  }
  .casino-meta .score-badge {
    font-size: 13px;
    padding: 2px 8px;
  }
  .casino-summary {
    font-size: 11.5px;
    line-height: 1.35;
    margin-top: 4px;
  }

  /* Bonus area: stack the two bonus blocks side-by-side, terms below */
  .casino-bonus {
    grid-area: bonus;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .casino-bonus .bonus-block { padding: 8px 10px; min-width: 0; }
  .casino-bonus .bonus-block small { font-size: 9px; }
  .casino-bonus .bonus-block strong { font-size: 14px; line-height: 1.3; }
  .casino-bonus .bonus-terms {
    grid-column: 1 / -1;
    font-size: 11px;
    color: var(--muted);
    text-align: center;
  }

  /* Highlights — full width, clear label, comfortable spacing */
  .casino-highlights {
    grid-area: highlights;
    background: var(--green-soft);
    border-radius: 8px;
    padding: 10px 12px;
  }
  .casino-highlights .highlights-label {
    color: var(--green-2);
    font-size: 10px;
    margin-bottom: 6px;
  }
  .casino-highlights .casino-features li {
    font-size: 13px;
    padding: 3px 0;
    line-height: 1.4;
    gap: 8px;
  }
  .casino-highlights .casino-features li::before {
    flex-shrink: 0;
    font-size: 13px;
  }

  /* CTA: Play Now + Review side-by-side, T&C on its own row below */
  .casino-cta {
    grid-area: cta;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
  }
  .casino-cta .btn {
    flex: 1;
    min-width: 0;
  }
  .casino-cta .btn-primary {
    padding: 12px 14px;
    font-size: 14px;
  }
  .casino-cta .btn-ghost {
    padding: 12px 14px;
    font-size: 13px;
  }
  .casino-cta .tc-note {
    flex-basis: 100%;
    text-align: center;
    margin-top: 2px;
  }
}
