
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/nunito-v32-latin_latin-ext-900.woff2') format('woff2');
}

:root {
  --teal: #1F7A7F;
  --teal-dark: #155357;
  --teal-light: #E8F3F3;
  --orange: #F39C2E;
  --orange-light: #FEF1DE;
  --cream: #FDFBF5;
  --sky: skyblue;
  --text: #2B3340;
  --text-mute: #475260;
  --red: #E55B4C;
  --green: #3FB06B;
  --border: #E5E7EB;
  --site-nav-height: 76px;
}
@media (max-width: 720px) {
  /* Mit Burger-Menü bleibt die Nav einzeilig — kein Wrap mehr nötig. */
  :root { --site-nav-height: 76px; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', -apple-system, sans-serif;
  background: var(--sky);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


.site-nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: sticky; top: 0; z-index: 100;
}
.site-nav .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.logo {
  font-size: 24px; font-weight: 900; color: var(--teal); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo img { border-radius: 8px; }

/* Desktop-Panel: Links + Sprach-Switcher nebeneinander, kein Slide-Down. */
.site-nav__panel { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--teal); }

/* Burger-Button — auf Desktop versteckt. */
.site-nav__burger {
  display: none; appearance: none; background: transparent; border: 0;
  padding: 8px; cursor: pointer; flex-direction: column; gap: 5px;
  border-radius: 8px;
}
.site-nav__burger:hover { background: var(--teal-light); }
.site-nav__burger-line {
  display: block; width: 26px; height: 3px; background: var(--teal-dark);
  border-radius: 2px; transition: transform 0.2s, opacity 0.2s;
}
.site-nav__burger[aria-expanded="true"] .site-nav__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-nav__burger[aria-expanded="true"] .site-nav__burger-line:nth-child(2) {
  opacity: 0;
}
.site-nav__burger[aria-expanded="true"] .site-nav__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Sprach-Switcher als Dropdown via <details>/<summary>, CSP-frei. */
.lang-switcher { position: relative; }
.lang-switcher > summary {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 8px; cursor: pointer;
  font-size: 13px; font-weight: 700; color: var(--text);
  background: transparent; border: 1.5px solid transparent;
  list-style: none;
}
.lang-switcher > summary::-webkit-details-marker { display: none; }
.lang-switcher > summary::marker { content: ''; }
.lang-switcher > summary:hover { background: var(--teal-light); border-color: var(--teal-light); }
.lang-switcher[open] > summary { background: white; border-color: var(--border); }
.lang-switcher__flag { font-size: 16px; line-height: 1; }
.lang-switcher__code { letter-spacing: 0.5px; }
.lang-switcher__chevron { font-size: 11px; color: var(--text-mute); margin-left: 2px; }
.lang-switcher[open] .lang-switcher__chevron { transform: rotate(180deg); }

.lang-switcher__menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: white; border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20,40,60,0.12);
  min-width: 180px; padding: 6px; z-index: 110;
}
.lang-switcher__item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 6px;
  font-size: 14px; font-weight: 600; color: var(--text);
  text-decoration: none;
}
.lang-switcher__item:hover { background: var(--teal-light); color: var(--teal-dark); }
.lang-switcher__item.is-current {
  background: var(--teal-light); color: var(--teal-dark); cursor: default;
}
.lang-switcher__item .lang-switcher__name { margin-left: auto; font-weight: 400; color: var(--text-mute); font-size: 13px; }

/* Mobile: Burger sichtbar, Panel als Slide-Down unter der Nav. */
@media (max-width: 720px) {
  .site-nav__burger { display: flex; }

  .site-nav__panel {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 20px rgba(20,40,60,0.08);
  }
  .site-nav__panel.is-open { display: flex; }

  .nav-links { flex-direction: column; gap: 0; width: 100%; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 14px 4px; font-size: 17px; }

  .lang-switcher { margin-top: 12px; align-self: flex-start; }
  .lang-switcher__menu {
    /* Innerhalb des Mobile-Panels kein floating-Dropdown nötig, inline rendern. */
    position: static; box-shadow: none; border: 0; padding: 4px 0;
    min-width: 0; background: transparent;
  }
}


.hero {
  position: relative;
  padding: 50px 0 160px;
  background:
    radial-gradient(ellipse 85% 90% at 50% 42%,
      rgba(253,251,245,0.85) 0%,
      rgba(253,251,245,0.55) 28%,
      rgba(253,251,245,0.25) 50%,
      rgba(253,251,245,0.08) 70%,
      rgba(253,251,245,0) 88%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.hero-mascot { width: 160px; height: auto; margin-bottom: 24px; filter: drop-shadow(0 8px 24px rgba(31,122,127,0.15)); }
h1 { font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
h1 .highlight {
  position: relative; display: inline-block; color: var(--text);
}
h1 .highlight::after {
  content: ''; position: absolute; left: 4%; right: 4%;
  bottom: 6px; height: 10px; background: var(--orange-light); z-index: -1;
  border-radius: 2px;
}
.hero-sub { font-size: 18px; color: var(--text-mute); margin-bottom: 32px; max-width: 500px; }
.btn-group { display: flex; gap: 12px; }
.btn {
  padding: 16px 32px; border-radius: 16px; border: none; font-family: inherit;
  font-weight: 800; font-size: 16px; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-primary { background: var(--orange); color: white; box-shadow: 0 4px 14px rgba(243,156,46,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243,156,46,0.45); }
.btn-secondary { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal-light); }


.options { display: flex; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.option-group { display: flex; flex-direction: column; gap: 8px; }
.option-label { font-size: 12px; font-weight: 700; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1px; }
.range-row { display: flex; align-items: center; gap: 8px; }
.range-dash { color: var(--text-mute); font-weight: 700; }
.select {
  padding: 10px 14px; border: 2px solid var(--border); border-radius: 12px;
  background: white; font-family: inherit; font-weight: 700; font-size: 15px;
  color: var(--text); cursor: pointer; min-width: 90px;
}
.select:focus { outline: none; border-color: var(--teal); }


.seg {
  display: inline-flex; background: #F5F6F8; border-radius: 12px; padding: 4px; gap: 2px;
}
.seg-btn {
  padding: 8px 16px; border: none; background: transparent; font-family: inherit;
  font-weight: 700; font-size: 14px; color: var(--text-mute); cursor: pointer;
  border-radius: 8px; transition: all 0.15s;
}
.seg-btn:hover { color: var(--text); }
.seg-btn.active { background: white; color: var(--teal); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }


.ticket {
  background: white; border-radius: 24px; padding: 32px;
  box-shadow: 0 20px 60px rgba(31,122,127,0.12);
  border: 1px solid var(--border);
}
.ticket-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px dashed var(--border);
}
.ticket-title { font-weight: 900; color: var(--teal); font-size: 18px; letter-spacing: 1px; }
.ticket-counter { font-size: 13px; color: var(--text-mute); font-weight: 700; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 24px;
}
.num {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #F5F6F8; font-weight: 800; font-size: 15px;
  cursor: pointer; user-select: none; transition: all 0.15s; border: 2px solid transparent;
}
.num:hover { background: var(--teal-light); }
.num.selected { background: var(--teal); color: white; transform: scale(1.05); }
.super-label { font-size: 13px; color: var(--text-mute); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.super-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; }
.super { aspect-ratio: 1; font-size: 13px; }
.super.selected { background: var(--orange); color: white; }


.result {
  background: white; margin-top: 40px; padding: 60px 48px; border-radius: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04); display: none;
}
.result.visible { display: block; animation: resultFadeIn 0.4s ease; }
@keyframes resultFadeIn { from { opacity: 0; } to { opacity: 1; } }
.result-label { text-align: center; font-size: 14px; color: var(--text-mute); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.result-headline { text-align: center; font-size: 64px; font-weight: 900; line-height: 1.1; margin-bottom: 12px; }
.result-headline .amount { color: var(--red); }
.result-headline .amount.win { color: var(--green); }
.result-sub { text-align: center; color: var(--text-mute); font-size: 16px; margin-bottom: 8px; }
.result-tip-count {
  text-align: center; color: var(--teal); font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.8px;
  margin: 0 0 40px 0;
}
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.stat-card { padding: 28px; background: var(--cream); border-radius: 20px; border: 1px solid var(--border); }
.stat-card.highlight { border-color: var(--red); background: #FDF2F1; }
.stat-label { font-size: 12px; color: var(--text-mute); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.stat-value { font-size: 32px; font-weight: 900; }
.stat-card.highlight .stat-value { color: var(--red); }

.ev-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -28px 0 40px 0;
  padding: 0 8px;
  font-size: 14px;
  color: var(--text-mute);
  text-align: center;
}
.ev-note__text strong { color: var(--text); font-weight: 700; }
.ev-note__info { position: relative; }
.ev-note__info > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-mute);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
}
.ev-note__info > summary::-webkit-details-marker { display: none; }
.ev-note__info > summary:hover,
.ev-note__info[open] > summary { background: var(--text-mute); color: #fff; }
.ev-note__tooltip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 8px);
  width: min(280px, 80vw);
  margin: 0;
  padding: 10px 12px;
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.ev-note__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--text);
}

