/* =====================================================================
   Casinos Ohne Oasis — main.css
   Light theme · Teal/Cyan accent · Fraunces (display) + DM Sans (body)
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Brand palette */
  --primary:        #0891b2;
  --primary-hover:  #0e7490;
  --primary-dark:   #155e75;
  --primary-light:  #ecfeff;
  --primary-50:     #f0fdff;

  /* Surface */
  --bg:             #ffffff;
  --bg-soft:        #f8fafc;
  --bg-tint:        #f1f9fb;

  /* Text */
  --text:           #0f172a;
  --text-muted:     #475569;
  --text-soft:      #64748b;

  /* Lines */
  --border:         #e2e8f0;
  --border-strong:  #cbd5e1;

  /* Signal */
  --amber:          #f59e0b;
  --amber-light:    #fef3c7;
  --red:            #dc2626;
  --red-light:      #fee2e2;
  --green:          #16a34a;

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

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

  /* Shadows */
  --shadow-sm:      0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
  --shadow:         0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-md:      0 10px 25px rgba(15,23,42,.08), 0 4px 10px rgba(15,23,42,.04);
  --shadow-primary: 0 8px 24px rgba(8,145,178,.22);

  /* Fonts */
  --font-display:   "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:      "DM Sans", system-ui, -apple-system, sans-serif;

  /* Transitions */
  --transition:     180ms cubic-bezier(.4, 0, .2, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--primary-hover); }

ul, ol { padding-left: 1.4rem; }
li + li { margin-top: .35rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 .6rem;
  letter-spacing: -.012em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.05rem); font-variation-settings: "opsz" 120, "SOFT" 50; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
h3 { font-size: clamp(1.18rem, 1.6vw, 1.35rem); }

p { margin: 0 0 1rem; color: var(--text); }
p strong { color: var(--text); font-weight: 600; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .container { padding: 0 16px; } }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}

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

.site-nav { display: flex; align-items: center; width: 100%; gap: 24px; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.nav__logo:hover { color: var(--text); }

.nav__logo-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-primary);
  letter-spacing: -.02em;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--primary); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px; height: 40px;
  cursor: pointer;
  align-items: center; justify-content: center;
  padding: 0;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition);
  position: relative;
}
.nav__burger span::before { position: absolute; top: -6px; left: 0; width: 18px; }
.nav__burger span::after  { position: absolute; top:  6px; left: 0; width: 18px; }

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

/* ---------- MOBILE DRAWER ---------- */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-110%);
  transition: transform 220ms ease;
  z-index: 99;
}
.mobile-drawer.is-open { transform: translateY(0); }

.mobile-drawer__list {
  list-style: none;
  margin: 0; padding: 12px 0;
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}
.mobile-drawer__list a {
  display: block;
  padding: 14px 24px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer__list li:last-child a { border-bottom: 0; }
.mobile-drawer__list a:hover { color: var(--primary); background: var(--primary-50); }

body { padding-top: var(--nav-h); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .96rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(8,145,178,.32);
}
.btn--ghost {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--ghost:hover { background: var(--primary-light); color: var(--primary-hover); }

.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--lg { padding: 15px 28px; font-size: 1.02rem; }

/* ---------- HERO ---------- */
.hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(700px 360px at 12% -10%, rgba(8,145,178,.10), transparent 60%),
    radial-gradient(560px 320px at 92% -20%, rgba(14,116,144,.08), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .82rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(8,145,178,.18);
  margin-bottom: 18px;
  letter-spacing: .01em;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 { margin-bottom: 14px; }

.hero__lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 0 26px;
}

.hero__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.hero__rail-item { display: flex; flex-direction: column; gap: 2px; }
.hero__rail-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--primary);
  font-variation-settings: "opsz" 36;
}
.hero__rail-lbl {
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .01em;
}

@media (max-width: 720px) {
  .hero { padding: 36px 0 28px; }
  .hero__rail { grid-template-columns: repeat(2, 1fr); padding: 14px 16px; }
}

