/* ============================================================
   Seren · 24-7.casino Empfehlung — Premium Dark / Gold
   Handgeschriebenes CSS. Keine Frameworks. Mobile-first.
   ============================================================ */

:root {
  /* Base */
  --bg:        #0A0A0B;
  --bg-2:      #111114;
  --bg-3:      #17171c;
  --card:      #131318;
  --card-hover:#191921;

  /* Accent — edles Gold */
  --gold:        #C9A96E;
  --gold-light:  #E3C9A0;
  --gold-deep:   #A8884E;
  --gold-grad:   linear-gradient(135deg, #E3C9A0 0%, #C9A96E 55%, #A8884E 100%);

  /* Secondary — gedämpftes Smaragd (sparsam, nur für „verifiziert") */
  --emerald:   #2Fae7e;

  /* Text */
  --text:       #F5F5F0;
  --text-muted: #9c988c;
  --text-dim: #8b8780; /* WCAG-AA */

  /* Lines */
  --border:        rgba(201, 169, 110, 0.16);
  --border-subtle: rgba(245, 245, 240, 0.08);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1080px;
  --radius: 16px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::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);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section { padding: 96px 0; border-top: 1px solid var(--border-subtle); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  max-width: 18ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  min-height: 52px;
  min-width: 44px;
}
.btn--primary {
  background: var(--gold-grad);
  color: #14110a;
  box-shadow: 0 8px 30px -10px rgba(201,169,110,0.5);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(201,169,110,0.65);
}
.btn--lg { font-size: 1.08rem; padding: 18px 38px; min-height: 60px; }
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-subtle);
}
.btn--ghost:hover { color: var(--text); border-color: var(--border); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10,10,11,0.6);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.header.is-scrolled {
  background: rgba(10,10,11,0.88);
  border-bottom-color: var(--border-subtle);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--gold-grad);
  color: #14110a;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

/* Language switch */
.lang { display: inline-flex; gap: 2px; background: var(--bg-3); border: 1px solid var(--border-subtle); border-radius: 999px; padding: 3px; }
.lang__btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.lang__btn:hover { color: var(--text); }
.lang__btn.is-active { color: #14110a; background: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(90px, 17vh, 170px) 0 clamp(80px, 13vh, 130px);
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201,169,110,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(47,174,126,0.06), transparent 55%),
    linear-gradient(180deg, #0c0c10 0%, var(--bg) 70%);
  z-index: -1;
}
/* sehr langsamer, dezent fließender Verlauf */
.hero__bg::after {
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,110,0.10), transparent 45%);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate(-6%, -4%) scale(1); }
  100% { transform: translate(8%, 6%) scale(1.15); }
}
.hero__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 auto 26px;
}
.hero__sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 52ch;
  margin: 0 auto 30px;
}
.hero__bonus {
  display: inline-flex;
  align-items: center;
  margin: 0 auto 34px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.07);
  font-size: 0.92rem;
  color: var(--text);
}
.hero__bonus::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  flex: none;
}
.hero__cta { margin-bottom: 18px; }
.hero__fineprint, .final__fineprint {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.hero__footnote {
  margin: 18px auto 0;
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 46ch;
}

/* ---------- Card base ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}

/* ---------- About ---------- */
.about__inner {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.about__avatar {
  flex: 0 0 auto;
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #14110a;
  background: var(--gold-grad);
  box-shadow: 0 10px 30px -12px rgba(201,169,110,0.6);
}
.about__body { flex: 1 1 320px; }
.about__text {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.55;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
}

/* ---------- Why grid ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.why__card:hover { transform: translateY(-4px); border-color: var(--border); background: var(--card-hover); }
.why__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 18px;
}
.why__icon svg { width: 100%; height: 100%; }
.why__head { font-size: 1.12rem; margin-bottom: 8px; font-weight: 600; }
.why__text { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Games / categories ---------- */
.games__cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}
.cat { position: relative; overflow: hidden; }
.cat:hover { transform: translateY(-4px); border-color: var(--border); }
.cat__head {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.cat__text { color: var(--text-muted); font-size: 0.96rem; }

.games__providers-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 26px;
}

/* Provider marquee */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__logo {
  height: 26px;
  width: 78px;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.6);
  transition: opacity .3s;
}
.marquee__logo:hover { opacity: 1; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Bonus ---------- */
.bonus__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(201,169,110,0.10), transparent 70%),
    var(--card);
  border-color: var(--border);
}
.bonus__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.bonus__text { color: var(--text-muted); max-width: 46ch; margin: 0 auto 26px; }
.bonus__terms {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 0 auto 32px;
}
.bonus__terms li {
  position: relative;
  padding-left: 28px;
  font-size: 0.96rem;
  color: var(--text);
}
.bonus__terms li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--emerald);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2 18.5 6.7z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2 18.5 6.7z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bonus__honest {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ---------- Proof ---------- */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote { display: flex; flex-direction: column; gap: 18px; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--text);
}
.quote figcaption { color: var(--gold); font-size: 0.86rem; font-weight: 600; }
.proof__note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ---------- Steps ---------- */
.steps__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.steps__item {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 30px;
}
.steps__num {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.steps__head { font-size: 1.1rem; margin-bottom: 8px; }
.steps__text { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 760px; }
.faq__item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 4px 0;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  position: relative;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:hover { color: var(--gold-light); }
.faq__item p {
  color: var(--text-muted);
  padding: 0 40px 24px 0;
  font-size: 0.98rem;
  max-width: 64ch;
}

/* ---------- Final CTA ---------- */
.final { text-align: center; border-top: 1px solid var(--border-subtle); }
.final__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.final__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3rem);
  letter-spacing: -0.01em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 120px;
  font-size: 0.86rem;
  color: var(--text-dim);
}
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.footer__brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.badge18 {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
}
.footer p { margin-bottom: 14px; max-width: 80ch; }
.footer__disclaimer { color: var(--text-muted); }
.footer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover { color: var(--gold-light); }
.linklike {
  background: none; border: none; cursor: pointer;
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
  font: inherit; padding: 0;
}
.footer__license, .footer__imprint { color: var(--text-dim); font-size: 0.8rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  text-align: center;
  background: var(--gold-grad);
  color: #14110a;
  font-weight: 600;
  padding: 16px;
  border-radius: 999px;
  box-shadow: 0 12px 34px -8px rgba(0,0,0,0.7);
  min-height: 54px;
}

