/* ============================================================
   50FreiBoni – main.css
   Design: Light + Premium Purple (Violet)
   Fonts: Bricolage Grotesque (display) + Manrope (body)
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Manrope:wght@400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:        #7c3aed;
  --primary-hover:  #6d28d9;
  --primary-light:  #f5f3ff;
  --primary-mid:    #ede9fe;
  --primary-border: #c4b5fd;

  --bg:             #ffffff;
  --bg-soft:        #faf9ff;
  --bg-card:        #ffffff;

  --text:           #1e1b4b;
  --text-muted:     #64748b;
  --text-light:     #94a3b8;

  --border:         #e5e7eb;
  --border-soft:    #f3f4f6;

  --amber:          #f59e0b;
  --amber-light:    #fffbeb;
  --red:            #dc2626;
  --green:          #059669;

  --shadow-sm:      0 1px 3px rgba(124,58,237,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:         0 4px 12px rgba(124,58,237,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-md:      0 8px 24px rgba(124,58,237,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-hover:   0 12px 32px rgba(124,58,237,.18), 0 4px 16px rgba(0,0,0,.08);

  --radius-sm:      6px;
  --radius:         10px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  --max-w:          1200px;
  --max-w-content:  920px;
  --nav-h:          72px;

  --font-display:   'Bricolage Grotesque', sans-serif;
  --font-body:      'Manrope', sans-serif;

  --transition:     0.2s ease;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; margin-bottom: .6rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); font-weight: 600; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--content {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 3rem 0; }
.section--soft { background: var(--bg-soft); }
.section--border-top { border-top: 1px solid var(--border); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  white-space: nowrap;
  margin-right: auto;
}

.nav__logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav__logo-text { color: var(--text); }
.nav__logo-text span { color: var(--primary); }

.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .4rem .7rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--primary); background: var(--primary-light); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  margin-left: .5rem;
}
.nav__burger:hover { background: var(--primary-light); }
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ─────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform .3s ease;
  box-shadow: var(--shadow-md);
}
.mobile-drawer.open { transform: translateY(0); }

.mobile-drawer__list {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-drawer__list a {
  display: block;
  padding: .65rem .9rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-drawer__list a:hover { background: var(--primary-light); color: var(--primary); }

/* ── Page Offset (for fixed header) ───────────────────────── */
main { padding-top: var(--nav-h); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #faf9ff 0%, #f5f3ff 60%, #fff 100%);
  padding: 2.25rem 0 2rem;
  border-bottom: 1px solid var(--primary-mid);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  padding: .3rem .85rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__badge::before { content: '✦'; font-size: .6rem; }

.hero h1 { margin-bottom: .85rem; max-width: 680px; }

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 1.5rem;
}

/* Stats rail */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  padding-top: .25rem;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero__stat-icon {
  width: 28px; height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Listing Section ───────────────────────────────────────── */
.listing-section { padding: 2.5rem 0 0; }
.listing-section h2 { margin-bottom: 1.5rem; }

/* Compact Listing Table */
.listing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 2rem;
}

.listing-table thead th {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .5rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.listing-table thead th:last-child { text-align: center; }

.listing-row {
  background: var(--bg-card);
  transition: box-shadow var(--transition), background var(--transition);
}
.listing-row:hover { background: var(--primary-light); }

.listing-row td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}

.listing-row:last-child td { border-bottom: none; }

/* Rank badge */
.listing-rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  color: var(--text-light);
  min-width: 32px;
}
.listing-rank--1 { color: var(--amber); }
.listing-rank--2 { color: #94a3b8; }
.listing-rank--3 { color: #b45309; }

/* Logo cell */
.listing-logo-cell { min-width: 100px; }
.listing-logo {
  display: block;
  max-width: 110px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Bonus cell */
.listing-bonus {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.listing-wager {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Stars */
.listing-stars { color: var(--amber); font-size: .85rem; white-space: nowrap; }

/* Listing CTA */
.listing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  border-radius: var(--radius);
  padding: .5rem 1rem;
  transition: opacity var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(124,58,237,.25);
}
.listing-cta:hover { opacity: .9; box-shadow: 0 4px 16px rgba(124,58,237,.35); }

/* ── Intro text below listing ──────────────────────────────── */
.listing-intro {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border-soft);
}
.listing-intro p { font-size: .95rem; max-width: var(--max-w-content); }

/* ── Casino Cards (detailed) ───────────────────────────────── */
.cards-section { padding: 0 0 3rem; }

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.casino-card:hover { box-shadow: var(--shadow-hover); }

.casino-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--bg) 100%);
}

.casino-card__rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-border);
  min-width: 36px;
  line-height: 1;
}

.casino-card__logo {
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.casino-card__meta { flex: 1; }
.casino-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .15rem;
}
.casino-card__bonus-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-mid);
  border-radius: 999px;
  padding: .2rem .65rem;
}

.casino-card__screenshot-wrap {
  overflow: hidden;
  max-height: 240px;
  display: flex;
  align-items: flex-start;
}
.casino-card__screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.casino-card:hover .casino-card__screenshot { transform: scale(1.01); }

.casino-card__body {
  padding: 1.5rem;
}

.casino-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.casino-card__spec {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .25rem .7rem;
}
.casino-card__spec strong { color: var(--text); }

