/* AlfCasino DE — global styles */
:root {
  --c-primary: #4A1D6E;
  --c-primary-dark: #1F0A3D;
  --c-purple: #6B2D9F;
  --c-magenta: #D62A8E;
  --c-green: #1FBE5A;
  --c-green-light: #3CE475;
  --c-green-dark: #0E7032;
  --c-gold: #FFC93D;
  --c-orange: #FF7A3D;
  --c-orange-hover: #E8632A;
  --c-cream: #F5EEFB;
  --c-bg: #F9F5FC;
  --c-white: #ffffff;
  --c-text: #1F0A3D;
  --c-muted: #6B5B7A;
  --c-border: #E5DCED;
  --c-success: #1FBE5A;
  --c-warn: #E09F3E;
  --c-danger: #C9442C;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(31,10,61,.08);
  --shadow-md: 0 8px 24px rgba(31,10,61,.14);
  --shadow-lg: 0 20px 60px rgba(31,10,61,.22);
  --ff: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --ff-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--c-orange); }

h1,h2,h3,h4 { font-family: var(--ff-display); color: var(--c-primary-dark); line-height: 1.25; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(2rem, 3.4vw, 3rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.55rem, 2.3vw, 2.1rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1.2em; }
li { margin-bottom: .4em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--dark { background: var(--c-primary-dark); color: #d8e5dd; }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--c-white); }
.section--cream { background: var(--c-cream); }
.section--green { background: var(--c-primary); color: #e6efea; }
.section--green h2,.section--green h3 { color: var(--c-white); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, #3CE475 0%, #1FBE5A 55%, #169A47 100%);
  color: #fff !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.45),
    inset 0 -3px 0 rgba(0,0,0,.18),
    0 0 0 2px #6B2D9F,
    0 0 0 4px rgba(214,42,142,.35),
    0 8px 22px rgba(75,29,110,.55);
  font-size: 1rem;
}
.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.5),
    inset 0 -3px 0 rgba(0,0,0,.18),
    0 0 0 2px #6B2D9F,
    0 0 0 4px rgba(214,42,142,.55),
    0 12px 30px rgba(75,29,110,.7);
}
.btn:active { transform: translateY(1px); filter: brightness(.95); }
.btn--lg { padding: 18px 36px; font-size: 1.1rem; border-radius: 16px; }
.btn--gold {
  background: linear-gradient(180deg, #FFD66A 0%, #FFC93D 55%, #E2A60D 100%);
  color: #1F0A3D !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.6),
    inset 0 -3px 0 rgba(120,70,0,.25),
    0 0 0 2px #6B2D9F,
    0 0 0 4px rgba(214,42,142,.35),
    0 8px 22px rgba(75,29,110,.5);
}
.btn--gold:hover { filter: brightness(1.06); }
.btn--orange {
  background: linear-gradient(180deg, #FF9B5C 0%, #FF7A3D 55%, #D85A1E 100%);
}
.btn--orange:hover { filter: brightness(1.08); }
.btn--ghost {
  background: transparent; color: var(--c-white) !important;
  border: 2px solid rgba(255,255,255,.45);
  box-shadow: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; filter: none; }

/* HEADER */
.site-header {
  background: var(--c-primary-dark);
  color: #fff;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 2px solid var(--c-gold);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.site-logo { display: flex; align-items: center; text-decoration: none; }
.site-logo img { height: 64px; width: auto; }
@media (max-width: 980px) { .site-logo img { height: 52px; } }

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  color: #d8e5dd;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--c-gold); border-bottom-color: var(--c-gold); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 10px 18px; font-size: 0.95rem; }

.mobile-menu-btn {
  display: none; background: transparent; border: 2px solid rgba(255,255,255,.3);
  color: #fff; padding: 8px 12px; border-radius: 6px; cursor: pointer; font-size: 1.2rem;
}
.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--c-primary-dark); flex-direction: column; gap: 0; padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .mobile-menu-btn { display: inline-flex; }
  .header-cta .btn { display: none; }
  .mobile-cta { display: inline-flex !important; padding: 10px 16px; font-size: 0.9rem; }
}

/* HERO (main banner + left text overlay, used on all pages) */
.hero {
  background-color: var(--c-primary-dark);
  background-image:
    linear-gradient(90deg, rgba(26,10,46,.92) 0%, rgba(26,10,46,.78) 35%, rgba(26,10,46,.35) 65%, rgba(26,10,46,.15) 100%),
    url("/images/hero-main.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: ""; position: absolute; top: -50px; right: -50px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,214,10,.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 640px; }
.hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.hero h1 span { color: var(--c-gold); }
.hero p.lead { font-size: 1.15rem; color: #e6efea; margin-bottom: 24px; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.hero__badges { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.hero__badge { background: rgba(26,10,46,.55); padding: 8px 14px; border-radius: 999px; font-size: .9rem; border: 1px solid rgba(255,214,10,.35); backdrop-filter: blur(4px); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero__image { display: none; }

@media (max-width: 880px) {
  .hero { padding: 56px 0 64px; min-height: 380px; }
  .hero {
    background-image:
      linear-gradient(180deg, rgba(26,10,46,.85) 0%, rgba(26,10,46,.75) 60%, rgba(26,10,46,.55) 100%),
      url("/images/hero-main.webp");
  }
}

/* FOOTER */
.site-footer { background: var(--c-primary-dark); color: #aab8b1; padding: 56px 0 24px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid a { color: #aab8b1; text-decoration: none; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--c-gold); }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 20px; font-size: 0.85rem; color: #7f8e87; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom .age-warn { background: var(--c-orange); color: #fff; padding: 4px 10px; border-radius: 4px; font-weight: 700; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Sticky bonus banner */
.sticky-bonus {
  position: fixed; bottom: 18px; right: 18px;
  width: 260px; height: 260px;
  background: linear-gradient(135deg, var(--c-orange) 0%, #c43512 100%);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 100;
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  background-image: url("/images/banner-bonus.webp");
  background-size: cover; background-position: center;
  transition: transform .45s cubic-bezier(.2,.9,.25,1.2), opacity .35s ease;
  opacity: 0;
  transform: translateY(40px) scale(.92);
  pointer-events: none;
}
.sticky-bonus.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-bonus::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,10,46,.1) 0%, rgba(26,10,46,.85) 100%);
}
.sticky-bonus__content { position: relative; z-index: 1; }
.sticky-bonus__title { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; color: var(--c-gold); line-height: 1.15; }
.sticky-bonus__text { font-size: .85rem; margin-bottom: 12px; opacity: .92; }
.sticky-bonus__cta {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(180deg, #3CE475 0%, #1FBE5A 55%, #169A47 100%);
  color: #fff; text-decoration: none;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.45),
    inset 0 -3px 0 rgba(0,0,0,.18),
    0 0 0 2px #6B2D9F,
    0 0 0 4px rgba(214,42,142,.35),
    0 6px 18px rgba(75,29,110,.55);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.sticky-bonus__cta:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.5),
    inset 0 -3px 0 rgba(0,0,0,.18),
    0 0 0 2px #6B2D9F,
    0 0 0 4px rgba(214,42,142,.55),
    0 10px 24px rgba(75,29,110,.7);
}
.sticky-bonus__cta:active { transform: translateY(1px); filter: brightness(.95); }
.sticky-bonus__close {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff;
  border: none; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
}
.sticky-bonus.is-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }

@media (max-width: 480px) {
  .sticky-bonus { width: 200px; height: 200px; bottom: 12px; right: 12px; padding: 14px; }
  .sticky-bonus__title { font-size: 1.15rem; }
}

/* Common content blocks */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff; padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}
.card h3 { margin-top: 0; }

/* FAQ */
.faq { max-width: 920px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__q {
  width: 100%; padding: 18px 22px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  font-weight: 600; font-size: 1.05rem; color: var(--c-primary-dark);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-display);
}
.faq__q::after {
  content: "+"; font-size: 1.5rem; color: var(--c-orange);
  transition: transform .25s ease;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 22px; }
.faq__item.is-open .faq__a { max-height: 600px; padding: 0 22px 20px; }
.faq__a p { margin: 0 0 .6em; color: var(--c-muted); }

/* Author block */
.author-block {
  background: var(--c-cream);
  padding: 36px;
  border-radius: var(--radius);
  display: grid; grid-template-columns: 140px 1fr; gap: 28px;
  align-items: center;
  border-left: 4px solid var(--c-gold);
  margin: 40px 0;
}
.author-block__photo img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-md); }
.author-block__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; margin: 0 0 6px; }
.author-block__name a { color: var(--c-primary-dark); text-decoration: none; border-bottom: 2px solid var(--c-gold); }
.author-block__name a:hover { color: var(--c-orange); border-color: var(--c-orange); }
.author-block__role { color: var(--c-muted); font-size: .92rem; margin-bottom: 10px; display: block; }
.author-block__bio { margin: 0; font-size: .96rem; line-height: 1.65; }
@media (max-width: 600px) {
  .author-block { grid-template-columns: 1fr; text-align: center; padding: 28px 20px; }
  .author-block__photo img { margin: 0 auto; width: 110px; height: 110px; }
}