/* ---------- SECTIONS ---------- */
section { padding: 56px 0; }
section + section { border-top: 1px solid var(--border); }
.section--soft { background: var(--bg-soft); }

.section__head { max-width: var(--max-w-content); margin: 0 auto 30px; }
.section__head h2 { margin-bottom: 8px; }
.section__head p { color: var(--text-muted); font-size: 1.04rem; }

@media (max-width: 720px) { section { padding: 40px 0; } }

/* ---------- TOP COMPACT LISTING ---------- */
.top-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 38px;
}
.top-list__row {
  display: grid;
  grid-template-columns: 48px 92px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.top-list__row:last-child { border-bottom: 0; }
.top-list__row:hover { background: var(--bg-tint); }

.top-list__rank {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  font-variation-settings: "opsz" 36;
}
.top-list__row:nth-child(1) .top-list__rank,
.top-list__row:nth-child(2) .top-list__rank,
.top-list__row:nth-child(3) .top-list__rank {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.top-list__logo {
  display: block;
  width: 88px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition);
}
.top-list__logo:hover { transform: scale(1.04); }
.top-list__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}

.top-list__info { min-width: 0; }
.top-list__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2px;
  font-variation-settings: "opsz" 36;
}
.top-list__bonus { font-size: .92rem; color: var(--text-muted); }

.top-list__stars { color: var(--amber); font-size: .98rem; letter-spacing: 1px; white-space: nowrap; }

@media (max-width: 760px) {
  .top-list__row {
    grid-template-columns: 36px 72px 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }
  .top-list__stars { display: none; }
  .top-list__logo { width: 70px; height: 46px; }
  .top-list__name { font-size: .98rem; }
  .top-list__bonus { font-size: .85rem; }
}
@media (max-width: 480px) {
  .top-list__row { grid-template-columns: 28px 56px 1fr; }
  .top-list__row .btn { grid-column: 1 / -1; justify-self: stretch; }
  .top-list__logo { width: 56px; height: 38px; }
}

/* ---------- DETAILED CARDS ---------- */
.casino-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.casino-card:hover { box-shadow: var(--shadow-md); }

.casino-card__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.casino-card__rank {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}
.casino-card__title { margin: 0 0 4px; font-size: 1.42rem; }
.casino-card__meta { color: var(--text-muted); font-size: .94rem; }

.casino-card__screenshot {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  background: var(--bg-soft);
  transition: transform var(--transition);
}
.casino-card__screenshot:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.casino-card__screenshot img { width: 100%; height: auto; display: block; }

.casino-card__body p { color: var(--text); line-height: 1.72; }
.casino-card__body p + p { margin-top: 8px; }

.casino-card__table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: .94rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.casino-card__table th,
.casino-card__table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.casino-card__table th {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24;
  width: 38%;
}
.casino-card__table tr:last-child th,
.casino-card__table tr:last-child td { border-bottom: 0; }

.casino-card__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

@media (max-width: 600px) {
  .casino-card { padding: 18px; }
  .casino-card__head { gap: 12px; }
  .casino-card__rank { width: 38px; height: 38px; font-size: 1rem; }
  .casino-card__title { font-size: 1.2rem; }
  .casino-card__table th { width: 44%; font-size: .86rem; }
  .casino-card__table td { font-size: .88rem; }
}

/* ---------- PROSE SECTIONS ---------- */
.prose { max-width: var(--max-w-content); margin: 0 auto; }
.prose h2 { margin-top: 36px; margin-bottom: 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 26px; margin-bottom: 10px; }
.prose p { font-size: 1.04rem; line-height: 1.75; }
.prose ul { margin: 0 0 1rem; padding-left: 1.6rem; }
.prose ul li { margin-bottom: .4rem; line-height: 1.65; }
.prose ul li::marker { color: var(--primary); }

/* ---------- COMPARISON TABLE ---------- */
.compare-table {
  width: 100%;
  max-width: var(--max-w-content);
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: .94rem;
}
.compare-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.compare-table th,
.compare-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .94rem;
  border-bottom: 0;
  font-variation-settings: "opsz" 24;
}
.compare-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 24;
  color: var(--text);
}