.breakdown { margin-bottom: 40px; }
.breakdown h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.bar-row { display: grid; grid-template-columns: 140px 1fr 80px; align-items: center; gap: 16px; margin-bottom: 12px; }
.bar-label { font-size: 14px; font-weight: 700; }
.bar-track { height: 24px; background: #F5F6F8; border-radius: 12px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--teal); border-radius: 12px; transition: width 1s ease; }
.bar-count { text-align: right; font-weight: 800; font-size: 14px; }
.breakdown-empty { color: var(--text-mute); font-size: 15px; padding: 12px 0; }

.bar-row--expandable {
  display: block;
  margin-bottom: 6px;
}
.bar-row__trigger {
  display: grid; grid-template-columns: 140px 1fr 80px 18px;
  align-items: center; gap: 16px;
  width: 100%; padding: 8px 12px; margin: 0;
  background: transparent; border: 0; border-radius: 12px;
  font: inherit; color: inherit; text-align: left; cursor: pointer;
  transition: background 0.15s ease;
}
.bar-row__trigger:hover,
.bar-row__trigger:focus-visible { background: rgba(31, 122, 127, 0.06); outline: none; }
.bar-row__trigger > .bar-track { display: block; }
.bar-row__chevron { color: var(--text-mute); font-size: 14px; transition: transform 0.2s ease; }
.bar-row--expanded .bar-row__chevron { transform: rotate(180deg); }
.bar-row__trigger .bar-track,
.bar-row__trigger .bar-fill { display: block; }
.bar-row--expanded .bar-row__trigger {
  position: sticky; top: calc(var(--site-nav-height) + 5px); z-index: 5;
  background: white; border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.bar-row__details {
  margin-top: 4px; padding: 8px 12px 18px;
}

.hit-details__list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hit-details__list--limited > li:nth-child(n+11) { display: none; }
.hit-details__empty { color: var(--text-mute); font-size: 14px; padding: 8px 0; }
.hit-details__error { color: var(--red); font-size: 14px; padding: 8px 0; }

.hit-detail {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 14px;
  display: grid; gap: 8px;
}
.hit-detail__head {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  font-size: 14px;
}
.hit-detail__date { color: var(--text); font-weight: 700; }
.hit-detail__weekday { color: var(--text-mute); font-weight: 500; font-size: 13px; }
.hit-detail__tip {
  background: var(--teal-light); color: var(--teal-dark);
  padding: 2px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.hit-detail__numbers { display: flex; gap: 6px; flex-wrap: wrap; }
.hit-detail__quote { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.hit-detail__quote-label { font-size: 14px; font-weight: 600; color: var(--text-mute); }
.hit-detail__quote-amount { font-weight: 800; font-size: 18px; color: var(--text); }
.hit-detail__quote-eur { font-size: 12px; color: var(--text-mute); }
.hit-detail__winners { font-size: 13px; color: var(--text); font-weight: 700; }
.hit-detail__winners strong { color: var(--teal-dark); }

.hit-details__show-all {
  margin-top: 12px; padding: 10px 16px;
  background: white; border: 1px solid var(--border); border-radius: 999px;
  color: var(--teal-dark); font: inherit; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: background 0.15s ease;
}
.hit-details__show-all:hover,
.hit-details__show-all:focus-visible {
  background: var(--teal-light); border-color: var(--teal); outline: none;
}
.hit-details__show-all[hidden] { display: none; }

@media (max-width: 480px) {
  .bar-row__trigger {
    grid-template-columns: minmax(80px, auto) 1fr 56px 16px;
    gap: 10px; padding: 8px 6px;
  }
  .bar-label { font-size: 13px; }
  .bar-count { font-size: 13px; }
  .bar-row__details { padding: 8px 4px 14px; }
  .hit-detail { padding: 10px 12px; }
  .hit-detail__numbers { gap: 5px; }
}


.etf-extras-grid {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 24px; margin-top: 32px;
  align-items: stretch;
}
.etf-extras-grid > * { min-width: 0; }


.etf-card {
  background: var(--orange); color: white; padding: 32px; border-radius: 24px;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px; align-items: center;
}
.etf-card__text, .etf-card > * { min-width: 0; }
.etf-card, .etf-card * { overflow-wrap: break-word; word-break: normal; }
.etf-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 14px; line-height: 1.2; }
.etf-card p { opacity: 0.95; margin-bottom: 14px; font-size: 15px; line-height: 1.5; }
.etf-amount { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 14px; letter-spacing: -0.01em; }
.etf-gain { font-weight: 700; font-size: 15px; opacity: 1; margin-bottom: 14px; }
.etf-disclaimer { font-size: 12px; opacity: 0.85; margin-bottom: 0; line-height: 1.4; }

.etf-chart {
  height: 150px; display: flex; align-items: flex-end; gap: 3px;
  background: rgba(0,0,0,0.08); border-radius: 10px; padding: 8px;
  min-width: 0; width: 100%;
}
.etf-bar {
  flex: 1; background: rgba(255,255,255,0.92); border-radius: 3px 3px 0 0;
  min-height: 2px; transition: height 0.8s cubic-bezier(.2,.8,.2,1);
}


.comparison-card {
  background: var(--cream); border: 2px solid var(--border); border-radius: 20px;
  padding: 24px; display: flex; gap: 18px; align-items: center;
  min-width: 0; overflow-wrap: break-word;
}
.comparison-card__image { flex-shrink: 0; }
.comparison-card__image img {
  border-radius: 12px; width: 96px; height: 96px; object-fit: contain;
  background: var(--teal-light); padding: 8px;
}
.comparison-card__text { min-width: 0; flex: 1; }
.comparison-card__lead {
  font-weight: 800; color: var(--teal); margin-bottom: 6px;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
}
.comparison-card__body { font-size: 15px; line-height: 1.5; color: var(--text); margin: 0; }


.info-note {
  background: var(--teal-light); border-radius: 16px;
  padding: 20px 24px; margin: 32px 0 0; color: var(--text-mute);
  text-align: center; font-size: 15px;
}
.info-note p { margin: 0; }


.landing-filters {
  background: var(--cream); border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 20px; margin-top: 24px; margin-bottom: 24px;
}
.landing-filters .filter-row { justify-content: center; }
.landing-cta {
  text-align: center; margin-top: 32px; margin-bottom: 16px;
}
.filter-row { display: flex; gap: 16px; align-items: end; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label {
  font-size: 12px; font-weight: 700; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.filter-group select {
  padding: 8px 12px; border: 2px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  background: white; color: var(--text); cursor: pointer;
}
.filter-group select:focus { outline: none; border-color: var(--teal); }
.filter-submit {
  padding: 10px 20px; background: var(--teal); color: white; border: none;
  border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background 0.15s;
}
.filter-submit:hover { background: var(--teal-dark); }


.hero-intro {
  text-align: center; max-width: 960px; margin: 0 auto 32px;
  position: relative; z-index: 2;
}
.hero-intro .hero-mascot { width: 100px; margin: 0 auto 8px; display: block; }
.hero-intro h1 { font-size: 44px; }
.hero-intro .hero-sub { margin: 0 auto 30px; font-size: 17px; }

.hero-stats {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: 880px; margin: 0 auto;
  padding: 24px 0 18px;
}
.hero-stats::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 0;
  height: 1px; background: rgba(43,51,64,0.12);
}
.hero-stats__cell { text-align: center; padding: 0 12px; position: relative; }
.hero-stats__cell + .hero-stats__cell::before {
  content: ''; position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px; background: rgba(43,51,64,0.12);
}
.hero-stats__num {
  font-size: 38px; font-weight: 900; color: var(--teal-dark);
  font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: -0.01em;
}
.hero-stats__cap {
  font-size: 12px; color: var(--text-mute);
  margin-top: 8px; max-width: 180px; margin-left: auto; margin-right: auto;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: 1fr; gap: 18px; padding: 18px 0; }
  .hero-stats__cell + .hero-stats__cell::before { display: none; }
  .hero-stats__num { font-size: 30px; }
}


.takeaways {
  list-style: none; padding: 24px 28px; margin: 0 0 24px;
  background: var(--bg-soft, #f7f8fa);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
}
.takeaways li {
  position: relative; padding-left: 28px;
  margin-bottom: 14px; line-height: 1.6;
}
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 800;
}
.takeaways strong { color: var(--text); font-weight: 800; }


.combo-story__inner {
  max-width: 760px; margin: 0 auto;
  background: white; border-radius: 20px; padding: 32px 36px;
  border: 1px solid var(--border);
}
.combo-story__inner h2 { font-size: 26px; margin-bottom: 18px; }
.combo-story__inner p {
  font-size: 16px; line-height: 1.7; color: var(--text);
  margin-bottom: 14px;
}
.combo-story__inner p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .combo-story__inner { padding: 24px 22px; }
  .combo-story__inner h2 { font-size: 22px; }
  .combo-story__inner p { font-size: 15px; }
}


.lottoschein-form { margin: 0 auto; }
.lottoschein {
  background: white; border-radius: 24px; padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.lottoschein__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.lottoschein__badge {
  background: var(--teal); color: white;
  padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 800; letter-spacing: 1px;
}
.lottoschein__subtitle {
  font-size: 14px; color: var(--text-mute);
  font-weight: 600; margin-left: 12px;
}
.lottoschein__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 24px;
}
@media (max-width: 900px) {
  .lottoschein__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .lottoschein__grid { grid-template-columns: repeat(2, 1fr); }
}

.tipfield {
  border: 2px solid var(--border); border-radius: 14px;
  padding: 14px; position: relative;
  transition: border-color 0.15s, opacity 0.15s, background 0.15s;
}
.tipfield--active { border-color: var(--teal); }
.tipfield--complete { border-color: var(--teal); background: var(--teal-light); }
.tipfield--hidden { display: none; }
.tipfield__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.tipfield__label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  color: var(--teal); letter-spacing: 0.5px;
}
.tipfield__counter { font-size: 12px; font-weight: 700; color: var(--text-mute); }

.tipfield__numbers {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.numcell {
  width: 100%; aspect-ratio: 1; border: none;
  background: #F6F2E8; border-radius: 6px;
  font-family: inherit; font-size: 14px; font-weight: 700;
  color: var(--text); cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.1s, color 0.1s;
}
.numcell:hover { background: var(--teal-light); }
.numcell--selected { background: var(--teal); color: white; }
.numcell--selected:hover { background: var(--teal-dark); }
.numcell--disabled { opacity: 0.3; cursor: default; }
.numcell--disabled:hover { background: #F6F2E8; }

.tipfield__actions {
  display: flex; justify-content: space-between; margin-top: 6px;
}
.tipfield__quicktipp, .tipfield__clear {
  font-size: 12px; font-weight: 700; background: none; border: none;
  color: var(--teal); cursor: pointer; padding: 4px 0;
  font-family: inherit;
}
.tipfield__quicktipp:hover, .tipfield__clear:hover, .tipfield__remove:hover { text-decoration: underline; }
.tipfield__remove {
  font-size: 12px; font-weight: 700; background: none; border: none;
  color: var(--text-mute); cursor: pointer; padding: 4px 0;
  font-family: inherit; display: none;
}
.tipfield--last-active .tipfield__remove { display: inline-block; }
.tipfield--last-active .tipfield__actions { gap: 8px; }

.tipfield-add {
  border: 2px dashed var(--border); border-radius: 14px;
  padding: 10px; background: transparent; cursor: pointer;
  font-family: inherit; color: var(--teal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; aspect-ratio: 4 / 5; align-self: start;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.tipfield-add:hover { border-color: var(--teal); background: var(--teal-light); }
.tipfield-add__plus { font-size: 32px; font-weight: 900; line-height: 1; }
.tipfield-add__label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.tipfield-add--hidden { display: none; }

.lottoschein__superzahl { margin-bottom: 24px; text-align: center; }
.lottoschein__sz-label {
  font-size: 13px; font-weight: 700; color: var(--text-mute);
  margin-bottom: 8px; display: block;
}
.lottoschein__sz-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.sz-ball {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--border); background: white;
  font-family: inherit; font-size: 16px; font-weight: 800;
  cursor: pointer; transition: all 0.1s; color: var(--text);
}
.sz-ball:hover { border-color: var(--orange); }
.sz-ball--selected { background: var(--orange); color: white; border-color: var(--orange); }

.lottoschein__filters {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.lottoschein__filters .filter-group label { color: var(--text-mute); }

.lottoschein__error {
  background: #FEECEC; color: #A6372B; border-radius: 10px;
  padding: 12px 16px; font-size: 14px; font-weight: 600;
  margin: 0 0 16px; text-align: center;
}

.lottoschein__submit {
  width: 100%; padding: 16px; background: var(--orange); color: white;
  border: none; border-radius: 14px; font-family: inherit;
  font-size: 18px; font-weight: 800; cursor: pointer;
  transition: background 0.15s, opacity 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(243,156,46,0.35);
}
.lottoschein__submit:hover:not(:disabled) {
  background: #E08A1A; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(243,156,46,0.45);
}
.lottoschein__submit:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }

@media (max-width: 1100px) { .lottoschein__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) {
  .lottoschein__grid { grid-template-columns: repeat(3, 1fr); }
  .lottoschein__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-intro h1 { font-size: 32px; }
}
@media (max-width: 480px) {
  
  .lottoschein__grid { grid-template-columns: 1fr; }
  .numcell { font-size: 13px; }
}


.combo-showcase {
  background: white; border-radius: 20px; padding: 24px 28px;
  margin-bottom: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.combo-showcase__label {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--teal); margin-bottom: 14px;
}
.combo-showcase__balls {
  display: flex; gap: 10px; flex-wrap: wrap;
}


.latest-draw {
  background: white; border-radius: 20px; padding: 20px 28px;
  margin: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: center;
}
@media (max-width: 720px) {
  .latest-draw { grid-template-columns: 1fr; text-align: center; gap: 14px; padding: 20px; }
}
.latest-draw__header {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
@media (max-width: 720px) {
  .latest-draw__header { justify-content: center; }
}
.latest-draw__label {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--teal-dark);
  background: var(--teal-light); padding: 4px 12px; border-radius: 20px;
}
.latest-draw__date { font-size: 15px; font-weight: 700; color: var(--text-mute); }
.latest-draw__numbers {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 721px) {
  .latest-draw__numbers { justify-content: flex-start; }
}
.lotto-ball {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.lotto-ball--super {
  background: var(--orange); color: var(--text);
  position: relative; cursor: help;
}
.lotto-ball--super::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--text); color: white;
  padding: 4px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  z-index: 10;
}
.lotto-ball--super::before {
  content: ''; position: absolute; bottom: calc(100% + 3px); left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--text);
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  z-index: 10;
}
.lotto-ball--super:hover::after,
.lotto-ball--super:hover::before,
.lotto-ball--super:focus::after,
.lotto-ball--super:focus::before { opacity: 1; }
.lotto-ball--small {
  width: 32px; height: 32px; font-size: 13px;
}
.lotto-ball--small.lotto-ball--super {
  height: 32px; font-size: 13px;
}


.share-summary {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 24px;
  margin-bottom: 32px;
}
.share-summary__row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.share-summary__row + .share-summary__row {
  border-top: 1px solid var(--border);
}
.share-summary__label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-mute); min-width: 140px;
}
.share-summary__tips {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.share-summary__tip {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.share-summary__sz {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-mute); font-weight: 600;
}
.share-summary__range {
  font-size: 14px; color: var(--text); font-weight: 600;
}
.latest-draw__cta {
  display: inline-block; font-size: 14px; font-weight: 700;
  color: var(--teal); text-decoration: none;
}
.latest-draw__cta:hover { text-decoration: underline; }


section.block { padding: 80px 0; }



section.how,
section.bl-teaser-section { background: var(--teal-light); }
.combos-section__cta { text-align: center; margin-top: 28px; }
.how-lead { color: var(--text-mute); font-size: 17px; max-width: 640px; margin-bottom: 40px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.how-step {
  background: var(--cream); padding: 32px 28px; border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(31,122,127,0.10); }
.how-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: white; color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(31,122,127,0.12);
}
.how-icon svg { width: 30px; height: 30px; }
.how-step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.how-step p { font-size: 15px; color: var(--text-mute); }
.how-note {
  background: white; border-radius: 16px; padding: 20px 24px;
  font-size: 14px; color: var(--text-mute); line-height: 1.6;
  border: 1px solid var(--border);
}
.how-note strong { color: var(--teal-dark); font-weight: 800; }
h2 { font-size: 36px; font-weight: 900; margin-bottom: 32px; }
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.combo-card {
  background: white; padding: 24px; border-radius: 20px; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s; text-decoration: none; color: inherit; display: block;
}
.combo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: var(--teal); }
.combo-title { font-weight: 800; font-size: 18px; margin-bottom: 12px; }
.combo-nums { display: flex; gap: 6px; margin-bottom: 12px; }
.combo-ball {
  width: 32px; height: 32px; border-radius: 50%; background: var(--teal);
  color: white; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.combo-desc { font-size: 13px; color: var(--text-mute); }


.archive-table-headline {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 32px 0 16px;
  line-height: 1.25;
}
.archive-table {
  width: 100%; border-collapse: collapse; background: white; border-radius: 16px; overflow: hidden;
}
.archive-table th, .archive-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px;
}
.archive-table th {
  background: var(--teal-light); font-weight: 700; color: var(--teal); text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.5px;
}
.archive-table tbody tr:hover { background: var(--cream); }