/* Tables */
.table-wrap { overflow-x: auto; margin: 24px 0; }
table.alf-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); font-size: 0.95rem;
}
table.alf-table th, table.alf-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--c-border); }
table.alf-table td { color: var(--c-text); }
table.alf-table th { background: var(--c-primary); color: #fff; font-weight: 600; font-family: var(--ff-display); }
table.alf-table tr:last-child td { border-bottom: none; }
table.alf-table tr:hover td { background: #fafdfb; }
table.alf-table td.num { font-weight: 700; color: var(--c-primary); }

/* Rating stars */
.stars { color: var(--c-gold); font-size: 1.1rem; letter-spacing: 2px; }

/* Pros/cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-cons__col { padding: 24px; border-radius: var(--radius); }
.pros-cons__col--pros { background: #E8F8EE; border-left: 4px solid var(--c-green-dark); }
.pros-cons__col--cons { background: #FDEBEC; border-left: 4px solid var(--c-danger); }
.pros-cons h4 { display: flex; align-items: center; gap: 8px; margin-top: 0; }
.pros-cons ul { list-style: none; padding: 0; }
.pros-cons li { padding-left: 28px; position: relative; margin-bottom: 8px; font-size: .96rem; }
.pros-cons__col--pros li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--c-green-dark); font-weight: 700; font-size: 1.1rem; }
.pros-cons__col--cons li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--c-danger); font-weight: 700; }
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }

/* Page hero (main banner background + left-aligned text overlay) */
.page-hero {
  background-color: var(--c-primary-dark);
  background-image:
    linear-gradient(90deg, rgba(26,10,46,.92) 0%, rgba(26,10,46,.78) 35%, rgba(26,10,46,.35) 65%, rgba(26,10,46,.15) 100%),
    url("/images/hero-main.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 72px 0 72px;
  position: relative;
}
.page-hero .container { position: relative; z-index: 1; max-width: var(--maxw); }
.page-hero > .container > * { max-width: 720px; }
.page-hero h1 { color: #fff; margin: 0 0 12px; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.page-hero h1 span { color: var(--c-gold); }
.page-hero p { color: #e6efea; max-width: 720px; font-size: 1.1rem; margin: 0; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.breadcrumbs { font-size: .9rem; color: #d6e0db; margin-bottom: 18px; }
.breadcrumbs a { color: var(--c-gold); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

@media (max-width: 880px) {
  .page-hero {
    background-image:
      linear-gradient(180deg, rgba(26,10,46,.85) 0%, rgba(26,10,46,.7) 100%),
      url("/images/hero-main.webp");
  }
}

/* Per-page banner (under page-hero, image + left text + CTA) */
.page-banner {
  position: relative;
  min-height: 360px;
  background-color: var(--c-primary-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--c-gold);
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,10,46,.88) 0%, rgba(26,10,46,.72) 38%, rgba(26,10,46,.25) 68%, rgba(26,10,46,.05) 100%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner__inner { max-width: 560px; padding: 32px 0; }
.page-banner__eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(26,10,46,.55);
  border: 1px solid rgba(255,214,10,.4);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.page-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.page-banner__title span { color: var(--c-gold); }
.page-banner__text {
  font-size: 1.05rem;
  color: #e6efea;
  margin: 0 0 22px;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
  max-width: 520px;
}
.page-banner__cta { display: inline-flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .page-banner { min-height: 300px; }
  .page-banner::before {
    background: linear-gradient(180deg, rgba(26,10,46,.78) 0%, rgba(26,10,46,.65) 60%, rgba(26,10,46,.45) 100%);
  }
  .page-banner__inner { padding: 28px 0; }
}

/* Misc utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--c-muted); }
.lead { font-size: 1.15rem; color: var(--c-muted); }

/* Chart-like blocks (CSS-only) */
.bar-chart { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.bar-chart__row { display: grid; grid-template-columns: 160px 1fr 60px; gap: 14px; align-items: center; }
.bar-chart__label { font-weight: 600; font-size: .95rem; }
.bar-chart__track { background: #e5ebe8; border-radius: 999px; height: 14px; overflow: hidden; }
.bar-chart__fill { height: 100%; background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-gold) 100%); border-radius: 999px; transition: width .8s ease; }
.bar-chart__value { font-weight: 700; color: var(--c-primary); text-align: right; }

/* Donut (CSS conic-gradient) */
.donut-wrap { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: center; }
.donut {
  width: 220px; height: 220px; border-radius: 50%;
  background: conic-gradient(var(--c-primary) 0% 45%, var(--c-gold) 45% 75%, var(--c-orange) 75% 92%, var(--c-magenta) 92% 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.donut::after { content: ""; width: 130px; height: 130px; background: #fff; border-radius: 50%; }
.donut__center { position: absolute; z-index: 1; text-align: center; }
.donut__center b { display: block; font-size: 1.5rem; color: var(--c-primary-dark); font-family: var(--ff-display); }
.donut__center span { color: var(--c-muted); font-size: .9rem; }
.donut-legend { list-style: none; padding: 0; margin: 0; }
.donut-legend li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .95rem; }
.donut-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; margin: 32px 0; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 4px; bottom: 4px; width: 2px; background: var(--c-gold); }
.timeline__step { position: relative; margin-bottom: 28px; }
.timeline__step::before {
  content: ""; position: absolute; left: -32px; top: 4px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-primary); border: 3px solid var(--c-gold);
}
.timeline__step h3, .timeline__step h4 { margin: 0 0 4px; color: var(--c-primary-dark); font-size: 1.05rem; }
.timeline__step p { color: var(--c-muted); margin: 0; }

/* Stat cards (homepage) */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 32px 0; }
.stat-card {
  background: #fff; padding: 24px 20px;
  border-radius: var(--radius); text-align: center;
  border-top: 4px solid var(--c-gold);
  box-shadow: var(--shadow-sm);
}
.stat-card__num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; color: var(--c-primary); line-height: 1; margin-bottom: 6px; }
.stat-card__label { color: var(--c-muted); font-size: .92rem; }
@media (max-width: 700px) { .stat-grid { grid-template-columns: 1fr 1fr; } }

/* Slot grid */
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.slot-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-border);
  display: flex; flex-direction: column;
}
.slot-card img { aspect-ratio: 4/3; object-fit: cover; }
.slot-card__body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.slot-card__title { font-family: var(--ff-display); font-weight: 700; margin: 0 0 4px; font-size: 1.1rem; }
.slot-card__meta { color: var(--c-muted); font-size: .88rem; margin-bottom: 12px; }
.slot-card__stats { display: flex; gap: 14px; font-size: .85rem; color: var(--c-primary); font-weight: 600; margin-top: auto; }
.slot-card__stats b { color: var(--c-primary-dark); }
.slot-card .btn { margin-top: 14px; padding: 11px 22px; font-size: .92rem; border-radius: 12px; align-self: stretch; }
@media (max-width: 880px) { .slot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .slot-grid { grid-template-columns: 1fr; } }

/* Bonus cards (different vibe) */
.bonus-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.bonus-card {
  background: linear-gradient(135deg, #fff 0%, var(--c-cream) 100%);
  border-radius: var(--radius); padding: 28px;
  border: 2px solid var(--c-gold);
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.bonus-card__tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--c-orange); color: #fff;
  padding: 4px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; text-transform: uppercase;
}
.bonus-card h3 { margin: 0; }
.bonus-card__amount { font-family: var(--ff-display); font-size: 2.2rem; color: var(--c-orange); font-weight: 700; line-height: 1; }
.bonus-card__terms { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.bonus-card__terms li { padding: 6px 0; border-top: 1px dashed var(--c-border); display: flex; justify-content: space-between; }
.bonus-card__terms li:first-child { border-top: none; }
.bonus-card__terms b { color: var(--c-primary-dark); }
@media (max-width: 700px) { .bonus-cards { grid-template-columns: 1fr; } }

/* Device showcase (mobile-app) */
.device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: end; }
.device-card {
  background: var(--c-primary-dark);
  padding: 20px; border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(255,214,10,.25);
}
.device-card img { border-radius: 12px; margin: 0 auto 12px; box-shadow: 0 12px 28px rgba(0,0,0,.4); }
.device-card h4 { color: #fff; margin: 0 0 4px; }
.device-card p { color: #aab8b1; font-size: .9rem; margin: 0; }
@media (max-width: 780px) { .device-grid { grid-template-columns: 1fr; } }

/* Provider strip */
.provider-strip { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; align-items: center; padding: 30px 0; opacity: .85; }
.provider-strip img { max-height: 36px; width: auto; filter: grayscale(.2); transition: filter .2s; }
.provider-strip img:hover { filter: none; }

/* Cookie / responsible info row */
.warn-row { background: #FFF8E1; border: 1px solid #FFE082; padding: 16px 22px; border-radius: var(--radius-sm); color: #5D4037; font-size: .92rem; }
.warn-row strong { color: var(--c-primary-dark); }

/* Stacked steps (registration page) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: stepcount; }
.step-card {
  background: #fff; padding: 28px 24px; border-radius: var(--radius);
  border-top: 4px solid var(--c-primary); box-shadow: var(--shadow-sm);
  position: relative;
}
.step-card::before {
  counter-increment: stepcount;
  content: counter(stepcount);
  position: absolute; top: -22px; left: 24px;
  background: var(--c-orange); color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}
.step-card h3 { margin: 8px 0 10px; }
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }

/* Login methods (anmeldung page) */
.login-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.login-method {
  background: #fff; padding: 26px;
  border-radius: var(--radius); display: flex; gap: 18px; align-items: flex-start;
  border-left: 4px solid var(--c-gold); box-shadow: var(--shadow-sm);
}
.login-method__icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.login-method h3, .login-method h4 { margin: 0 0 6px; font-size: 1.1rem; }
.login-method p { margin: 0; color: var(--c-muted); font-size: .94rem; }
@media (max-width: 680px) { .login-methods { grid-template-columns: 1fr; } }

/* Article list (author page) */
.article-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.article-card {
  background: #fff; padding: 22px 24px;
  border-radius: var(--radius); border: 1px solid var(--c-border);
  transition: box-shadow .2s, transform .2s;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card a { color: var(--c-primary-dark); font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; text-decoration: none; }
.article-card a:hover { color: var(--c-orange); }
.article-card p { color: var(--c-muted); margin: 8px 0 0; font-size: .93rem; }
@media (max-width: 720px) { .article-list { grid-template-columns: 1fr; } }

/* Legal pages (clean text) */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { margin-top: 36px; }
.legal-content h3 { margin-top: 24px; }