/* ---------- Age gate ---------- */
.age-gate, .modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(8px);
}
.age-gate[hidden], .modal[hidden] { display: none; }
.age-gate__card, .modal__card {
  max-width: 440px;
  width: 100%;
  text-align: center;
  padding: 44px 34px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.age-gate__badge {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.age-gate__title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin-bottom: 14px; }
.age-gate__text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 28px; }
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.age-gate__note { font-size: 0.78rem; color: var(--text-dim); }

/* ---------- Modal ---------- */
.modal__card { text-align: left; max-width: 520px; }
.modal__close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.8rem; line-height: 1; cursor: pointer;
}
.modal__close:hover { color: var(--text); }
.modal__title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin-bottom: 16px; }
.modal__card p { color: var(--text-muted); margin-bottom: 18px; }
.resp__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.resp__links a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Skip to content link (a11y) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--gold);
  color: #14110a;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top .25s var(--ease);
}
.skip-link:focus {
  top: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .why__grid, .games__cats { grid-template-columns: 1fr 1fr; }
  .proof__grid, .steps__list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 44px 0 60px; }
  .hero__bonus { font-size: 0.85rem; padding: 8px 14px; margin-bottom: 28px; }
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .why__grid, .games__cats { grid-template-columns: 1fr; }
  .about__inner { flex-direction: column; text-align: center; gap: 24px; }
  .header__nav .lang__btn { padding: 6px 9px; }
  .sticky-cta { display: block; }
  .footer { padding-bottom: 110px; }
  .bonus__card { padding: 36px 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   v2 ADDITIONS — Brand wordmark, header CTA, trust bar, VIP, security
   ============================================================ */

/* Brand mark now holds "24/7" instead of a single letter */
.brand__mark {
  width: auto;
  min-width: 32px;
  height: 30px;
  padding: 0 9px;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.footer__brand .brand__mark { color: #14110a; }

/* Header CTA + small button */
.btn--sm { min-height: 40px; padding: 9px 18px; font-size: 0.9rem; }
.header__nav { display: flex; align-items: center; gap: 16px; }
.header__cta { display: none; }
@media (min-width: 720px) { .header__cta { display: inline-flex; } }

/* Trust bar under hero */
.trustbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 36px;
}
.trustbar__item {
  font-size: 0.82rem;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.02);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}
.trustbar__item::before {
  content: "✓";
  color: var(--gold);
  margin-right: 7px;
  font-size: 0.78rem;
}

/* VIP section */
.vip__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.vip {
  background:
    radial-gradient(ellipse 60% 90% at 100% 0%, rgba(201,169,110,0.08), transparent 60%),
    var(--bg-2);
}
.vip__text { color: var(--text-muted); font-size: 1.05rem; max-width: 46ch; }
.vip__list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.vip__item {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.05rem; font-weight: 500;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}
.vip__dot {
  flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.12);
}