.footer { background: var(--teal-dark); color: white; padding: 50px 0 30px; }
.footer-nav {
  display: grid; grid-template-columns: repeat(3, max-content);
  gap: 64px; justify-content: center;
}
@media (max-width: 720px) {
  .footer-nav { grid-template-columns: 1fr; gap: 28px; justify-content: stretch; padding: 0 20px; }
}
.footer-column h4, .footer-col-title { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; opacity: 0.7; font-weight: 800; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin: 0; }
.footer-column a { color: white; text-decoration: none; display: block; padding: 4px 0; opacity: 0.9; font-size: 14px; }
.footer-column a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.footer-responsibility {
  background: rgba(255,255,255,0.06); padding: 12px 20px; border-radius: 10px;
  font-size: 14px; color: var(--cream); margin-bottom: 12px; line-height: 1.5;
}
.footer-responsibility a { color: #FFB04D; text-decoration: underline; }
.footer-responsibility a:hover { color: white; }
.footer-copyright { font-size: 12px; opacity: 0.7; text-align: center; margin: 0; }


.static-section { padding: 60px 0; }
.static-page { max-width: 760px; margin: 0 auto; background: white; padding: 48px 56px; border-radius: 24px; border: 1px solid var(--border); }
.static-page h1 { font-size: 36px; font-weight: 900; margin-bottom: 24px; line-height: 1.15; }
.static-page h2 { font-size: 22px; font-weight: 800; margin-top: 36px; margin-bottom: 14px; color: var(--teal); }
.static-page h3 { font-size: 17px; font-weight: 800; margin-top: 28px; margin-bottom: 10px; }
.static-page p { font-size: 16px; line-height: 1.65; margin-bottom: 14px; color: var(--text); }
.static-page p.lead { font-size: 18px; color: var(--text-mute); }
.static-page ul { margin: 0 0 18px 22px; padding: 0; }
.static-page li { font-size: 16px; line-height: 1.6; margin-bottom: 6px; }
.static-page a { color: var(--teal); text-decoration: underline; }
.static-page a:hover { color: var(--teal-dark); }
.static-page strong { font-weight: 800; }

@media (max-width: 900px) {
  .footer-nav { gap: 40px; }
  .static-page { padding: 32px 24px; }
  .static-page h1 { font-size: 28px; }
}


.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


@media (max-width: 900px) {
  .hero-grid, .etf-card, .etf-extras-grid, footer .container { grid-template-columns: 1fr; gap: 24px; }
  .stat-cards, .combo-grid, .how-grid { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  .result-headline { font-size: 42px; }
  .result { padding: 32px 20px; }
  .hero-mascot { width: 120px; }
  .etf-amount { font-size: 36px; }
  .comparison-card { flex-direction: column; text-align: center; }
}


.insights-section { margin-top: 40px; }
.insights-section__title { font-size: 26px; font-weight: 900; text-align: center; margin-bottom: 8px; }
.insights-section__subtitle { text-align: center; color: var(--text-mute); font-size: 15px; margin-bottom: 24px; }

.insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.insight-card {
  background: white; border-radius: 20px; padding: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  border: 2px solid var(--border);
}
.insight-card--past { background: #EEF5FB; border-color: #7FB3D8; }
.insight-card--future { background: #F4EFFB; border-color: #B197D9; }

.insight-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.insight-icon {
  width: 44px; height: 44px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.insight-title { font-size: 20px; font-weight: 900; }
.insight-sub { color: var(--text-mute); font-size: 13px; margin-bottom: 20px; }

.segment {
  display: inline-flex; background: rgba(255,255,255,0.7); border-radius: 12px;
  padding: 4px; gap: 2px; margin-bottom: 20px;
}
.segment button {
  padding: 8px 14px; border: none; background: transparent; font-family: inherit;
  font-weight: 700; font-size: 13px; color: var(--text-mute); cursor: pointer;
  border-radius: 8px; transition: all 0.15s;
}
.segment button:hover { color: var(--text); }
.segment button.active { background: white; color: var(--teal); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

.past-date { font-size: 13px; font-weight: 700; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.past-numbers { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.lotto-ball--hit { background: var(--green) !important; color: white !important; border-color: var(--green) !important; }

.past-result {
  padding: 12px 16px; background: white; border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.past-result-label { font-size: 13px; font-weight: 700; color: var(--text-mute); }
.past-result-value--hit { color: var(--green); font-weight: 900; }
.past-result-value--miss { color: var(--red); font-weight: 700; }

.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.scenario-tile { padding: 14px; border-radius: 12px; background: white; text-align: center; }
.scenario-tile--lotto { border-left: 4px solid var(--red); }
.scenario-tile--pillow { border-left: 4px solid #999; }
.scenario-tile--savings { border-left: 4px solid #D4A843; }
.scenario-tile--etf { border-left: 4px solid var(--green); }
.scenario-tile__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-mute); margin-bottom: 4px; }
.scenario-tile__value { font-size: 18px; font-weight: 900; }
.scenario-tile__value--negative { color: var(--red); }
.scenario-tile__value--positive { color: var(--green); }
.scenario-tile__detail { font-size: 10px; color: var(--text-mute); margin-top: 2px; }

.scenario-disclaimer {
  font-size: 11px; color: var(--text-mute); line-height: 1.5;
  padding: 10px; background: rgba(255,255,255,0.5); border-radius: 8px; margin-bottom: 14px;
}

.owl-quote {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; background: rgba(255,255,255,0.5); border-radius: 12px;
  font-size: 13px; font-style: italic; line-height: 1.5;
}
.owl-quote__img { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.insights-faq-link { display: inline; font-size: 12px; color: var(--teal); font-weight: 700; text-decoration: none; font-style: normal; }
.insights-faq-link:hover { text-decoration: underline; }

.insights-grid .hidden { display: none; }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .segment { flex-wrap: wrap; }
}


.affiliate-box {
  background: var(--orange-light);
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 28px;
  margin: 40px 0;
}
.affiliate-box__title { font-size: 18px; font-weight: 800; color: var(--teal-dark); margin-bottom: 16px; text-align: center; }
.affiliate-box__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.affiliate-box__broker { background: white; border-radius: 14px; padding: 20px; text-align: center; }
.affiliate-box__name { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.affiliate-box__desc { font-size: 13px; color: var(--text-mute); margin-bottom: 12px; }
.affiliate-box__cta {
  display: inline-block; padding: 8px 20px; background: var(--orange); color: white;
  border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 14px;
}
.affiliate-box__cta:hover { background: #E08A1A; }
.affiliate-box__disclaimer { font-size: 11px; color: var(--text-mute); text-align: center; font-style: italic; }
@media (max-width: 768px) { .affiliate-box__grid { grid-template-columns: 1fr; } }


/* === Ratgeber-Artikel-Layout (Pillar + Spokes) — angeglichen an /knack-chance === */
.article-page { margin: 0 auto; padding: 0; }
.article-page__header {
  text-align: center;
  background: linear-gradient(180deg, var(--teal-light) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--teal-light);
  padding: 48px 20px 56px;
  margin-bottom: 0;
}
.article-page__category {
  display: inline-block; background: white; color: var(--teal-dark);
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; margin: 0 auto 12px;
  max-width: 800px;
}
.article-page__header h1 {
  font-size: clamp(32px, 5.5vw, 56px); font-weight: 900; line-height: 1.1;
  max-width: 1040px; margin: 0 auto 16px;
}
.article-page__meta {
  font-size: 14px; color: var(--text-mute);
  max-width: 800px; margin: 0 auto;
}

.article-page__content {
  max-width: 800px; margin: 0 auto; padding: 0 20px;
  font-size: 17px; line-height: 1.7; color: var(--text);
}
.article-page__content > p:first-of-type {
  font-size: 19px; line-height: 1.55; margin-top: 40px; color: var(--text);
}
.article-page__content h2 {
  font-size: 26px; font-weight: 900; line-height: 1.25;
  margin-top: 56px; margin-bottom: 16px;
  padding-left: 18px; position: relative;
  color: var(--text);
}
.article-page__content h2::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: calc(100% - 16px);
  background: var(--teal); border-radius: 3px;
}
.article-page__content h3 {
  font-size: 19px; font-weight: 800;
  margin-top: 32px; margin-bottom: 10px;
  color: var(--teal-dark);
}
.article-page__content p { margin: 0 0 16px; }
.article-page__content ul, .article-page__content ol { margin: 0 0 18px 1.4em; }
.article-page__content li { margin-bottom: 6px; }
.article-page__content blockquote {
  border-left: 4px solid #E8B931;
  padding: 18px 22px; margin: 28px 0;
  background: #FFF8E5; border-radius: 6px;
  font-style: italic; font-size: 17px; line-height: 1.6;
}
.article-page__content blockquote p:last-child { margin-bottom: 0; }
.article-page__content table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0; font-size: 15px;
  background: white; border: 1px solid #E8EDED;
  border-radius: 10px; overflow: hidden;
}
.article-page__content th, .article-page__content td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid #F0F2F2;
}
.article-page__content th {
  font-weight: 800; color: var(--teal-dark);
  background: var(--teal-light);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
}
.article-page__content tr:last-child td { border-bottom: none; }
.article-page__content td:nth-child(2),
.article-page__content td:nth-child(3) {
  font-variant-numeric: tabular-nums;
}
.article-page__cta { text-align: center; margin: 56px 0 32px; }
.article-page__cta-button {
  display: inline-block; padding: 14px 32px;
  background: var(--teal); color: white;
  border-radius: 8px; text-decoration: none;
  font-weight: 800; font-size: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.article-page__cta-button:hover { background: var(--teal-dark); }

@media (max-width: 480px) {
  .article-page__header { padding: 32px 16px 40px; }
  .article-page__content { padding: 0 16px; font-size: 16px; }
  .article-page__content > p:first-of-type { font-size: 17px; margin-top: 28px; }
  .article-page__content h2 { font-size: 22px; margin-top: 40px; }
  .article-page__content h3 { font-size: 17px; }
}

@media (max-width: 600px) {
  .article-page__content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
  }
}


.guide-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 24px 0 8px;
}
.guide-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px; border-radius: 14px;
  background: var(--cream); border: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.guide-card:hover {
  border-color: var(--teal); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31,122,127,0.12);
  text-decoration: none;
}
.guide-card__title { font-weight: 800; font-size: 16px; color: var(--teal-dark); line-height: 1.3; }
.guide-card__desc { font-size: 13px; color: var(--text-mute); line-height: 1.5; }


.guide-section__lead {
  font-size: 17px; color: var(--text-mute); max-width: 640px;
  margin: -8px 0 32px;
}
.guide-grid {
  display: flex; flex-direction: column; gap: 16px;
}
.guide-grid__spokes {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}

.guide-grid__spokes .guide-card:nth-child(odd)  { background: var(--cream); }
.guide-grid__spokes .guide-card:nth-child(even) { background: #FFFFFF; }
.guide-card--featured {
  position: relative; padding: 28px 32px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 100%);
  border: 2px solid var(--teal);
}
.guide-card--featured .guide-card__title { font-size: 22px; }
.guide-card--featured .guide-card__desc { font-size: 15px; max-width: 720px; }
.guide-card__badge {
  position: absolute; top: 16px; right: 20px;
  background: var(--teal); color: white;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 999px;
}

@media (max-width: 768px) {
  .article-page__header h1 { font-size: 28px; }
  .article-page__content { font-size: 16px; }
  .guide-cards { grid-template-columns: 1fr; }
  .guide-grid__spokes { grid-template-columns: 1fr; }
  .guide-card--featured { padding: 24px 20px; }
  .guide-card--featured .guide-card__title { font-size: 19px; }
}


/* === Bundeslaender-Karten-Teaser (Homepage, eigener teal-light Bereich) === */
/* Text + Karte sitzen direkt auf dem teal-light Band (kein innerer Kasten).
   Card ist kein Link; nur der CTA-Button verlinkt. */
.bl-teaser {
  display: grid; grid-template-columns: 2fr 3fr; gap: 36px; align-items: center;
}
.bl-teaser__body { font-size: 16px; color: var(--text); line-height: 1.6; margin: 0 0 20px; max-width: 520px; }
.bl-teaser__cta { align-self: start; }
.bl-teaser__media img { display: block; width: 100%; height: auto; max-height: 440px; }

@media (max-width: 768px) {
  .bl-teaser { grid-template-columns: 1fr; gap: 18px; }
  .bl-teaser__media { order: -1; } /* Karte oben, Text unten */
  .bl-teaser__media img { max-height: 340px; margin: 0 auto; }
}


/* === Spoke „Lotto-Geld": Hero mit Illustration + Inline-SVG-Visualisierungen === */
.geld-hero { text-align: center; }
.geld-hero__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 28px;
  align-items: center;
}
.geld-hero__subline {
  font-size: 19px; line-height: 1.5; color: var(--text);
  max-width: 540px; margin: 0 auto 16px;
}
.geld-hero__figure { margin: 0; }
.geld-hero__figure picture { display: block; }
.geld-hero__figure img {
  display: block; width: 100%; height: auto; max-width: 460px; margin: 0 auto;
  border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (min-width: 880px) {
  .geld-hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 44px; }
  .geld-hero__copy { text-align: left; }
  .geld-hero__subline { margin-left: 0; }
  .geld-hero .article-page__meta { margin-left: 0; }
}

/* Anker-Sprungmarken nicht unter der Sticky-Nav verstecken */
.article-page__content h2[id] {
  scroll-margin-top: calc(var(--site-nav-height, 64px) + 16px);
}

/* Gemeinsamer Visualisierungs-Container */
.geld-viz {
  margin: 28px 0 32px; padding: 24px 20px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 14px;
}

/* Visualisierung 1: Donut + Legende */
.geld-donut {
  display: block; width: 100%; max-width: 240px; height: auto; margin: 0 auto;
}
.geld-donut__big { font-size: 30px; font-weight: 900; fill: var(--text); }
.geld-donut__small {
  font-size: 11px; font-weight: 700; fill: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.geld-legend { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.geld-legend__item { display: flex; align-items: center; gap: 10px; font-size: 15px; line-height: 1.4; }
.geld-legend__swatch { flex: 0 0 auto; width: 14px; height: 14px; border-radius: 4px; }
/* Swatch-Farben als Klassen statt Inline-Style: die CSP der Seite hat einen
   style-src-Nonce, was 'unsafe-inline' deaktiviert und Inline-style="" blockt. */
.geld-legend__swatch--s1 { background: #134E52; }
.geld-legend__swatch--s2 { background: #1F7A7F; }
.geld-legend__swatch--s3 { background: #2FA0A5; }
.geld-legend__swatch--s4 { background: #6BC0C4; }
.geld-legend__swatch--s5 { background: #A7DBDE; }
.geld-legend__label { flex: 1 1 auto; color: var(--text); }
.geld-legend__pct {
  flex: 0 0 auto; font-weight: 800; color: var(--teal-dark);
  font-variant-numeric: tabular-nums;
}
/* Visualisierung 3: 1,20-Euro-Aufschlüsselung als Zeilen-Balkendiagramm.
   Ein Balken je Empfänger, damit auch die beiden 6-Cent-Posten einen eigenen
   beschrifteten Balken haben (im Stapelbalken zu schmal für ein Label). */
.geld-bars {
  list-style: none; margin: 4px 0 0; padding: 0;
  display: grid;
  grid-template-columns: max-content minmax(64px, 1fr) minmax(0, 1.7fr);
  gap: 14px 16px; align-items: center;
}
.geld-bars__row { display: contents; }
.geld-bars__amount {
  font-weight: 800; color: var(--teal-dark); text-align: right;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.geld-bars__track {
  height: 24px; width: 100%;
  background: #EDF4F4; border-radius: 6px; overflow: hidden;
}
.geld-bars__fill { display: block; height: 100%; min-width: 4px; border-radius: 6px; }
.geld-bars__fill--w50 { width: 50%; }
.geld-bars__fill--w23 { width: 23%; }
.geld-bars__fill--w17 { width: 16.67%; }
.geld-bars__fill--w5  { width: 5%; }
.geld-bars__label { color: var(--text-mute); }

@media (max-width: 480px) {
  .geld-viz { padding: 18px 14px; }
  .geld-legend__item { font-size: 14px; }
  .geld-bars { gap: 11px 12px; font-size: 14px; grid-template-columns: max-content minmax(48px, 0.9fr) minmax(0, 1.6fr); }
}

/* Hervorgehobene Eulen-Schluss-Beobachtung */
.eulen-observation {
  margin: 52px 0 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 100%);
  border-left: 5px solid var(--teal);
  border-radius: 0 16px 16px 0;
}
.eulen-observation h2 {
  margin-top: 0;
  padding-left: 0;
}
.eulen-observation h2::before { display: none; }
.eulen-observation > p:last-child {
  margin-bottom: 0;
  font-weight: 800;
  color: var(--teal-dark);
}
@media (max-width: 480px) {
  .eulen-observation { padding: 22px 18px; }
}

/* Eulenbeobachtungs-Einschub im Fließtext: Label + Akzent links + getönter BG. */
.eulen-note {
  margin: 40px 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 100%);
  border-left: 5px solid var(--teal);
  border-radius: 0 12px 12px 0;
}
.eulen-note__label {
  display: block;
  font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 10px;
}
.eulen-note p:last-child { margin-bottom: 0; }
@media (max-width: 480px) {
  .eulen-note { padding: 18px 18px; }
}


.result-share {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: flex-end;
  margin: 24px 0;
}
.result-share__button {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--teal-dark);
  border: 2px solid var(--teal); border-radius: 12px;
  padding: 10px 18px; font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.result-share__button:hover:not(:disabled) {
  background: var(--teal); color: white;
}
.result-share__button:disabled { opacity: 0.6; cursor: wait; }
.result-share__icon { width: 18px; height: 18px; flex-shrink: 0; }
.toast {
  
  font-size: 14px; color: var(--teal-dark); font-weight: 600;
  transition: opacity 0.2s;
}
.toast--hidden { opacity: 0; pointer-events: none; }
.toast--error { color: var(--red); }
.toast::before {
  content: "✓"; margin-right: 6px; font-weight: 800;
}
.toast--error::before { content: "⚠"; }


.loading-overlay {
  position: fixed; inset: 0;
  
  background: #333B47;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: loading-fade-in 0.2s ease-out;
}
.loading-overlay[hidden] { display: none; }
@keyframes loading-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.loading-overlay__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; max-width: 420px; text-align: center; color: #fff;
}


.loading-overlay__logo {
  position: relative;
  width: min(220px, 60vw);
  aspect-ratio: 513 / 557;
}
.loading-overlay__logo img {
  width: 100%; height: 100%; display: block;
}
.loading-overlay__spinner {
  position: absolute;
  top: 52.6%; left: 71.5%;
  transform: translate(-50%, -50%);
  width: 22%; height: 22%;
  animation: loading-spin 1.1s linear infinite;
}
.loading-overlay__spinner-track { stroke: rgba(31, 122, 127, 0.18); }
.loading-overlay__spinner-arc {
  stroke: var(--teal);
  stroke-dasharray: 90 200;
  stroke-dashoffset: 0;
}
@keyframes loading-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.loading-overlay__headline {
  font-size: 22px; font-weight: 800; color: #fff; margin: 0;
}
.loading-overlay__step {
  font-size: 16px; color: rgba(255, 255, 255, 0.78);
  min-height: 1.6em; transition: opacity 0.2s; margin: 0;
}

.loading-overlay__progress {
  width: min(320px, 80vw); height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px; overflow: hidden;
  margin-top: 4px;
}
.loading-overlay__progress-bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .loading-overlay { animation: none; }
  .loading-overlay__spinner { animation-duration: 3s; }
  .loading-overlay__progress-bar { transition: none !important; }
}

/* Year-Context-Intro Absatz (SEO-2) — direkt unter Subline. */
.year-intro {
  background: white;
  border-radius: 16px;
  padding: 22px 26px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 480px) {
  .year-intro { padding: 18px 20px; border-radius: 14px; }
}

/* === ETF-Jahresbilanz-Box auf /archiv/{year} === */
.etf-bilanz-box {
  background: white;
  border-radius: 20px;
  padding: 32px 36px;
  margin: 0 0 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border-left: 6px solid var(--teal);
}
.etf-bilanz-headline {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 0 0 12px;
  line-height: 1.25;
}
.etf-bilanz-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 0 22px;
  max-width: 720px;
}
.etf-bilanz-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 24px;
}
.etf-bilanz-stat {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  margin: 0;
}
.etf-bilanz-stat.etf-bilanz-stat-na {
  background: #F5F6F8;
}
.etf-bilanz-stat dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 8px;
}
.etf-bilanz-stat dd {
  margin: 0;
}
.etf-bilanz-stat-primary {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.etf-bilanz-stat-na .etf-bilanz-stat-primary {
  color: var(--text-mute);
  font-weight: 700;
}
.etf-bilanz-stat-secondary {
  display: block;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 4px;
  line-height: 1.3;
}
.etf-bilanz-explainer {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 720px;
}
.etf-bilanz-disclaimer {
  margin: 0 0 22px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  max-width: 720px;
}
.etf-bilanz-disclaimer small {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-mute);
  display: block;
}
.etf-bilanz-cta {
  margin: 0;
}
.etf-bilanz-cta a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 22px;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(243, 156, 46, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.etf-bilanz-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(243, 156, 46, 0.42);
}
@media (max-width: 640px) {
  .etf-bilanz-box {
    padding: 24px 22px;
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .etf-bilanz-headline {
    font-size: 22px;
  }
  .etf-bilanz-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .etf-bilanz-stat {
    padding: 14px 16px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .etf-bilanz-stat dt {
    margin: 0;
  }
  .etf-bilanz-stat-primary {
    font-size: 18px;
  }
}

/* Bento-Grid für Rekorde + Heatmap nebeneinander. */
.archiv-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 32px;
  align-items: start;
}
.archiv-bento > .rekorde-box,
.archiv-bento > .heatmap-box {
  margin: 0;
  height: 100%;
}

/* === Rekorde-Box auf /archiv/{year} (Prio 2) === */
.rekorde-box {
  background: white;
  border-radius: 20px;
  padding: 28px 32px;
  margin: 0 0 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border-left: 6px solid var(--orange);
}
.rekorde-headline {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.25;
}
.rekorde-para {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px;
}
.rekorde-para:last-child {
  margin-bottom: 0;
}
.rekorde-para a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(31, 122, 127, 0.4);
}
.rekorde-para a:hover {
  text-decoration-color: var(--teal);
}

/* === "Schon gewusst?"-Anomalie-Box (Prio 3) === */
.anomalie-box {
  background: var(--teal-light);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 0 0 40px;
  border: 1px solid rgba(31, 122, 127, 0.15);
  position: relative;
}
.anomalie-para {
  max-width: 720px;
}
.anomalie-box::before {
  content: "💡";
  position: absolute;
  top: -14px;
  left: 22px;
  background: white;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.anomalie-headline {
  font-size: 16px;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.anomalie-para {
  font-size: 15px;
  line-height: 1.6;
  color: var(--teal-dark);
  margin: 0;
}

@media (max-width: 640px) {
  .rekorde-box {
    padding: 22px 22px;
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .rekorde-headline {
    font-size: 20px;
  }
  .anomalie-box {
    padding: 20px 22px;
    border-radius: 14px;
  }
}

/* === Häufigkeits-Heatmap-Box (Prio 5) === */
.heatmap-box {
  background: white;
  border-radius: 20px;
  padding: 28px 32px;
  margin: 0 0 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border-left: 6px solid var(--teal-dark);
}
.heatmap-headline {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.25;
}
.heatmap-intro {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-mute);
  margin: 0 0 18px;
}
.heatmap-guide-link {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 0 18px;
}
.heatmap-guide-link a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(31, 122, 127, 0.4);
}
.heatmap-guide-link a:hover {
  text-decoration-color: var(--teal);
}
.heatmap-svg-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}
.heatmap-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.heatmap-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}
.heatmap-legend-bar {
  display: inline-block;
  width: 120px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #FDFBF5, #E8F3F3, var(--teal));
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 900px) {
  .archiv-bento {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === FAQ-Box auf /archiv/{year} (SEO-1) === */
.faq-box {
  background: white;
  border-radius: 20px;
  padding: 32px 36px;
  margin: 0 0 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border-left: 6px solid var(--orange-light);
}
.faq-headline {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.3;
  max-width: 720px;
}
.faq-list {
  margin: 0;
  display: grid;
  gap: 18px;
}
.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 6px;
  max-width: 720px;
  line-height: 1.4;
}
.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  max-width: 720px;
}
@media (max-width: 640px) {
  .faq-box {
    padding: 24px 22px;
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .faq-headline {
    font-size: 20px;
  }
  .faq-question {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .heatmap-box {
    padding: 22px 22px;
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .heatmap-headline {
    font-size: 20px;
  }
  .heatmap-legend-bar {
    width: 80px;
  }
}

/* === Aktueller Jackpot — Homepage-Block + /jackpot-Seite === */
.jackpot-card {
  background: white; border-radius: 24px;
  padding: 32px 36px; margin: 0 0 32px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--orange);
}
.jackpot-card__label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--text-mute);
  margin-bottom: 8px;
}
.jackpot-card__amount-big {
  font-size: 48px; font-weight: 900; line-height: 1; letter-spacing: -0.02em;
  color: var(--teal-dark); margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.jackpot-card__amount-exact {
  font-size: 13px; color: var(--text-mute); margin-bottom: 8px;
}
.jackpot-card__last-payout {
  font-size: 12px; color: var(--text-mute); line-height: 1.5;
  margin-bottom: 24px; padding-top: 8px;
  border-top: 1px dashed var(--border);
}
.jackpot-card__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.jackpot-card__row--single { grid-template-columns: 1fr; }
.jackpot-card__metric {
  background: var(--cream); border-radius: 14px;
  padding: 14px 18px;
}
.jackpot-card__metric-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--text-mute);
  margin-bottom: 6px;
}
.jackpot-card__metric-value { font-size: 18px; font-weight: 800; color: var(--text); }
.jackpot-card__metric-sub { font-size: 12px; color: var(--text-mute); margin-top: 4px; }
.jackpot-card__metric-value--urgent { color: var(--red); }
.jackpot-card__volume-arrow { font-weight: 800; margin-right: 6px; }
.jackpot-card__volume-arrow--up { color: var(--green); }
.jackpot-card__volume-arrow--down { color: var(--red); }
.jackpot-card__chance-info {
  position: relative; display: inline-block;
  margin-left: 6px; vertical-align: middle;
}
.jackpot-card__chance-info > summary {
  list-style: none; cursor: pointer;
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid var(--border); background: white;
  color: var(--text-mute); font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.jackpot-card__chance-info > summary::-webkit-details-marker { display: none; }
.jackpot-card__tooltip {
  position: absolute; top: 24px; right: 0;
  width: min(360px, 80vw);
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 14px; font-size: 13px; line-height: 1.45;
  color: var(--text); font-weight: 400;
  text-transform: none; letter-spacing: normal;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}
.jackpot-card__transition {
  background: #FFF8EC; border-left: 4px solid var(--orange);
  padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: var(--text); margin-bottom: 16px;
}
.jackpot-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.jackpot-card__link {
  font-size: 14px; font-weight: 700; color: var(--teal-dark);
  text-decoration: none;
}
.jackpot-card__link:hover { color: var(--teal); text-decoration: underline; }
.jackpot-card__meta { font-size: 12px; color: var(--text-mute); }

/* /jackpot-Seite: zusätzliche Sektionen */
.jackpot-page { padding: 32px 0 80px; }
.jackpot-page h1 {
  font-size: 40px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.01em;
}
.jackpot-page__sub {
  font-size: 16px; color: var(--text-mute); margin-bottom: 32px;
}
.jackpot-section { background: white; border-radius: 20px; padding: 28px 32px; margin-bottom: 24px; box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.jackpot-section h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.jackpot-section p { line-height: 1.6; color: var(--text); margin-bottom: 12px; }
.jackpot-section__live {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 14px 18px;
}
.jackpot-sparkline {
  display: flex; align-items: stretch; gap: 6px;
  background: var(--cream); border-radius: 12px; padding: 14px 12px 10px;
  height: 240px;
}
.jackpot-sparkline__col {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  min-width: 0;
}
.jackpot-sparkline__value {
  font-size: 11px; font-weight: 800; color: var(--text);
  margin-bottom: 4px; line-height: 1;
  text-align: center; align-self: stretch; width: 100%;
  white-space: nowrap;
}
.jackpot-sparkline__bar-wrap {
  flex: 1; width: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.jackpot-sparkline__bar {
  width: 100%; background: var(--teal); border-radius: 4px 4px 0 0;
  min-height: 2px; transition: height 0.5s ease;
}
.jackpot-sparkline__bar--knacked { background: var(--orange); }
.jackpot-sparkline__date {
  font-size: 10px; color: var(--text-mute); margin-top: 6px;
  line-height: 1; white-space: nowrap;
}
@media (max-width: 600px) {
  .jackpot-sparkline { gap: 3px; padding: 12px 6px 8px; height: 200px; }
  .jackpot-sparkline__value { font-size: 9px; margin-bottom: 2px; }
  .jackpot-sparkline__date { font-size: 9px; margin-top: 4px; }
}
.jackpot-disclaimer {
  font-size: 12px; color: var(--text-mute); margin-top: 32px;
  line-height: 1.5;
}
.jackpot-disclaimer p { margin-bottom: 6px; }

@media (max-width: 600px) {
  .jackpot-card { padding: 24px 22px; border-radius: 20px; }
  .jackpot-card__amount-big { font-size: 36px; }
  .jackpot-card__row { grid-template-columns: 1fr; }
  .jackpot-card__footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .jackpot-page { padding: 24px 16px 60px; }
  .jackpot-page h1 { font-size: 30px; }
  .jackpot-section { padding: 22px 20px; }
}

/* Utility-Klassen. */
.text-mute { color: var(--text-mute); }
.text-meta { font-size: 14px; color: var(--text-mute); }
.text-meta-spaced { font-size: 14px; color: var(--text-mute); margin-top: 32px; }
.text-body-lg { font-size: 16px; }
.article-callout {
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  background: var(--surface-2);
  margin: 16px 0 24px;
  font-size: 14px;
}
.article-callout--narrow {
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  background: var(--surface-2);
  margin: 24px 0;
  font-size: 14px;
}
.article-callout--lg {
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  background: var(--surface-2);
  margin: 24px 0;
  font-size: 15px;
}
.hero--archive { padding: 40px 0; }
.year-nav-row { margin-bottom: 32px; display: flex; gap: 12px; }
.archive-table-wrap { overflow-x: auto; }
.combo-ball--xs { width: 28px; height: 28px; font-size: 11px; }
.winclasses-result-block { display: block; margin-top: 32px; }
.center-flex { justify-content: center; }
.bar-fill-dynamic { transition: width 1s ease; }

/* === Zeitgeschichte-Block (Archiv-Briefing Prio 4) === */
.zeitgeschichte {
  background: white;
  border-radius: 20px;
  padding: 32px 36px;
  margin: 0 0 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border-left: 6px solid var(--teal);
}
@media (max-width: 480px) {
  .zeitgeschichte { padding: 24px 20px; }
}
.zeitgeschichte__events { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.event { display: flex; gap: 16px; align-items: flex-start; }
.event__icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; opacity: 0.85; }
.event__body { flex: 1; min-width: 0; }
.event__date {
  font-size: 14px; font-weight: 800; color: var(--teal-dark);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}
.event__text { font-size: 16px; color: var(--text); margin-bottom: 6px; }
.event__source { font-size: 12px; color: var(--text-mute); }
.event__source a {
  color: var(--text-mute); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 2px;
}
.event__source a:hover { color: var(--teal); }

.dltb-volume {
  background: var(--teal-light); border-radius: 12px;
  padding: 14px 18px; margin-bottom: 24px;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.dltb-volume__label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--teal-dark);
}
.dltb-volume__primary { font-size: 18px; font-weight: 900; color: var(--text); }
.dltb-volume__secondary { font-size: 13px; color: var(--text-mute); }
.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
@media (max-width: 480px) { .prices { grid-template-columns: 1fr; } }

.price-tile {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
}
.price-tile__label {
  font-size: 11px; font-weight: 800; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px;
}
.price-tile__price { font-size: 28px; font-weight: 900; color: var(--teal-dark); line-height: 1.1; }
.price-tile__price-eur { font-size: 14px; font-weight: 600; color: var(--text-mute); margin-top: 2px; }
.price-tile__variant { font-size: 13px; color: var(--text-mute); margin-top: 6px; }
.price-tile__compare {
  font-size: 13px; color: var(--text); margin-top: 10px;
  padding-top: 10px; border-top: 1px dashed var(--border);
}
.price-tile__note { font-size: 11px; color: var(--text-mute); font-style: italic; margin-top: 6px; }

.eule-note {
  background: var(--teal-light); border-left: 4px solid var(--teal);
  border-radius: 8px; padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.eule-note__icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; }
.eule-note__text { font-size: 15px; color: var(--text); font-style: italic; line-height: 1.65; }

/* === Jackpot-Block auf der Homepage (kompakt, unter dem Lottoschein) === */
/* Zweiter Header oberhalb des blauen Hero: full-width Section,
   dezent statt Karten-Look — wirkt wie Stockticker, nicht wie Hero-Tile. */
.hp-livebar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.jp-home {
  background: transparent;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.jp-home__cell { padding: 2px 24px; }
.jp-home__cell + .jp-home__cell { border-left: 1px solid var(--border); }
.jp-home__footer { grid-column: 1 / -1; padding-top: 6px; margin-top: 6px; border-top: 1px solid var(--border); }
@media (max-width: 860px) {
  .jp-home { grid-template-columns: 1fr; gap: 8px; }
  .jp-home__cell { padding: 2px 0; }
  .jp-home__cell + .jp-home__cell { border-left: none; border-top: 1px solid var(--border); padding-top: 8px; }
}
.jp-home__label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--text-mute); margin-bottom: 4px;
}

/* Letzte Ziehung */
.jp-home__lastdraw { display: flex; flex-direction: column; gap: 6px; }
.jp-home__lastdraw-meta { font-size: 12px; font-weight: 700; color: var(--text-mute); }
.jp-home__balls { display: flex; gap: 6px; flex-wrap: wrap; }
.jp-home__ball {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-dark); border: 2px solid var(--teal-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; color: white; font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.jp-home__ball--super {
  background: var(--orange); border-color: var(--orange); color: white;
  position: relative; cursor: help;
}
.jp-home__ball--super::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--text); color: white;
  padding: 4px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  z-index: 10;
}
.jp-home__ball--super::before {
  content: ''; position: absolute; bottom: calc(100% + 3px); left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--text);
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  z-index: 10;
}
.jp-home__ball--super:hover::after,
.jp-home__ball--super:hover::before,
.jp-home__ball--super:focus::after,
.jp-home__ball--super:focus::before { opacity: 1; }
.jp-home__cta {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--teal); font-weight: 700; font-size: 12px;
  text-decoration: none; align-self: flex-start;
}
.jp-home__cta:hover { color: var(--teal-dark); text-decoration: underline; }

/* Aktueller Jackpot */
.jp-home__amount {
  font-size: 22px; font-weight: 900; line-height: 1.05; letter-spacing: -0.01em;
  color: var(--teal-dark); font-variant-numeric: tabular-nums; margin-bottom: 2px;
}
.jp-home__amount-sub { font-size: 11px; color: var(--text-mute); }
.jp-home__last-payout {
  margin-top: 8px; padding-top: 8px;
  border-top: 1px dashed var(--border);
  font-size: 11px; color: var(--text-mute); line-height: 1.5;
}
.jp-home__transition {
  margin-top: 6px;
  background: #FFF8EC; border-left: 3px solid var(--orange);
  padding: 6px 10px; border-radius: 6px;
  font-size: 12px; color: var(--text);
}

/* Nächste Ziehung + Annahmeschluss */
.jp-home__nextdraw { font-size: 16px; font-weight: 800; color: var(--text); }
.jp-home__closing {
  font-size: 12px; color: var(--text-mute);
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  line-height: 1.4; margin-top: 2px;
}
.jp-home__countdown {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 13px; font-weight: 800;
  font-variant-numeric: tabular-nums; color: var(--text);
}
.jp-home__countdown [data-jackpot-countdown-target="countdown"].jackpot-card__metric-value--urgent {
  color: var(--red);
}
.jp-home__countdown-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); align-self: center;
  animation: jpHomePulse 1.4s ease-in-out infinite;
}
@keyframes jpHomePulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .jp-home__countdown-dot { animation: none; opacity: 0.8; }
}

