/* ============================================================
   KeinOASIS – main.css
   Design: Light + Indigo accent | Bricolage Grotesque + DM Sans
   ============================================================ */

/* ── 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=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Primary palette – Indigo */
  --primary:          #4338ca;
  --primary-hover:    #3730a3;
  --primary-dark:     #312e81;
  --primary-light:    #eef2ff;
  --primary-mid:      #c7d2fe;

  /* Backgrounds */
  --bg:               #f8f9ff;
  --bg-soft:          #f1f3fb;
  --bg-white:         #ffffff;
  --bg-dark:          #1e1b4b;

  /* Text */
  --text:             #0f0e2a;
  --text-muted:       #4b5270;
  --text-light:       #8b93b5;

  /* Borders */
  --border:           #dde1f0;
  --border-light:     #eef0f8;

  /* Semantic */
  --amber:            #d97706;
  --amber-light:      #fef3c7;
  --green:            #059669;
  --green-light:      #ecfdf5;
  --red:              #dc2626;
  --red-light:        #fef2f2;

  /* Typography */
  --font-display:     'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:        'DM Sans', system-ui, sans-serif;

  /* Sizing */
  --radius-sm:        5px;
  --radius:           10px;
  --radius-md:        14px;
  --radius-lg:        20px;
  --radius-xl:        28px;
  --max-w:            1200px;
  --max-w-content:    920px;
  --nav-h:            72px;

  /* Shadows */
  --shadow-sm:        0 1px 3px rgba(67,56,202,.08), 0 1px 2px rgba(67,56,202,.04);
  --shadow:           0 4px 16px rgba(67,56,202,.10), 0 1px 4px rgba(67,56,202,.06);
  --shadow-lg:        0 12px 40px rgba(67,56,202,.13), 0 2px 8px rgba(67,56,202,.07);
  --shadow-card:      0 2px 8px rgba(15,14,42,.06), 0 0 0 1px var(--border);

  /* Transitions */
  --t:                .18s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
ul, ol { list-style: none; }

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

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 3vw, 1.875rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

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-inline: auto;
  padding-inline: 1.25rem;
}

.container--content {
  max-width: var(--max-w-content);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(67,56,202,.3);
}
.btn--primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(67,56,202,.38);
}

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

.btn--lg {
  padding: .85rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn--sm {
  padding: .45rem .9rem;
  font-size: .82rem;
}

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.badge--indigo {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary-mid);
}

.badge--green {
  background: var(--green-light);
  color: var(--green);
}

.badge--amber {
  background: var(--amber-light);
  color: var(--amber);
}

/* ── Stars ────────────────────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--amber);
  font-size: .9rem;
}

.stars__score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  margin-left: .25rem;
}

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

.nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

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

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

.nav__link {
  display: inline-flex;
  align-items: center;
  padding: .45rem .8rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t), background var(--t);
}

.nav__link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav__link--active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

.nav__cta {
  margin-left: 1rem;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  margin-left: .75rem;
  transition: background var(--t);
}

.nav__burger:hover { background: var(--primary-light); }

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .25s ease, opacity .2s ease;
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-drawer__list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mobile-drawer__list a {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background var(--t), color var(--t);
}

.mobile-drawer__list a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ── ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__logo-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer__logo-text span { color: #818cf8; }

.footer__desc {
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

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

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

.footer__nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--t);
}

.footer__nav a:hover { color: #fff; }

.footer__rg {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.footer__rg-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin-bottom: .5rem;
}

.footer__rg-text {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin-bottom: .75rem;
}

.footer__rg a {
  font-size: .8rem;
  color: #818cf8;
  text-decoration: none;
}

.footer__rg a:hover { color: #a5b4fc; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer__affiliate {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  max-width: 560px;
  text-align: right;
  line-height: 1.5;
}

/* ── ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(160deg, var(--bg-white) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero__inner {
  max-width: var(--max-w-content);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.hero__badge {
  margin-bottom: 1.25rem;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.hero__stat-label {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── ============================================================
   TOP SECTION – Compact Listing
   ============================================================ */
.section-top {
  padding: 3rem 0;
}

.section-top .container {
  max-width: var(--max-w-content);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-bottom: .5rem;
}