/* Security grid */
.sec__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sec__card:hover { transform: translateY(-4px); border-color: var(--border); }
.sec__icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 16px; }
.sec__icon svg { width: 100%; height: 100%; }
.sec__head { font-size: 1.08rem; margin-bottom: 8px; font-weight: 600; }
.sec__text { color: var(--text-muted); font-size: 0.95rem; }

/* Footer eligibility line */
.footer__eligibility { color: var(--text-muted); font-size: 0.82rem; }

@media (max-width: 860px) {
  .vip__inner { grid-template-columns: 1fr; gap: 28px; }
  .sec__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v3 ADDITIONS — VIP CTA + zweispaltiger Footer mit Lizenzsiegel
   ============================================================ */
.vip__cta { margin-top: 30px; }

/* Footer two-column layout */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: start;
}
.footer__main .footer__brand { margin-bottom: 22px; }
.footer__main p { margin-bottom: 14px; max-width: 78ch; }

.footer__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 4px;
}
.footer__seal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  transition: border-color .3s, transform .3s var(--ease);
}
.footer__seal:hover { border-color: var(--border); transform: translateY(-2px); }
.footer__seal img { width: 90px; height: auto; opacity: 0.92; }
.footer__seal-cap {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__aside { flex-direction: row; justify-content: flex-start; align-items: center; gap: 24px; }
}

/* ============================================================
   v4 — Accessibility: sichtbare Fokus-Ringe (Tastatur-Navigation)
   ============================================================ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible { outline-offset: 4px; }
.lang__btn:focus-visible,
.faq__item summary:focus-visible,
.linklike:focus-visible,
.footer__seal:focus-visible,
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.faq__item summary:focus { outline: none; }
.faq__item summary:focus-visible { outline: 2px solid var(--gold); }

/* ============================================================
   v5 — Produkt-Blick (Browser-Mockup) + Community-Sektion
   ============================================================ */
.showcase { padding: 0 0 8px; margin-top: -40px; }
.browser {
  max-width: 940px; margin: 0 auto;
  border: 1px solid var(--border-subtle);
  border-radius: 14px; overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,169,110,0.06);
}
.browser__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border-subtle);
}
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #2a2a32; }
.browser__url {
  margin-left: 14px; font-size: 0.8rem; color: var(--text-dim);
  background: var(--bg); padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--border-subtle);
}
.browser__view {
  position: relative; aspect-ratio: 1200 / 600; background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,169,110,0.14), transparent 60%), #0c0c10;
}
.browser__view img { width: 100%; height: 100%; object-fit: cover; display: block; }
.browser__view.is-fallback::after {
  content: "24/7 Casino"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: clamp(1.4rem,4vw,2.4rem);
  color: var(--gold);
}

/* Community */
.community__text { color: var(--text-muted); max-width: 60ch; margin: -20px 0 36px; font-size: 1.02rem; }
.community__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.comm__card { display: flex; flex-direction: column; gap: 10px; color: inherit; }
.comm__card:hover { transform: translateY(-4px); border-color: var(--border); background: var(--card-hover); }
.comm__icon { width: 34px; height: 34px; color: var(--gold); }
.comm__icon svg { width: 100%; height: 100%; }
.comm__head { font-size: 1.05rem; font-weight: 600; }
.comm__text { color: var(--text-muted); font-size: 0.95rem; }
.community__note { margin-top: 26px; font-size: 0.84rem; color: var(--text-dim); }

/* Footer legal links */
.footer__legal { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 760px) { .community__grid { grid-template-columns: 1fr; } .showcase { margin-top: 0; } }

/* ============================================================
   v6 — Rechtsseiten (Impressum / Datenschutz)
   ============================================================ */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 0 96px; }