/* Footer: nur noch die Quelle, mittig & dezent */
.jp-home__footer {
  text-align: center;
  font-size: 11px; color: var(--text-mute);
}
.jp-home__more {
  display: inline-block; margin-top: 4px;
  color: var(--teal); font-weight: 700; font-size: 12px;
  text-decoration: none;
}
.jp-home__more:hover { color: var(--teal-dark); text-decoration: underline; }

@media (max-width: 480px) {
  .jp-home__amount { font-size: 20px; }
  .jp-home__nextdraw { font-size: 15px; }
  .jp-home__ball { width: 26px; height: 26px; font-size: 11px; }
}





/* === Knack-Chance-Link in der Jackpot-Karte === */
.jackpot-card__chance-link {
  color: var(--teal-dark); font-weight: 700; text-decoration: none;
  font-size: 13px;
}
.jackpot-card__chance-link:hover { text-decoration: underline; }

/* === Knack-Chance-CTA-Box auf /jackpot === */
.jackpot-knackchance-cta {
  background: var(--cream);
  border: 1px solid var(--teal-light);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}
.jackpot-knackchance-cta h2 {
  margin-top: 0; color: var(--teal-dark); font-size: 22px;
}
.jackpot-knackchance-cta p {
  margin-bottom: 16px;
}
.jackpot-knackchance-cta__button {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}
.jackpot-knackchance-cta__button:hover {
  background: var(--teal-dark);
}