.section-header p {
  font-size: .95rem;
}

/* ── Compact listing table ─────────────────────────────────── */
.listing {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.listing__row {
  display: grid;
  grid-template-columns: 48px 120px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t);
}

.listing__row:last-child { border-bottom: none; }
.listing__row:hover { background: var(--bg); }

/* Rank badge – diamond shape (signature element) */
.listing__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rank-diamond {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rank-diamond::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-light);
  border: 1.5px solid var(--primary-mid);
  border-radius: 5px;
  transform: rotate(45deg);
}

.rank-diamond span {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  color: var(--primary-dark);
  z-index: 1;
}

.rank-diamond--gold::before {
  background: var(--amber-light);
  border-color: #fcd34d;
}
.rank-diamond--gold span { color: #92400e; }

.rank-diamond--silver::before {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.rank-diamond--silver span { color: #475569; }

.rank-diamond--bronze::before {
  background: #fef3e2;
  border-color: #fed7aa;
}
.rank-diamond--bronze span { color: #9a3412; }

.listing__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  flex-shrink: 0;
}

.listing__logo img {
  max-width: 110px;
  max-height: 36px;
  object-fit: contain;
  filter: none;
  transition: opacity var(--t);
}

.listing__logo:hover img { opacity: .8; }

.listing__info {
  min-width: 0;
}

.listing__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing__bonus {
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing__stars {
  flex-shrink: 0;
}

.listing__cta {
  flex-shrink: 0;
}

/* ── Intro text ────────────────────────────────────────────── */
.section-intro {
  margin-bottom: 2.5rem;
}

.section-intro p {
  font-size: .97rem;
  line-height: 1.75;
}

/* ── ============================================================
   CASINO CARDS (detailed)
   ============================================================ */
.casino-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.casino-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t);
}

.casino-card:hover { box-shadow: var(--shadow); }

.casino-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg);
}

.casino-card__rank {
  flex-shrink: 0;
}

.casino-card__logo-wrap {
  flex-shrink: 0;
}

.casino-card__logo-wrap img {
  max-width: 130px;
  max-height: 44px;
  object-fit: contain;
}

.casino-card__meta {
  flex: 1;
  min-width: 0;
}

.casino-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: .25rem;
}

.casino-card__license {
  font-size: .78rem;
  color: var(--text-light);
}

.casino-card__rating {
  flex-shrink: 0;
  text-align: right;
}

.casino-card__screenshot-wrap {
  display: block;
  overflow: hidden;
  max-height: 220px;
  cursor: pointer;
  position: relative;
}

.casino-card__screenshot-wrap::after {
  content: '🔗 Zum Casino';
  position: absolute;
  inset: 0;
  background: rgba(67,56,202,.55);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}

.casino-card__screenshot-wrap:hover::after { opacity: 1; }

.casino-card__screenshot-wrap img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .35s ease;
}

.casino-card__screenshot-wrap:hover img { transform: scale(1.02); }

.casino-card__body {
  padding: 1.5rem;
}

.casino-card__bonus-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.casino-card__bonus-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.casino-card__bonus-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  flex: 1;
}

/* Bonus code copy */
.bonus-code {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg-white);
  border: 1.5px dashed var(--primary-mid);
  border-radius: var(--radius-sm);
  padding: .3rem .7rem;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  flex-shrink: 0;
}

.bonus-code:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.bonus-code__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--primary-dark);
  letter-spacing: .05em;
  user-select: all;
}

.bonus-code__icon {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.bonus-code__copied {
  font-size: .75rem;
  color: var(--green);
  font-weight: 600;
  display: none;
}

.bonus-code.is-copied .bonus-code__copied { display: inline; }
.bonus-code.is-copied .bonus-code__text { display: none; }
.bonus-code.is-copied .bonus-code__icon { display: none; }

.casino-card__text {
  font-size: .94rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.casino-card__text p { margin-bottom: .75rem; }
.casino-card__text p:last-child { margin-bottom: 0; }

.casino-card__text strong { color: var(--text); }

.casino-card__footer {
  display: flex;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg);
  flex-wrap: wrap;
}

/* ── ============================================================
   PROSE SECTIONS
   ============================================================ */
.section-prose {
  padding: 2.5rem 0;
}

.prose-toc {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.prose-toc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}

.prose-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.prose-toc ol li a {
  font-size: .88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t);
}