.legal__back { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.9rem; margin-bottom: 32px; text-decoration: none; }
.legal__back:hover { color: var(--gold-light); }
.legal h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem,5vw,2.8rem); margin-bottom: 10px; letter-spacing: -0.01em; }
.legal__lead { color: var(--text-muted); margin-bottom: 40px; }
.legal h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--text-muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal__note { margin-top: 44px; padding: 18px 20px; border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); background: var(--bg-2); font-size: 0.88rem; color: var(--text-dim); }
.legal__ph { color: var(--gold-light); }

/* ============================================================
   v7 — Casino-Vergleichsliste (Multi-Affiliate-Ranking)
   ============================================================ */
.casinos__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.ccard {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.ccard:hover { border-color: var(--border); transform: translateY(-2px); }
.ccard--featured {
  border-color: var(--border);
  background:
    radial-gradient(ellipse 70% 120% at 0% 0%, rgba(201,169,110,0.10), transparent 60%),
    var(--card);
}
.ccard__rank {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  width: 30px;
  text-align: center;
}
.ccard__main { flex: 1 1 230px; min-width: 0; }
.ccard__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ccard__bonus { color: var(--text-muted); font-size: 0.95rem; margin-top: 5px; }
.ccard__bonus strong { color: var(--text); font-weight: 600; }
.ccard__facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  flex: 1 1 230px;
}
.ccard__facts li { display: flex; flex-direction: column; gap: 2px; }
.ccard__facts span { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dim); }
.ccard__facts strong { color: var(--text); font-size: 0.92rem; font-weight: 600; }
.ccard__cta { flex: 0 0 auto; }
.ccard__badge {
  position: absolute;
  top: -11px;
  left: 22px;
  background: var(--gold-grad);
  color: #14110a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.ccard__logo {
  display: inline-grid;
  place-items: center;
  height: 30px;
  min-width: 34px;
  padding: 0 9px;
  border-radius: 9px;
  background: var(--gold-grad);
  color: #14110a;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
.ccard--placeholder { border-style: dashed; background: var(--bg-2); }
.ccard--placeholder .ccard__logo { background: var(--bg-3); color: var(--text-dim); }
.ccard--placeholder .ccard__name { color: var(--text-muted); }
.ccard__hint { flex-basis: 100%; font-size: 0.8rem; color: var(--gold); }
.btn--disabled { pointer-events: none; opacity: 0.55; }
.casinos__note {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 70ch;
}

@media (max-width: 720px) {
  .ccard { gap: 12px 18px; padding: 22px 20px 24px; }
  .ccard__rank { width: auto; font-size: 1.25rem; }
  .ccard__cta, .ccard__cta .btn { width: 100%; }
}

/* ============================================================
   v8 — Header-Nav, #1-Hervorhebung, Highlight-Chips, Desire-Politur
   ============================================================ */
/* Anker-Sprünge nicht unter den Sticky-Header rutschen lassen */
html { scroll-padding-top: 84px; }

/* Header-Navigationslinks (nur Desktop) */
.header__link {
  display: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.header__link:hover { color: var(--gold-light); }
@media (min-width: 880px) { .header__link { display: inline-block; } }

/* Intro-Satz im Vergleich */
.casinos__lead {
  margin: -24px 0 32px;
  max-width: 60ch;
  font-size: 1.02rem;
  color: var(--text-muted);
}

/* Highlight-Chip pro Casino (Differenzierung + Klicklust) */
.ccard__tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 11px;
}

/* Bonus = der Haken: in Gold hervorheben */
.ccard__bonus strong { color: var(--gold-light); font-weight: 700; font-size: 1.04rem; }

/* #1-Karte klarer hervorheben */
.ccard--featured {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.22), 0 24px 60px -34px rgba(201, 169, 110, 0.45);
  background:
    radial-gradient(ellipse 90% 140% at 0% 0%, rgba(201, 169, 110, 0.14), transparent 62%),
    var(--card);
}
.ccard--featured .ccard__rank { font-size: 1.8rem; color: var(--gold-light); }

/* „Heißer" Trust-Chip (Sportwetten/WM) dezent betonen */
.trustbar__item--hot {
  border-color: var(--border);
  background: rgba(201, 169, 110, 0.10);
  color: var(--text);
}