/* ============================================
   Knack-Chance-Erklärseite — Layout v2
   ============================================ */

.kc-page {
  --kc-accent: var(--teal);
  --kc-accent-dark: var(--teal-dark);
  --kc-accent-light: var(--teal-light);
  --kc-cream: var(--cream);
  --kc-text: var(--text);
  --kc-mute: var(--text-mute);
  --kc-radius: 14px;
  color: var(--kc-text);
}

/* --- Hero ----------------------------------- */
.kc-hero {
  background: linear-gradient(180deg, var(--kc-accent-light) 0%, #FFFFFF 100%);
  padding: 48px 20px 64px;
  border-bottom: 1px solid var(--kc-accent-light);
}
.kc-hero__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
.kc-hero__category {
  display: inline-block;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  color: var(--kc-accent-dark); background: white;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.kc-hero__title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900; line-height: 1.1;
  margin: 0 0 16px;
}
.kc-hero__subtitle {
  font-size: 19px; line-height: 1.5; color: var(--kc-text);
  margin: 0 0 16px; max-width: 520px;
}
.kc-hero__meta {
  font-size: 14px; color: var(--kc-mute); margin: 0;
}
.kc-hero__figure { margin: 0; }
.kc-hero__figure picture { display: block; }
.kc-hero__figure img {
  display: block; width: 100%; height: auto;
  border-radius: var(--kc-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.kc-hero__figure figcaption {
  font-size: 14px; color: var(--kc-mute);
  text-align: center; margin-top: 12px; font-style: italic;
}

@media (min-width: 880px) {
  .kc-hero__inner { grid-template-columns: 1.1fr 1fr; gap: 48px; }
  .kc-hero__copy { text-align: left; }
}

/* --- Body wrapper --------------------------- */
.kc-body {
  max-width: 800px; margin: 0 auto;
  padding: 0 20px 64px;
}

/* --- Sections ------------------------------- */
.kc-section {
  padding: 48px 0;
  border-top: 1px solid #E8EDED;
}
.kc-section:first-of-type {
  border-top: none;
}
.kc-section__title {
  font-size: 26px; font-weight: 900;
  margin: 0 0 16px; line-height: 1.25;
  position: relative; padding-left: 18px;
}
.kc-section__title::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: calc(100% - 16px);
  background: var(--kc-accent); border-radius: 3px;
}
.kc-section__lead {
  font-size: 17px; line-height: 1.7; color: var(--kc-text);
  margin: 0 0 24px;
}
.kc-section__hint {
  font-size: 15px; color: var(--kc-mute);
  border-left: 3px solid var(--kc-accent-light);
  padding: 4px 0 4px 14px;
  margin: 16px 0 0;
}

/* --- Section: Calc-Steps -------------------- */
.kc-calc {
  display: flex; flex-direction: column; gap: 20px;
  counter-reset: kcstep;
}
.kc-calc__steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.kc-calc__steps li {
  counter-increment: kcstep;
  position: relative; padding: 18px 18px 18px 60px;
  background: white; border: 1px solid #E8EDED;
  border-left: 4px solid var(--kc-accent);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.kc-calc__steps li::before {
  content: counter(kcstep);
  position: absolute; left: 14px; top: 16px;
  width: 34px; height: 34px; line-height: 34px;
  background: var(--kc-accent); color: white;
  font-weight: 900; text-align: center; border-radius: 50%;
  font-size: 15px;
}
.kc-calc__step-label {
  display: block; font-weight: 800; font-size: 15px;
  color: var(--kc-accent-dark); margin-bottom: 4px;
}
.kc-calc__step-body {
  display: block; font-size: 16px; line-height: 1.55;
}
.kc-calc__figure {
  margin: 8px auto;
  max-width: 560px;
  width: 100%;
}
.kc-calc__figure img {
  display: block; width: 100%; height: auto;
  border-radius: var(--kc-radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}
.kc-calc__figure figcaption {
  font-size: 14px; color: var(--kc-mute);
  text-align: center; margin-top: 10px; font-style: italic;
}

.kc-note {
  background: #FFF8E5; border-left: 4px solid #E8B931;
  padding: 14px 16px; border-radius: 6px;
  font-size: 15px; line-height: 1.55; margin: 24px 0 0;
}

/* --- Section: Klassen-Liste ----------------- */
.kc-classes {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
  margin: 0;
}
@media (min-width: 600px) {
  .kc-classes { grid-template-columns: repeat(2, 1fr); }
}
.kc-class {
  display: flex; align-items: center; gap: 14px;
  background: white; border: 1px solid #E8EDED; border-radius: 10px;
  padding: 12px 14px;
}
.kc-class__num {
  flex-shrink: 0;
  width: 38px; height: 38px; line-height: 38px;
  background: var(--kc-accent-light); color: var(--kc-accent-dark);
  border-radius: 50%; text-align: center;
  font-weight: 900; font-size: 16px;
}
.kc-class__body {
  flex: 1; min-width: 0;
}
.kc-class__label {
  font-weight: 700; font-size: 14px; color: var(--kc-text);
  margin-bottom: 2px;
}
.kc-class__odds {
  font-size: 15px; color: var(--kc-mute);
  font-variant-numeric: tabular-nums;
}
.kc-class__odds strong { color: var(--kc-accent-dark); }

/* --- Section: Live-Block (Metric-Card) ------ */
.kc-live {
  background: linear-gradient(135deg, var(--kc-accent) 0%, var(--kc-accent-dark) 100%);
  color: white;
  border-radius: var(--kc-radius);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 0;
}
.kc-live__hero { text-align: center; margin-bottom: 24px; }
.kc-live__big {
  font-size: clamp(72px, 14vw, 120px); font-weight: 900; line-height: 1;
  letter-spacing: -2px;
}
.kc-live__big-unit {
  font-size: 0.45em; vertical-align: super; margin-left: 4px;
  font-weight: 700;
}
.kc-live__big-label {
  font-size: 15px; opacity: 0.9; max-width: 360px;
  margin: 8px auto 0;
}
.kc-live__stats {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 18px;
}
@media (min-width: 540px) {
  .kc-live__stats { grid-template-columns: repeat(3, 1fr); }
}
.kc-live__stat-value {
  font-size: 18px; font-weight: 800; line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.kc-live__stat-label {
  font-size: 12px; opacity: 0.85; text-transform: uppercase;
  letter-spacing: 0.5px; margin-top: 4px;
}
.kc-live__detail {
  font-size: 15px; line-height: 1.55; margin: 0 0 8px;
}
.kc-live__source {
  font-size: 12px; opacity: 0.75; margin: 0;
}

/* --- Section: Tabellen (Spiele-Vergleiche) -- */
.kc-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 0 0 16px;
}
.kc-table {
  width: 100%; border-collapse: collapse;
  background: white; border-radius: 10px; overflow: hidden;
  border: 1px solid #E8EDED;
  font-size: 15px;
}
.kc-table th, .kc-table td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid #F0F2F2;
}
.kc-table th {
  background: var(--kc-accent-light); color: var(--kc-accent-dark);
  font-weight: 800; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kc-table tr:last-child td { border-bottom: none; }
.kc-table td:nth-child(2), .kc-table td:nth-child(3) {
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.kc-table__highlight td {
  background: #FFF8E5; font-weight: 700;
}

/* --- Section: Historische Ereignisse -------- */
.kc-history__figure {
  margin: 8px auto 20px;
  max-width: 520px;
  width: 100%;
}
.kc-history__figure img {
  display: block; width: 100%; height: auto;
  border-radius: var(--kc-radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.kc-events {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.kc-event {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  background: white; border: 1px solid #E8EDED;
  border-radius: 10px; padding: 14px 16px;
}
@media (min-width: 640px) {
  .kc-event { grid-template-columns: 110px 1fr auto; align-items: center; }
}
.kc-event--knack { border-left: 4px solid var(--kc-accent); }
.kc-event--miss { border-left: 4px solid #D5D8D8; background: #FAFAF7; }
.kc-event__date {
  display: flex; flex-direction: column;
  font-variant-numeric: tabular-nums;
}
.kc-event__date strong { font-size: 16px; }
.kc-event__weekday { font-size: 12px; color: var(--kc-mute); }
.kc-event__stats {
  display: grid; gap: 8px 18px;
  grid-template-columns: repeat(3, 1fr);
}
.kc-event__stat { display: flex; flex-direction: column; min-width: 0; }
.kc-event__stat-label {
  font-size: 11px; color: var(--kc-mute); text-transform: uppercase;
  letter-spacing: 0.4px;
}
.kc-event__stat-value {
  font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.kc-event__outcome {
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
}
@media (min-width: 640px) { .kc-event__outcome { text-align: right; align-items: flex-end; } }
.kc-event__badge {
  display: inline-block;
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 999px;
}
.kc-event__badge--knack { background: var(--kc-accent); color: white; }
.kc-event__badge--miss { background: #E8EDED; color: var(--kc-mute); }
.kc-event__quote {
  font-size: 13px; color: var(--kc-text); font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* --- Linkbox zum Alltagsartikel ------------- */
.kc-linkbox {
  background: var(--kc-cream); border: 1px solid var(--kc-accent-light);
  border-radius: var(--kc-radius);
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}
.kc-linkbox__title {
  margin: 0 0 12px; color: var(--kc-accent-dark);
  font-size: 22px; font-weight: 900;
}
.kc-linkbox p { margin-bottom: 12px; font-size: 16px; line-height: 1.6; }
.kc-linkbox__cta {
  display: inline-block; font-weight: 800; font-size: 16px;
  color: var(--kc-accent-dark); text-decoration: none;
  padding-bottom: 2px; border-bottom: 2px solid var(--kc-accent);
}
.kc-linkbox__cta:hover { color: var(--kc-accent); }

/* --- FAQ ------------------------------------ */
.kc-faq { display: flex; flex-direction: column; gap: 10px; }
.kc-faq__item {
  background: white; border: 1px solid #E8EDED;
  border-radius: 10px;
  overflow: hidden;
}
.kc-faq__item summary {
  font-weight: 700; font-size: 16px;
  padding: 14px 18px; cursor: pointer;
  list-style: none; position: relative;
  padding-right: 44px;
  color: var(--kc-text);
}
.kc-faq__item summary::-webkit-details-marker { display: none; }
.kc-faq__item summary::after {
  content: '+'; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%); font-size: 22px; font-weight: 400;
  color: var(--kc-accent);
}
.kc-faq__item[open] summary::after { content: '−'; }
.kc-faq__item[open] summary { color: var(--kc-accent-dark); }
.kc-faq__item p {
  margin: 0; padding: 0 18px 18px;
  font-size: 15px; line-height: 1.65; color: var(--kc-text);
}

/* --- Quellen -------------------------------- */
.kc-sources {
  font-size: 14px; color: var(--kc-mute); line-height: 1.6;
  padding-left: 20px;
}
.kc-sources li { margin-bottom: 8px; }

/* --- CTA + Disclaimer ----------------------- */
.kc-cta { text-align: center; padding: 32px 0; }
.kc-cta__button {
  display: inline-block;
  background: var(--kc-accent); color: white;
  font-weight: 800; font-size: 16px;
  padding: 14px 32px; border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.kc-cta__button:hover { background: var(--kc-accent-dark); }
.kc-disclaimer {
  border-top: 1px solid #E8EDED;
  padding: 20px 0 40px;
  font-size: 13px; color: var(--kc-mute); text-align: center;
}

/* --- Mobile-Feintuning < 480 ---------------- */
@media (max-width: 480px) {
  .kc-hero { padding: 32px 16px 40px; }
  .kc-hero__title { font-size: 28px; }
  .kc-hero__subtitle { font-size: 16px; }
  .kc-body { padding: 0 16px; }
  .kc-section { padding: 36px 0; }
  .kc-section__title { font-size: 22px; }
  .kc-live { padding: 24px 18px; }
  .kc-live__big { letter-spacing: -1px; }
  .kc-event__stats { grid-template-columns: 1fr; }
}


/* Homepage-Guide-Block: dezenter "Alle Ratgeber"-Link unter den Vorschau-Karten */
.guide-grid__more {
  display: inline-block;
  margin: 16px auto 0;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid var(--teal);
  border-radius: 8px;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  align-self: center;
  transition: background 0.15s, color 0.15s;
}
.guide-grid__more:hover {
  background: var(--teal); color: white;
}


/* =========================================================================
   /lotto-bundeslaender — Choropleth-Karte + Sub-Seiten
   Hauptseite nutzt das kc-hero/kc-section-Pattern aus /knack-chance.
   ========================================================================= */

/* Auf dem Hub steht ein 1080-Hero (mit Eulenbild) über dem 800-Body. Damit
   Karte und Tabelle nicht in die 800-Lesespalte gequetscht werden, hebt die
   Hub-Strecke kc-body auf 1080 und re-zentriert Lese-Sektionen auf 800. */
.bl-index .kc-body { max-width: 1080px; }
.bl-index .kc-section { max-width: 800px; margin-left: auto; margin-right: auto; }
.bl-index .kc-section--wide { max-width: 1080px; }

/* Karten-Sektion */
.bl-map-section { padding-top: 24px; }
.bl-map-section__toggles { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 24px 0 18px; }
.bl-map-section__toggles button {
  appearance: none; background: transparent; border: 1.5px solid var(--teal);
  color: var(--teal-dark); padding: 8px 20px; border-radius: 999px;
  font-weight: 700; font-size: 14px; cursor: pointer; transition: background 0.15s, color 0.15s;
}
.bl-map-section__toggles button.is-active { background: var(--teal); color: white; }
.bl-map-section__toggles button:hover { background: var(--teal-light); }
.bl-map-section__toggles button.is-active:hover { background: var(--teal-dark); }

.bl-map-section__grid { display: grid; grid-template-columns: 1fr 280px; gap: 28px; align-items: start; }
.bl-map-section__svg-wrap { min-height: 360px; }
.bl-map-svg { display: block; width: 100%; height: auto; max-height: 560px; }
.bl-map-path {
  stroke: #ffffff; stroke-width: 1; cursor: pointer;
  transition: stroke 0.15s ease, stroke-width 0.15s ease, filter 0.15s ease;
}
.bl-map-path.is-hover { stroke: var(--teal-dark); stroke-width: 2.5; filter: drop-shadow(0 1px 2px rgba(15,110,86,0.25)); }
.bl-map-anchor { cursor: pointer; -webkit-tap-highlight-color: transparent; }
.bl-map-anchor:focus { outline: none; }
.bl-map-anchor:focus-visible .bl-map-path {
  stroke: var(--teal-dark); stroke-width: 2.5;
}

.bl-map-label {
  font-size: 10px; font-weight: 700; fill: var(--teal-dark);
  pointer-events: none; user-select: none;
  paint-order: stroke; stroke: rgba(255,255,255,0.85); stroke-width: 2.5px;
  letter-spacing: 0.5px;
}
.bl-map-label--inverted { fill: #ffffff; stroke: rgba(15,110,86,0.55); }

.bl-map-section__panel {
  background: var(--teal-light); border-radius: 14px; padding: 20px;
  min-height: 220px; position: sticky; top: 16px;
}
.bl-map-panel__name { font-size: 19px; color: var(--text); margin: 0 0 4px; font-weight: 800; }
.bl-map-panel__estimate-tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--text-mute); font-style: italic; margin: 0 0 12px; }
.bl-map-panel__stats { list-style: none; padding: 0; margin: 12px 0 16px; display: grid; gap: 10px; }
.bl-map-panel__stat { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding: 6px 10px; border-radius: 8px; }
.bl-map-panel__stat.is-active { background: white; box-shadow: inset 0 0 0 1.5px var(--teal); }
.bl-map-panel__stat-label { font-size: 12px; color: var(--text-mute); }
.bl-map-panel__stat.is-active .bl-map-panel__stat-label { color: var(--teal-dark); font-weight: 700; }
.bl-map-panel__stat-value { font-size: 16px; font-weight: 700; color: var(--teal-dark); font-variant-numeric: tabular-nums; }
.bl-map-panel__stat.is-active .bl-map-panel__stat-value { font-size: 20px; }
.bl-map-panel__cta {
  display: block; text-align: center;
  background: var(--teal); color: white; text-decoration: none;
  padding: 10px 14px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: background 0.15s, transform 0.1s;
}
.bl-map-panel__cta:hover { background: var(--teal-dark); }
.bl-map-panel__cta:active { transform: translateY(1px); }
.bl-map-section__hint { font-size: 14px; color: var(--text-mute); margin: 0; line-height: 1.45; }

.bl-map-section__scale { margin-top: 20px; }
.bl-map-scale { display: flex; gap: 1px; border-radius: 6px; overflow: hidden; }
.bl-map-scale__cell {
  flex: 1; padding: 8px 4px; text-align: center;
  font-size: 11px; color: var(--text); font-variant-numeric: tabular-nums; font-weight: 600;
}
.bl-map-scale__cell--dark { color: white; }

.bl-map-section__disclaimer { font-size: 13px; color: var(--text-mute); margin: 16px 0 0; font-style: italic; text-align: center; }
.bl-map-section__noscript { padding: 24px; background: var(--teal-light); border-radius: 8px; color: var(--text); }

.bl-eule {
  margin: 18px 0 0; padding: 16px 20px;
  background: white; border-left: 4px solid var(--teal); border-radius: 6px;
  color: var(--text); font-size: 17px; line-height: 1.55; font-style: italic;
}

.bl-subheading { font-size: 19px; color: var(--text); margin: 24px 0 10px; font-weight: 800; }

.bl-toplist { list-style: none; padding: 0; margin: 0; }
.bl-toplist li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid #E5E9EE;
}
.bl-toplist li:last-child { border-bottom: 0; }
.bl-toplist a { color: var(--teal-dark); font-weight: 700; text-decoration: none; }
.bl-toplist a:hover { text-decoration: underline; }
.bl-toplist span { color: var(--text-mute); font-variant-numeric: tabular-nums; }

.bl-table-wrap { overflow-x: auto; }
.bl-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bl-table th, .bl-table td { padding: 9px 10px; text-align: right; border-bottom: 1px solid #E5E9EE; }
.bl-table thead th { background: var(--teal-light); color: var(--teal-dark); font-weight: 700; }
.bl-table th[scope="row"] { text-align: left; }
.bl-table th[scope="row"] a { color: var(--teal-dark); font-weight: 700; text-decoration: none; }
.bl-table th[scope="row"] a:hover { text-decoration: underline; }
.bl-table__estimate { color: var(--text-mute); cursor: help; }
.bl-table tbody tr:nth-child(even) { background: #FAFBFC; }

.bl-sources p { font-size: 13px; color: var(--text-mute); line-height: 1.5; }

.bl-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center; margin: 40px 0 0; }
.bl-actions__back {
  color: var(--teal-dark); text-decoration: none; font-weight: 700; padding: 10px 18px;
}
.bl-actions__back:hover { text-decoration: underline; }
.bl-actions__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.bl-cta {
  display: inline-block; padding: 12px 22px; border-radius: 8px;
  background: var(--teal); color: white; font-weight: 700; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  border: 2px solid var(--teal);
}
.bl-cta:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.bl-cta:active { transform: translateY(1px); }

/* Hero-Variante ohne Bild — zentrierter Block für Sub-Seiten. */
.kc-hero--no-figure .kc-hero__inner { grid-template-columns: 1fr; text-align: left; max-width: 800px; }
@media (min-width: 880px) {
  .kc-hero--no-figure .kc-hero__inner { grid-template-columns: 1fr; }
}

/* Sub-Seite Metric-Cards */
.bl-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; }
.bl-metric {
  background: white; border-radius: 14px; padding: 22px;
  box-shadow: 0 1px 6px rgba(20,40,60,0.05);
}
.bl-metric__value { font-size: 32px; font-weight: 800; color: var(--teal-dark); line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.bl-metric__label { font-size: 14px; color: var(--text); margin-bottom: 4px; }
.bl-metric__sub { font-size: 12px; color: var(--text-mute); }
.bl-metric__estimate { font-style: italic; }

.bl-source { font-size: 13px; color: var(--text-mute); word-break: break-all; margin: 0; }
.bl-source__label { font-weight: 700; }
.bl-source a { color: var(--teal); }

.bl-neighbours { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.bl-neighbour {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-dark);
    text-decoration: none;
    transition: background-color 0.15s, border-color 0.15s;
}
.bl-neighbour:hover { background-color: var(--teal); border-color: var(--teal); color: #fff; }

/* Mobile */
@media (max-width: 720px) {
  .bl-map-section__grid { grid-template-columns: 1fr; }
  .bl-map-section__panel { min-height: auto; position: static; }
  .bl-metrics { grid-template-columns: 1fr; }
  .bl-show h1 { font-size: 26px; }
  .bl-map-scale__cell { font-size: 10px; padding: 6px 2px; }
  .bl-map-label { font-size: 9px; }
}

/* === Beliebte-Kombinationen-Hub-Seite === */
.combo-hub__hero {
  background: linear-gradient(180deg, var(--cream) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--teal-light);
  padding: 48px 20px 56px;
}
.combo-hub__hero-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
.combo-hub__hero-copy h1 {
  font-size: clamp(28px, 5vw, 44px); font-weight: 900; line-height: 1.15;
  margin: 0 0 16px;
}
.combo-hub__subline {
  font-size: 18px; line-height: 1.5; color: var(--text);
  margin: 0; max-width: 540px;
}
.combo-hub__hero-figure { margin: 0; }
.combo-hub__hero-figure picture { display: block; }
.combo-hub__hero-figure img {
  display: block; width: 100%; height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 880px) {
  .combo-hub__hero { padding: 64px 24px 72px; }
  .combo-hub__hero-inner { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}

.combo-hub__list {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin: 28px 0 8px;
}
.combo-hub__item {
  background: white;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
/* Selektor-Specificity hier bewusst .combo-hub__item .combo-hub__item-title,
   weil .article-page__content h3 sonst mit margin-top: 32px durchschlägt. */
.combo-hub__item .combo-hub__item-title {
  margin: 0 0 10px;
  font-size: 19px; font-weight: 800;
  color: var(--teal-dark);
}
.combo-hub__item-body p { margin: 0 0 12px; }
.combo-hub__item-body p:last-child { margin-bottom: 0; }
.combo-hub__item-cta {
  font-weight: 700;
}
.combo-hub__item-cta a { color: var(--teal-dark); }

/* Prominente Kästen: highlight (teal, positiv) und warning (orange, kritisch).
   Beide nutzen denselben Box-Stil, nur die Akzentfarbe unterscheidet sich. */
.combo-hub__highlight,
.combo-hub__warning {
  border-left-width: 6px;
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin: 32px 0;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.combo-hub__highlight {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 100%);
  border-left-color: var(--teal);
}
.combo-hub__warning {
  background: linear-gradient(135deg, #FFF4E5 0%, #FFFBF2 100%);
  border-left-color: #E08A1A;
}
.combo-hub__highlight > strong:first-child,
.combo-hub__warning > strong:first-child {
  display: block;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px;
}
.combo-hub__highlight > strong:first-child { color: var(--teal-dark); }
.combo-hub__warning > strong:first-child { color: #B26A0F; }
.combo-hub__highlight p:last-child,
.combo-hub__warning p:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
  .combo-hub__hero { padding: 32px 16px 40px; }
  .combo-hub__item { padding: 18px 18px; }
  .combo-hub__item-title { font-size: 17px; }
}