.prose-toc ol li a:hover { color: var(--primary); }

.prose-block {
  margin-bottom: 2.25rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.prose-block h2 {
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border-light);
}

.prose-block p {
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: .85rem;
}

.prose-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.prose-block ul li {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.prose-block ul li strong { color: var(--text); }

.prose-block ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.prose-block ol li {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── ============================================================
   COMPARISON TABLE
   ============================================================ */
.section-table {
  padding: 2rem 0 2.5rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  font-size: .88rem;
}

.comparison-table th {
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: .85rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.comparison-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }

.comparison-table td {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg); }

.comparison-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

.comparison-table .check {
  color: var(--green);
  font-weight: 700;
}

/* ── ============================================================
   FAQ
   ============================================================ */
.section-faq {
  padding: 2.5rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-item h3 {
  color: var(--text);
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.faq-item p {
  font-size: .95rem;
  line-height: 1.75;
}

/* ── ============================================================
   AUTHOR BLOCK
   ============================================================ */
.section-author {
  padding: 2rem 0 2.5rem;
}

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.author-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary-mid);
}

.author-card__avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid var(--primary-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

.author-card__body {}

.author-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .15rem;
}

.author-card__role {
  font-size: .8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: .75rem;
}

.author-card__bio {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── ============================================================
   RESPONSIBLE GAMBLING BANNER
   ============================================================ */
.rg-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.rg-banner__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.rg-banner__body { flex: 1; min-width: 200px; }

.rg-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: .3rem;
}

.rg-banner__text {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.rg-banner__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.25rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t);
  flex-shrink: 0;
}

.rg-banner__link:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* ── ============================================================
   SERVICE PAGES (kontakt, impressum etc.)
   ============================================================ */
.page-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(160deg, var(--bg-white) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-hero__badge { margin-bottom: 1rem; }

.page-hero h1 { margin-bottom: .5rem; }

.page-hero__lead {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: var(--text-light);
}

.breadcrumbs__item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t);
}

.breadcrumbs__item a:hover { color: var(--primary); }

.breadcrumbs__sep { color: var(--border); }

.breadcrumbs__item--current { color: var(--primary); font-weight: 500; }

/* Prose cards for service pages */
.service-prose {
  padding: 1.5rem 0 3rem;
}

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

.section-card h2 {
  font-size: 1.2rem;
  margin-bottom: .85rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border-light);
}

.section-card h3 {
  font-size: 1rem;
  margin: 1rem 0 .4rem;
}

.section-card p {
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: .75rem;
}

.section-card p:last-child { margin-bottom: 0; }

.section-card ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.section-card ul li {
  font-size: .92rem;
  color: var(--text-muted);
}

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

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

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

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

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67,56,202,.12);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

/* honeypot */
.form-honey { display: none !important; }

/* ── ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0 !important; }

.section-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}

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

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

  .listing__row {
    grid-template-columns: 36px 90px 1fr auto;
    gap: .6rem;
    padding: .75rem 1rem;
  }

  .listing__stars { display: none; }

  .casino-card__header {
    flex-wrap: wrap;
    gap: .75rem;
  }

  .casino-card__rating { display: none; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer__affiliate { text-align: left; }
  .footer__bottom { flex-direction: column; gap: .5rem; }

  .rg-banner { padding: 1.5rem; }

  .author-card { flex-direction: column; }

  .section-card { padding: 1.25rem; }

  .casino-card__footer { padding: 1rem; }

  .hero__stats { gap: 1rem 1.5rem; }

  .hero__stat-num { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .listing__row {
    grid-template-columns: 32px 1fr auto;
    padding: .7rem .85rem;
  }

  .listing__logo { display: none; }

  .casino-card__bonus-bar { flex-direction: column; align-items: flex-start; gap: .5rem; }

  .casino-card__footer { flex-direction: column; }
  .casino-card__footer .btn { width: 100%; justify-content: center; }

  .btn--lg { padding: .75rem 1.25rem; font-size: .95rem; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}