.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-wrap .compare-table { min-width: 720px; }

/* ---------- FAQ ---------- */
.faq { max-width: var(--max-w-content); margin: 0 auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.faq__item h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  color: var(--primary-dark);
}
.faq__item p { margin: 0; color: var(--text); }
.faq__item p + p { margin-top: 8px; }

/* ---------- RG (Responsible Gambling) banner ---------- */
.rg-banner {
  background: linear-gradient(135deg, #fff7ed 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: var(--max-w-content);
  margin: 0 auto;
}
.rg-banner__icon {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--red);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.rg-banner h3 { margin: 0 0 6px; color: var(--red); }
.rg-banner p { margin: 0; color: #7f1d1d; font-size: .96rem; }
.rg-banner a { color: var(--red); font-weight: 600; text-decoration: underline; }

/* ---------- PAGE HERO (legal/info pages) ---------- */
.page-hero {
  padding: 56px 0 36px;
  background:
    radial-gradient(640px 320px at 8% -10%, rgba(8,145,178,.10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .8rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(8,145,178,.18);
  margin-bottom: 14px;
}
.page-hero h1 { margin: 0 0 12px; }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 720px; margin: 0; }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  padding: 18px 0 0;
  font-size: .88rem;
  color: var(--text-muted);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before {
  content: '›';
  margin-right: 6px;
  color: var(--border-strong);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ---------- SECTION PROSE (legal pages) ---------- */
.section-prose { padding: 40px 0 64px; }
.section-prose .container { max-width: var(--max-w-content); }
.section-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.section-card h2 { font-size: 1.36rem; margin: 0 0 10px; color: var(--primary-dark); }
.section-card h3 { font-size: 1.08rem; margin: 18px 0 8px; }
.section-card p { margin: 0 0 .9rem; }
.section-card p:last-child { margin-bottom: 0; }
.section-card ul { margin: 4px 0 14px; padding-left: 1.4rem; }
.section-card ul li::marker { color: var(--primary); }

@media (max-width: 600px) {
  .section-card { padding: 18px 18px; }
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
  max-width: var(--max-w-content);
  margin: 0 auto;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.contact-form .field { margin-bottom: 14px; }
.contact-form label {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(8,145,178,.14);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .checkbox {
  display: flex; gap: 10px;
  align-items: flex-start;
  margin: 14px 0 18px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.contact-form .checkbox input { width: auto; margin-top: 3px; }

.contact-side h3 { margin: 0 0 8px; font-size: 1.15rem; }
.contact-side p { color: var(--text-muted); }
.contact-side a { font-weight: 500; }
.contact-side__card {
  background: var(--primary-light);
  border: 1px solid rgba(8,145,178,.18);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 14px;
}
.contact-side__card h3 { color: var(--primary-dark); }
.contact-side__card p { color: var(--text); margin: 0; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #f1f5f9;
  border-top: 1px solid var(--border);
  padding: 48px 0 22px;
  margin-top: 64px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 32px;
}
@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 14px;
  color: var(--text);
  font-variation-settings: "opsz" 24;
}
.site-footer p { color: var(--text-muted); font-size: .92rem; margin: 0 0 10px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin: 0 0 8px; }
.site-footer a { color: var(--text-muted); font-size: .92rem; }
.site-footer a:hover { color: var(--primary); }

.site-footer__brand .nav__logo { margin: 0 0 12px; pointer-events: none; }

.footer__age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 11px 4px 5px;
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
}
.footer__age::before {
  content: '18+';
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  padding: 3px 8px;
  border-radius: 999px;
}

.footer__rg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: .88rem;
}
.footer__rg-card strong { display: block; color: var(--text); margin-bottom: 4px; }
.footer__rg-card a { font-weight: 500; }

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: .86rem;
}
.site-footer__bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

.callout {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 18px 0;
  color: var(--primary-dark);
  font-size: .96rem;
}
.callout strong { color: var(--primary-dark); }

.warning {
  background: #fef3c7;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 18px 0;
  color: #7c2d12;
  font-size: .96rem;
}
