/* ============================================================
   NotOnGamban.uk — home.css
   One-page structure, mirrored from the GAMSTOP layout, gold theme
   ============================================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --accent: #f6c66a;
  --accent-dark: #c89a3b;
  --ink: #1a1a2e;
  --text: #1a1a1a;
  --text-muted: #55555f;
  --border: #bdbdbd;
  --border-light: #e5e5e5;
  --bg-soft: #f6f8fa;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 16px;
  --font: 'Outfit', 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1240px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 18px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1, h2, h3 { font-weight: 700; line-height: 1.25; }
h1 { font-size: 38px; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }
p { color: var(--text); }

/* ---------- Header ---------- */
.site-header {
  background: linear-gradient(160deg, #0a0805 0%, #1f1608 55%, #332008 100%);
  border-bottom: 1px solid rgba(246,198,106,0.35);
  box-shadow: 0 1px 24px rgba(246,198,106,0.18);
  position: relative;
}
.header-top {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img {
  height: 54px;
  width: 54px;
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(246,198,106,0.5), 0 4px 18px rgba(246,198,106,0.35);
  transition: box-shadow 0.2s ease;
}
.site-logo:hover img { box-shadow: 0 0 0 2px rgba(246,198,106,0.8), 0 4px 22px rgba(246,198,106,0.55); }
.site-logo-text {
  margin-left: 12px;
  line-height: 1.15;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
  background: linear-gradient(100deg, #ffffff 0%, #ffe5a1 55%, #f6c66a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-search { flex: 1; position: relative; max-width: 780px; }
.header-search input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(246,198,106,0.35);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  padding: 15px 16px 15px 50px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.header-search input::placeholder { color: #cfcfcf; }
.header-search input:focus {
  outline: none;
  border-color: #f6c66a;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(246,198,106,0.25);
}
.header-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: #f6c66a;
}
.header-contact {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1.5px solid rgba(246,198,106,0.5);
  border-radius: 999px;
  padding: 11px 22px;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.header-contact:hover {
  background: linear-gradient(135deg, #c89a3b 0%, #f6c66a 100%);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(246,198,106,0.4);
}
.breadcrumb-bar { background: #0a0805; border-top: 1px solid rgba(246,198,106,0.2); }
.breadcrumb-bar .wrap { padding: 16px 20px; }
.breadcrumb-bar a { color: var(--white); font-weight: 600; font-size: 16px; }

/* ---------- Hero ---------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%; }
  50%      { background-position: 15% 40%, 100% 30%, 5% 100%, 100% 50%; }
}
@keyframes heroGlowPulse {
  0%, 100% { box-shadow: 0 25px 70px rgba(200,154,59,0.35); }
  50%      { box-shadow: 0 25px 90px rgba(200,154,59,0.55); }
}
@keyframes heroShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50%      { transform: translateY(-18px) scale(1.1); opacity: 1; }
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1.15); }
}

.hero { padding: 48px 0 32px; text-align: center; }
.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 15px;
  margin-bottom: 24px;
  animation: heroFadeUp 0.6s ease both;
}
.hero h1 { max-width: 900px; margin: 0 auto 20px; animation: heroFadeUp 0.7s 0.1s ease both; }
.byline { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 16px; color: var(--text-muted); margin-bottom: 32px; animation: heroFadeUp 0.7s 0.2s ease both; }
.byline img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.byline strong { color: var(--text); text-decoration: underline; }

.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 30px;
  text-align: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.18), transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(255,225,161,0.45), transparent 50%),
    radial-gradient(circle at 10% 85%, rgba(200,154,59,0.5), transparent 55%),
    linear-gradient(135deg, #1f1608 0%, #8a6a14 45%, #f6c66a 100%);
  background-size: 160% 160%, 160% 160%, 160% 160%, 160% 160%;
  box-shadow: 0 25px 70px rgba(200,154,59,0.35);
  animation: heroFadeUp 0.8s 0.3s ease both, heroGradientShift 14s ease-in-out infinite, heroGlowPulse 4s ease-in-out infinite;
}
.hero-banner::before,
.hero-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,229,161,0.55), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-banner::before { width: 160px; height: 160px; top: -40px; left: -30px; animation: orbFloat 8s ease-in-out infinite; }
.hero-banner::after { width: 110px; height: 110px; bottom: -25px; right: 8%; animation: orbFloat 7s 1s ease-in-out infinite reverse; }

.hero-banner-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 14px;
  letter-spacing: 0.35em;
  color: #ffe5a1;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-banner-headline {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(100deg, #fff 30%, #fff8e1 45%, #ffe5a1 50%, #fff8e1 55%, #fff 70%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255,225,161,0.55)) drop-shadow(0 0 40px rgba(255,195,80,0.3));
  animation: heroShimmer 5s ease-in-out infinite;
}
.hero-banner-sparkle {
  position: absolute;
  color: #ffe5a1;
  z-index: 1;
  pointer-events: none;
  animation: sparkleTwinkle 2.4s ease-in-out infinite;
}
.hero-banner-sparkle:nth-of-type(1) { top: 18%; left: 12%; font-size: 18px; animation-delay: 0s; }
.hero-banner-sparkle:nth-of-type(2) { top: 65%; left: 20%; font-size: 12px; animation-delay: 0.6s; }
.hero-banner-sparkle:nth-of-type(3) { top: 22%; right: 14%; font-size: 14px; animation-delay: 1.1s; }
.hero-banner-sparkle:nth-of-type(4) { top: 70%; right: 10%; font-size: 20px; animation-delay: 1.7s; }

.hero-intro { max-width: 820px; margin: 32px auto 0; text-align: left; font-size: 18px; color: var(--text-muted); animation: heroFadeUp 0.8s 0.45s ease both; }
.hero-intro p { margin-bottom: 14px; }

@media (prefers-reduced-motion: reduce) {
  .updated-badge, .hero h1, .byline, .hero-banner, .hero-intro, .hero-banner-headline, .hero-banner::before, .hero-banner::after, .hero-banner-sparkle {
    animation: none !important;
  }
}

/* ---------- Ranking list ---------- */
.ranking-section { padding: 48px 0; }
.ranking-section h2 { text-align: center; max-width: 780px; margin: 0 auto 32px; }

.rank-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rank-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }

.rank-number-logo { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; width: 100%; max-width: 250px; }
.rank-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--border);
  width: 30px;
  flex-shrink: 0;
}
.rank-logo { width: 180px; height: 90px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; }
.rank-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.rank-info { flex: 1 1 320px; min-width: 240px; }
.rank-bonus { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.rank-features { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 8px; }
.rank-features li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.rank-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.rank-code { font-size: 13px; color: var(--text-muted); font-style: italic; }

.rank-score { flex: 0 0 auto; width: 150px; text-align: center; }
.rank-score .score-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }
.rank-score .score-value { font-size: 24px; font-weight: 800; color: #c89a3b; margin-bottom: 8px; }
.score-bar { height: 6px; background: var(--border-light); border-radius: 999px; overflow: hidden; }
.score-bar span { display: block; height: 100%; background: linear-gradient(90deg, #c89a3b 0%, #f6c66a 100%); border-radius: 999px; }

.rank-cta { flex: 0 0 auto; display: flex; flex-direction: column; gap: 10px; width: 160px; }
.rank-review-btn { width: 100%; }
.btn { display: inline-block; text-align: center; border-radius: var(--radius); padding: 14px 16px; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; cursor: pointer; }
.btn-solid {
  background: linear-gradient(135deg, #c89a3b 0%, #f6c66a 100%);
  color: var(--white);
  border: 0;
  box-shadow: 0 8px 20px rgba(246,198,106,0.35);
  transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}
.btn-solid:hover {
  background: linear-gradient(135deg, #d4af37 0%, #ffe5a1 100%);
  box-shadow: 0 10px 26px rgba(246,198,106,0.5);
  transform: translateY(-1px);
}
.btn-outline { background: transparent; color: #c89a3b; border: 2px solid #c89a3b; padding: 12px 16px; transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; }
.btn-outline:hover { background: linear-gradient(135deg, #c89a3b 0%, #f6c66a 100%); color: var(--white); border-color: transparent; box-shadow: 0 8px 20px rgba(246,198,106,0.35); }

.load-more-row { text-align: center; margin-top: 24px; }
.load-more-row .btn-outline { display: inline-block; width: auto; padding: 14px 40px; }

/* ---------- Rank card: more info toggle + expand panel ---------- */
.rank-more-btn {
  width: 100%;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.rank-more-btn:hover { color: #c89a3b; border-color: #c89a3b; }

.rank-expand {
  display: none;
  flex-basis: 100%;
  border-top: 1px solid var(--border-light);
  margin-top: 20px;
  padding-top: 20px;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
}
.rank-card.open .rank-expand { display: grid; }

.rank-preview {
  grid-column: 1 / -1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-soft);
}
.rank-preview-bar { background: #ece7d5; padding: 8px 12px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border-light); }
.rank-preview-dots { display: flex; gap: 5px; flex-shrink: 0; }
.rank-preview-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.rank-preview-url { flex: 1; background: rgba(0,0,0,0.05); border-radius: 5px; padding: 4px 10px; font-size: 12px; color: var(--text-muted); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.rank-preview img { width: 100%; height: auto; display: block; }

.rank-info-block { background: var(--bg-soft); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 14px 16px; }
.rank-info-block.full { grid-column: 1 / -1; border-color: #f6c66a; background: rgba(246,198,106,0.05); }
.rank-info-title { font-size: 14px; font-weight: 700; color: var(--text); margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.rank-info-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.rank-info-list li { font-size: 14px; color: var(--text-muted); padding-left: 16px; position: relative; line-height: 1.5; }
.rank-info-list li::before { content: '•'; position: absolute; left: 0; color: #f6c66a; }
.rank-info-list.checks li::before { content: '✓'; color: #f6c66a; font-weight: 700; }
.rank-payments { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.rank-payment { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 6px; background: rgba(246,198,106,0.08); border: 1px solid rgba(246,198,106,0.25); color: var(--text-muted); }
.rank-meta-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; border-top: 1px solid var(--border-light); }
.rank-meta-row:first-of-type { border-top: none; padding-top: 8px; }
.rank-meta-label { color: var(--text-muted); }
.rank-meta-val { color: var(--text); font-weight: 600; }

@media (max-width: 720px) {
  .rank-expand { grid-template-columns: 1fr; }
}

/* ---------- Comparison table ---------- */
.table-section { padding: 48px 0; background: var(--bg-soft); }
.table-section h2 { margin-bottom: 12px; }
.table-section > .wrap > p { max-width: 760px; color: var(--text-muted); margin-bottom: 28px; font-size: 18px; }
.table-wrap { overflow-x: auto; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-light); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 18px 20px; font-size: 18px; border-bottom: 1px solid var(--border-light); }
th { background: var(--black); color: var(--white); font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.03em; }
tr:last-child td { border-bottom: none; }
td.stars { letter-spacing: 2px; white-space: nowrap; }
@keyframes star-pulse {
  0%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 1px rgba(246,198,106,0.1));
    transform: scale(1);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 7px rgba(246,198,106,0.9)) drop-shadow(0 0 14px rgba(246,198,106,0.5));
    transform: scale(1.18);
  }
}
.star { display: inline-block; position: relative; font-size: 18px; line-height: 1; }
.star::before { content: '★'; color: var(--border-light); }
.star.full::before { color: #f6c66a; }
.star.half::before {
  background: linear-gradient(90deg, #f6c66a 50%, var(--border-light) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.star.full, .star.half { animation: star-pulse 2s ease-in-out infinite; }
.star:nth-child(2).full, .star:nth-child(2).half { animation-delay: 0.15s; }
.star:nth-child(3).full, .star:nth-child(3).half { animation-delay: 0.3s; }
.star:nth-child(4).full, .star:nth-child(4).half { animation-delay: 0.45s; }
.star:nth-child(5).full, .star:nth-child(5).half { animation-delay: 0.6s; }

/* ---------- In-depth casino reviews ---------- */
.reviews-section { padding: 48px 0; }
.reviews-section h2 { text-align: center; max-width: 780px; margin: 0 auto 12px; }
.reviews-intro { max-width: 720px; margin: 0 auto 40px; text-align: center; color: var(--text-muted); font-size: 18px; }

.casino-review { max-width: 820px; margin: 0 auto 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-light); }
.casino-review:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.casino-review h3 { font-size: 24px; margin-bottom: 16px; color: #c89a3b; }
.casino-review h4 { font-size: 18px; margin: 24px 0 8px; color: var(--text); }
.casino-review p { color: var(--text-muted); font-size: 18px; margin-bottom: 12px; }
.casino-review ul { padding-left: 4px; margin-bottom: 12px; }
.casino-review li { list-style: none; display: flex; gap: 8px; color: var(--text-muted); font-size: 16px; margin-bottom: 8px; }
.casino-review li::before { content: '\2713'; color: #f6c66a; font-weight: 700; flex-shrink: 0; }

.review-image { max-width: 100%; margin: 20px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-light); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.review-image img { width: 100%; display: block; }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.pros-cons-col strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); margin-bottom: 8px; }
.pros-cons-col ul { margin: 0; }

.review-faq { margin-top: 8px; }
.review-faq-item { padding: 14px 0; border-top: 1px solid var(--border-light); }
.review-faq-item:first-child { border-top: none; padding-top: 0; }
.review-faq-q { font-weight: 700; color: var(--text); font-size: 18px; margin-bottom: 6px !important; }
.review-faq-item p:last-child { margin-bottom: 0 !important; }

@media (max-width: 640px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ / info sections ---------- */
.info-section { padding: 48px 0; }
.info-section h2 { margin-bottom: 16px; }
.info-section h2:not(:first-child) { margin-top: 56px; }
.info-section h3 { margin: 24px 0 10px; font-size: 21px; }
.info-section p, .info-section li { color: var(--text-muted); margin-bottom: 12px; font-size: 18px; }
.info-section ul { padding-left: 4px; }
.info-section li { display: flex; gap: 10px; }
.info-section li::before { content: '✔'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.info-section ol { padding-left: 22px; margin-bottom: 12px; }
.info-section ol li { display: list-item; padding-left: 4px; }
.info-section ol li::before { content: none; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 20px; }
.info-card { border: 1px solid var(--border-light); border-radius: var(--radius); padding: 24px; }

.faq-card { border: 1px solid var(--border-light); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 16px; }
.faq-question { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--text); font-size: 18px; margin-bottom: 10px !important; }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 6px; background: rgba(246,198,106,0.08); border: 1px solid rgba(246,198,106,0.3); color: #c89a3b; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.faq-answer { margin: 0 !important; font-size: 16px; }

.rg-notice { background: var(--bg-soft); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px 24px; margin: 32px 0; font-size: 15px; color: var(--text-muted); }
.rg-notice a { color: var(--accent-dark); text-decoration: underline; }
.rg-notice strong { color: var(--text); }

/* ---------- Authors ---------- */
.authors-section { padding: 48px 0; background: var(--bg-soft); }
.authors-section h2 { margin-bottom: 24px; }
.author-card { display: flex; gap: 20px; max-width: 820px; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 28px; }
.author-card img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-card-name { font-weight: 700; font-size: 19px; color: var(--text); }
.author-card-title { display: block; color: #c89a3b; font-size: 14px; font-weight: 600; margin-top: 2px; }
.author-card-bio { color: var(--text-muted); font-size: 16px; margin: 12px 0 14px; }
.author-card-contact {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(246,198,106,0.08); border: 1px solid rgba(246,198,106,0.3); color: #c89a3b;
  transition: background 0.2s ease, color 0.2s ease;
}
.author-card-contact:hover { background: #f6c66a; color: var(--white); border-color: transparent; }

@media (max-width: 560px) {
  .author-card { flex-direction: column; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--white); padding: 48px 0 32px; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-logo img { height: 42px; }
.footer-resources-title { font-size: 15px; color: #cfcfcf; margin-bottom: 12px; }
.footer-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-badges img { height: 40px; width: auto; background: var(--white); border-radius: var(--radius-sm); padding: 6px 10px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; font-size: 15px; color: #cfcfcf; margin-bottom: 20px; }
.footer-links a:hover { color: var(--accent); }
.footer-disclaimer { font-size: 13px; color: #9a9aa5; max-width: 900px; }
.footer-disclaimer a { color: var(--accent); text-decoration: underline; }
.footer-copy { font-size: 13px; color: #7c7c88; margin-top: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .header-top { flex-wrap: wrap; }
  .header-search { order: 3; flex-basis: 100%; }
  .rank-expand { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .header-top { padding: 14px 16px; gap: 10px; }
  .site-logo img { height: 42px; width: 42px; }
  .site-logo-text { font-size: 16px; margin-left: 8px; }
  .header-search input { font-size: 15px; padding: 13px 14px 13px 44px; }
  .header-search svg { left: 14px; width: 18px; height: 18px; }
  .header-contact { font-size: 13px; padding: 9px 16px; }
  .breadcrumb-bar a { font-size: 14px; }

  .hero { padding: 28px 0 20px; }
  .hero h1 { font-size: 26px; }
  .updated-badge { font-size: 13px; padding: 8px 16px; }
  .byline { font-size: 14px; }
  .hero-banner { padding: 40px 20px; }
  .hero-banner-eyebrow { font-size: 12px; letter-spacing: 0.25em; }
  .hero-banner::before { width: 100px; height: 100px; }
  .hero-banner::after { width: 70px; height: 70px; }
  .hero-banner-sparkle:nth-of-type(3), .hero-banner-sparkle:nth-of-type(4) { display: none; }

  .ranking-section, .table-section, .reviews-section, .info-section, .authors-section { padding: 32px 0; }
  .info-section h2:not(:first-child) { margin-top: 40px; }

  .rank-card { padding: 14px; gap: 14px; }
  .rank-number-logo { max-width: none; gap: 10px; }
  .rank-number { font-size: 20px; width: 24px; }
  .rank-logo { width: 130px; height: 65px; }
  .rank-score, .rank-cta { width: 100%; }
  .rank-cta { flex-direction: column; }
  .rank-more-btn { width: 100%; padding: 12px 0; }
  .rank-expand { grid-template-columns: 1fr; }

  th, td { padding: 14px 12px; }

  .casino-review h3 { font-size: 20px; }
  .pros-cons-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-banner-headline { font-size: 26px; }
  .hero-banner-sparkle:nth-of-type(2) { display: none; }
  .rank-number-logo { flex-wrap: nowrap; }
  .rank-logo { width: 110px; height: 55px; }
  .btn { font-size: 13px; padding: 12px 14px; }
}