.casino-card__text p { font-size: .95rem; }

.casino-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.25rem;
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: .7rem 1.5rem;
  transition: opacity var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  box-shadow: 0 3px 10px rgba(124,58,237,.28);
}
.btn--primary:hover { opacity: .9; box-shadow: 0 6px 18px rgba(124,58,237,.38); }

.btn--outline {
  color: var(--primary);
  background: var(--primary-light);
  border: 1.5px solid var(--primary-border);
}
.btn--outline:hover { background: var(--primary-mid); }

/* ── Prose Sections ────────────────────────────────────────── */
.prose-section { padding: 2.5rem 0; }
.prose-section + .prose-section { padding-top: 0; }

.prose-section h2 {
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--primary-light);
  margin-bottom: 1.25rem;
}

.prose-section p { font-size: .97rem; }

/* ── Comparison Table ──────────────────────────────────────── */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin: 1rem 0 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  min-width: 540px;
}

.comparison-table thead {
  background: linear-gradient(90deg, var(--primary) 0%, #a855f7 100%);
  color: #fff;
}
.comparison-table thead th {
  padding: .85rem 1rem;
  font-weight: 600;
  text-align: left;
  font-size: .82rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

.comparison-table tbody tr { border-bottom: 1px solid var(--border-soft); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.comparison-table tbody tr:hover { background: var(--primary-light); }

.comparison-table td {
  padding: .8rem 1rem;
  color: var(--text-muted);
  vertical-align: middle;
}
.comparison-table td:first-child { font-weight: 600; color: var(--text); }

.badge--low { color: var(--green); font-weight: 600; }
.badge--high { color: var(--red); font-weight: 600; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 2.5rem 0 3rem; }
.faq-section h2 { margin-bottom: 1.75rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: var(--primary-border); box-shadow: var(--shadow-sm); }

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
  padding-left: 1.25rem;
  position: relative;
}
.faq-item h3::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  font-size: .9rem;
}

.faq-item p { font-size: .9rem; margin-bottom: 0; }

/* ── Responsible Gambling Banner ───────────────────────────── */
.rg-banner {
  background: #fff8f0;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 2rem 0;
}

.rg-banner__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
}

.rg-banner__content p {
  font-size: .85rem;
  color: #92400e;
  margin-bottom: .3rem;
}
.rg-banner__content p:first-child { font-weight: 600; color: #78350f; margin-bottom: .4rem; }
.rg-banner__content a { color: var(--primary); text-decoration: underline; font-weight: 500; }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: .7rem;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 0;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.footer__logo-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}

.footer__tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  border-radius: 50%;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__rg {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}
.footer__rg strong { color: rgba(255,255,255,.65); display: block; margin-bottom: .4rem; font-size: .82rem; }
.footer__rg a { color: rgba(255,255,255,.55); text-decoration: underline; }
.footer__rg a:hover { color: #fff; }

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
}
.footer__bottom-links a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Legal pages ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #faf9ff 0%, #f5f3ff 100%);
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid var(--primary-mid);
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  padding: .25rem .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.page-hero h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; }
.page-hero p { font-size: .95rem; margin-bottom: 0; }

/* Breadcrumbs */
.breadcrumbs {
  padding: .9rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumbs__list a { color: var(--primary); }
.breadcrumbs__list a:hover { text-decoration: underline; }
.breadcrumbs__sep { color: var(--text-light); }
.breadcrumbs__current { color: var(--text-muted); font-weight: 500; }

/* Section-prose (legal pages) */
.section-prose { padding: 2.5rem 0 3rem; }

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.section-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}

.section-card p, .section-card li {
  font-size: .9rem;
  color: var(--text-muted);
}

.section-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: .75rem 0;
}
.section-card ul li { margin-bottom: .35rem; }

.section-card a { color: var(--primary); text-decoration: underline; }
.section-card a:hover { color: var(--primary-hover); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .65rem .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-checkbox input { width: 16px; height: 16px; flex-shrink: 0; margin-top: .1rem; accent-color: var(--primary); }
.form-checkbox a { color: var(--primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: .5rem;
}

.contact-info h3 { font-size: 1rem; margin-bottom: .75rem; }
.contact-info p { font-size: .875rem; }
.contact-info a { color: var(--primary); }

/* ── Stars ──────────────────────────────────────────────────── */
.stars { color: var(--amber); }
.stars--sm { font-size: .78rem; }

/* ── Utilities ─────────────────────────────────────────────── */
.text-primary { color: var(--primary); }
.text-muted    { color: var(--text-muted); }
.font-display  { font-family: var(--font-display); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .listing-table { font-size: .82rem; }
  .listing-table thead th:nth-child(4),
  .listing-table tbody td:nth-child(4) { display: none; } /* hide stars on mobile */

  .casino-card__header { flex-wrap: wrap; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }

  .listing-table thead th:nth-child(3),
  .listing-table tbody td:nth-child(3) { display: none; } /* hide bonus text, keep CTA */

  .casino-card__actions { flex-direction: column; }
  .casino-card__actions .btn { width: 100%; text-align: center; }

  .hero__stats { gap: .5rem 1rem; }
  .hero__stat { font-size: .78rem; }

  .rg-banner { flex-direction: column; gap: .75rem; }
}

@media (max-width: 400px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.6rem; }
}