/* ═══════════════════════════════════════════════════════
   MEMOBONUS v3 — dunkel, wuchtig, ein Blau/Lila-Akzent
   Archivo (Expanded Black für Display) · Space Mono (Technik)
   ═══════════════════════════════════════════════════════ */

:root {
  --bg:      #06070c;
  --panel:   #0c0e18;
  --panel-2: #10131f;
  --line:    rgba(148,158,190,.13);
  --txt:     #f2f4fa;
  --mut:     #97a0bd;
  --vio:     #8b5cf6;
  --vio-hi:  #a98ffb;
  --blue:    #5b7cfa;
  --grad:    linear-gradient(92deg, #5b7cfa, #8b5cf6 70%);
  --sans: "Archivo", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --wrap: min(1180px, calc(100vw - 44px));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--txt);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(139,92,246,.4); }
a { color: inherit; }
.mono { font-family: var(--mono); }
.wrap { width: var(--wrap); margin: 0 auto; }
.wrap--narrow { max-width: 780px; }

/* Display-Typo: breit + schwarz + uppercase */
.display, .hero__h1, .sec-title {
  font-family: var(--sans);
  font-weight: 900;
  font-stretch: 118%;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .96;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 13px 24px; border: 1px solid transparent; border-radius: 8px;
  font: 800 13px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.btn--big { padding: 17px 32px; font-size: 14px; }
.btn--main {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 22px rgba(124,92,250,.35), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--main:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,92,250,.5), inset 0 1px 0 rgba(255,255,255,.22); }
.btn--main:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--txt); border-color: rgba(148,158,190,.3); }
.btn--ghost:hover { border-color: var(--vio-hi); color: var(--vio-hi); }
.btn:focus-visible { outline: 2px solid var(--vio-hi); outline-offset: 3px; }

/* ── Topbar: nur Logo, zentriert, ohne Hintergrund ── */
.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 16px;
}
.brand { display: inline-flex; }
.brand img { display: block; height: 38px; width: auto; filter: drop-shadow(0 2px 12px rgba(0,0,0,.6)); }
.badge18 {
  font-size: 11px; font-weight: 700; color: var(--vio-hi);
  border: 1px solid rgba(139,92,246,.5); border-radius: 6px;
  padding: 6px 8px; flex: none;
}

/* ── Hero ── */
.hero { position: relative; min-height: min(62vh, 600px); display: flex; align-items: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background: url("/img/background.webp") center 32% / cover no-repeat;
  filter: brightness(.7) saturate(.95);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,7,12,.94) 0%, rgba(6,7,12,.66) 48%, rgba(6,7,12,.22) 100%),
    linear-gradient(180deg, rgba(6,7,12,.6) 0%, rgba(6,7,12,0) 32%, var(--bg) 97%);
}
.hero__memo {
  position: absolute; z-index: 2; bottom: 0;
  right: max(1vw, calc((100vw - 1380px) / 2));
  width: min(38vw, 560px); height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.7)) drop-shadow(0 0 40px rgba(139,92,246,.25));
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  height: 190px; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,7,12,0) 0%, rgba(6,7,12,.55) 55%, var(--bg) 100%);
}
.hero__in {
  position: relative; z-index: 4;
  width: var(--wrap); margin: 0 auto; padding: 108px 0 64px;
  max-width: 640px; margin-left: max(22px, calc((100vw - 1180px) / 2));
}
.hero__h1 { font-size: clamp(42px, 5.4vw, 74px); margin: 0 0 16px; }
.hero__h1 span {
  display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { color: var(--mut); font-size: 17px; max-width: 47ch; font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__legal { margin-top: 20px; font-size: 10.5px; letter-spacing: .14em; color: rgba(151,160,189,.6); }

/* ── Sections ── */
.sec-head { padding: 0 0 34px; }
.sec-title { font-size: clamp(30px, 3.8vw, 50px); }
.sec-title span {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sec-sub { color: var(--mut); margin-top: 10px; font-weight: 500; }
.deals { padding: 84px 0 10px; }

/* ── Deal-Zeilen ── */
.deallist { display: flex; flex-direction: column; gap: 16px; }
.deal {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.deal:hover { border-color: rgba(139,92,246,.5); box-shadow: 0 8px 34px rgba(0,0,0,.45); transform: translateY(-2px); }
.deal--top {
  border-color: rgba(139,92,246,.6);
  background:
    linear-gradient(180deg, rgba(139,92,246,.09), rgba(12,14,24,0) 55%),
    var(--panel);
  box-shadow: 0 12px 44px rgba(91,92,250,.16);
}
.deal__rank {
  position: absolute; top: 0; left: 0; z-index: 2;
  background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  padding: 6px 12px; border-radius: 13px 0 12px 0;
  box-shadow: 0 4px 14px rgba(124,92,250,.4);
}
.deal__grid {
  display: grid; grid-template-columns: 108px minmax(0, 1fr) auto 220px;
  gap: 26px; align-items: center; padding: 26px 26px 26px 30px;
}
.deal--top .deal__grid { padding-top: 34px; padding-bottom: 30px; }

.deal__tile {
  width: 108px; height: 108px; border-radius: 12px;
  background: var(--panel-2);
  border: 1px solid rgba(148,158,190,.18);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 10px;
}
.deal--top .deal__tile { border-color: rgba(139,92,246,.55); box-shadow: inset 0 0 26px rgba(139,92,246,.12); }
.deal__logo {
  font: 900 12.5px/1.15 var(--sans); font-stretch: 102%;
  text-transform: uppercase; letter-spacing: .03em;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis;
}
.deal__logoimg { max-width: 88%; max-height: 56px; object-fit: contain; }

.deal__eyebrow {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mut);
}
.deal__eyebrow b { color: var(--vio-hi); }

.deal__title {
  font: 800 clamp(21px, 1.9vw, 27px)/1.15 "Sora", var(--sans);
  letter-spacing: -.01em; margin-top: 6px;
}
.deal__title b { font-weight: 800; }
.deal__title span {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.deal--top .deal__title { font-size: clamp(23px, 2.2vw, 31px); }
.deal__sub { color: var(--mut); font-size: 13.5px; font-weight: 500; margin-top: 6px; }

.deal__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.fspill {
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 12px/1 var(--sans); letter-spacing: .03em; color: var(--vio-hi);
  background: rgba(139,92,246,.13);
  border: 1px solid rgba(139,92,246,.5); border-radius: 999px;
  padding: 8px 13px; white-space: nowrap;
}
.pays { display: inline-flex; align-items: center; gap: 6px; }
.pay {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 26px; border-radius: 5px;
  background: #f4f5f9; font-style: normal; overflow: hidden;
}
.pay img { max-width: 82%; max-height: 70%; object-fit: contain; display: block; }
.pay--more {
  background: rgba(148,158,190,.12); color: var(--mut);
  font-size: 10.5px; font-weight: 700; width: 34px;
  border: 1px solid var(--line);
}

/* Wager / Max Bet Quadrate */
.deal__squares { display: flex; gap: 12px; }
.square {
  width: 88px; height: 88px; border-radius: 12px;
  background: var(--panel-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  text-align: center; padding: 6px;
}
.square b { font: 900 21px/1 var(--sans); font-stretch: 110%; }
.square span { font-size: 8.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mut); }

.deal__act { display: flex; flex-direction: column; align-items: stretch; gap: 10px; min-width: 210px; }
.deal__more {
  background: none; border: none; cursor: pointer;
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mut); padding: 6px;
  transition: color .15s;
}
.deal__more:hover { color: var(--vio-hi); }
.deal__more::after { content: " ▾"; font-size: 9px; }
.deal__more[aria-expanded="true"]::after { content: " ▴"; }

.deal__details { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.deal__details-in { overflow: hidden; min-height: 0; }
.deal__details-in ul { list-style: none; }
.deal.open .deal__details { grid-template-rows: 1fr; }
.deal.open .deal__details-in { padding: 0 26px 24px 160px; }
.deal__paysall {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line);
}
.deal__paysall > .mono {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mut);
}
.deal__paysall .pays { flex-wrap: wrap; }
.deal__details li {
  position: relative; padding: 0 0 9px 24px;
  color: var(--mut); font-size: 14px; font-weight: 500; max-width: 72ch;
}
.deal__details li::before { content: "→"; position: absolute; left: 0; color: var(--vio); }

.deallist__fine { margin-top: 22px; font-size: 10.5px; letter-spacing: .1em; color: rgba(151,160,189,.55); }

/* Code-Chip */
.codechip {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #0a0c14;
  border: 1px dashed rgba(139,92,246,.55); border-radius: 8px;
  padding: 11px 16px; cursor: pointer; color: var(--txt);
  transition: border-color .15s, background .15s;
}
.codechip:hover { border-color: var(--vio-hi); background: #12101f; }
.codechip:focus-visible { outline: 2px solid var(--vio-hi); outline-offset: 3px; }
.codechip__label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mut); }
.codechip__code { font-size: 15px; font-weight: 700; letter-spacing: .16em; color: var(--vio-hi); }
.codechip svg { color: var(--mut); }
.codechip.copied { border-color: #7ce7a2; }
.codechip.copied .codechip__code { color: #7ce7a2; }
.codechip--none { border-style: solid; border-color: var(--line); cursor: default; }
.codechip--none:hover { background: #0a0c14; border-color: var(--line); }

/* ── Trust ── */
.trust { padding: 90px 0 20px; }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.trust__item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 24px;
}
.trust__num { font-size: 12px; font-weight: 700; color: var(--vio-hi); letter-spacing: .2em; }
.trust__item h3 { font: 800 17px/1.3 var(--sans); text-transform: uppercase; letter-spacing: .03em; margin: 12px 0 8px; }
.trust__item p { color: var(--mut); font-size: 14.5px; font-weight: 500; }

/* ── FAQ ── */
.faq { padding: 90px 0 30px; }
.faq__list { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  border: 1px solid var(--line); border-radius: 12px; background: var(--panel);
  transition: border-color .2s;
}
.faq__item[open] { border-color: rgba(139,92,246,.5); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 17px 20px;
  font: 700 15.5px/1.4 var(--sans);
  display: flex; gap: 14px; align-items: baseline;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .mono { color: var(--vio-hi); font-size: 12px; flex: none; }
.faq__item summary:hover { color: var(--vio-hi); }
.faq__item p { padding: 0 20px 18px 52px; color: var(--mut); font-size: 14.5px; font-weight: 500; }
.faq__item p b { color: var(--txt); }

/* ── Footer ── */
.foot { border-top: 1px solid var(--line); margin-top: 90px; background: var(--panel); }
.foot__top { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; justify-content: space-between; padding: 40px 0 8px; }
.foot .brand img { height: 24px; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 20px; }
.foot__nav a { font: 600 13px/1 var(--sans); color: var(--mut); text-decoration: none; }
.foot__nav a:hover { color: var(--vio-hi); }
.foot__rg { display: flex; gap: 16px; align-items: flex-start; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 22px; }
.foot__rg p { color: var(--mut); font-size: 13px; max-width: 92ch; }
.foot__rg a { color: var(--vio-hi); }
.foot__note { padding: 24px 0 32px; font-size: 10px; letter-spacing: .1em; color: rgba(151,160,189,.5); }

/* ── 18+ Gate ── */
.agegate[hidden] { display: none; }
.agegate {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 22px;
  background: rgba(6,7,12,.85); backdrop-filter: blur(12px);
}
.agegate__box {
  max-width: 460px; text-align: center;
  background: var(--panel);
  border: 1px solid rgba(139,92,246,.4); border-radius: 16px;
  padding: 42px 36px 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}
.agegate__stamp {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 12px;
  background: rgba(139,92,246,.14);
  border: 1px solid rgba(139,92,246,.5); color: var(--vio-hi);
  font-size: 18px; font-weight: 700;
}
.agegate__title { font: 900 26px/1.1 var(--sans); font-stretch: 114%; text-transform: uppercase; margin: 18px 0 10px; }
.agegate__box > p { color: var(--mut); font-size: 14px; font-weight: 500; }
.agegate__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.agegate__small { margin-top: 20px; font-size: 9.5px; letter-spacing: .12em; color: rgba(151,160,189,.55); }

/* ── Toast ── */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 90;
  transform: translate(-50%, 80px); opacity: 0;
  background: var(--grad); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
  padding: 12px 22px; border-radius: 8px;
  box-shadow: 0 8px 30px rgba(124,92,250,.45);
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ── Reveal (reines CSS — läuft immer durch) ── */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal { animation: rise .65s ease backwards; }
.hero__in > .reveal:nth-child(2) { animation-delay: .08s; }
.hero__in > .reveal:nth-child(3) { animation-delay: .16s; }
.hero__in > .reveal:nth-child(4) { animation-delay: .24s; }
.hero__in > .reveal:nth-child(5) { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .reveal { animation: none; }
}

/* ═══ Responsive ═══ */
@media (max-width: 1120px) {
  .deal__grid { grid-template-columns: 96px minmax(0, 1fr); }
  .deal__tile { width: 96px; height: 96px; }
  .deal__squares { grid-column: 1 / -1; }
  .square { width: 78px; height: 78px; }
  .deal__act { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }
  .deal__act .btn { order: 0; }
  .deal__more { margin-left: auto; }
  .deal.open .deal__details-in { padding-left: 30px; }
}

@media (max-width: 820px) {
  .topnav { display: none; }
  .trust__grid { grid-template-columns: 1fr; }
  .hero__memo { opacity: .9; }
}

@media (max-width: 680px) {
  :root { --wrap: calc(100vw - 32px); }
  .hero { min-height: 540px; }
  .hero__in { padding: 100px 0 120px; margin: 0 auto; max-width: none; width: var(--wrap); }
  .hero__h1 { font-size: clamp(40px, 11.5vw, 58px); }
  /* Memo hinter dem Text statt darunter — kein Extra-Scrollweg */
  .hero__memo {
    right: 50%; transform: translateX(50%);
    width: min(88vw, 400px); opacity: .38;
    filter: brightness(.8) drop-shadow(0 0 40px rgba(139,92,246,.25));
  }
  .hero__cta .btn { flex: 1 1 100%; }
  .deal__grid { grid-template-columns: 1fr; gap: 16px; padding: 34px 18px 20px; }
  /* Logo-Kachel: einheitliches Quadrat, zentriert */
  .deal__tile { width: 104px; height: 104px; padding: 10px; margin: 0 auto; }
  .deal__logoimg { max-width: 84%; max-height: 62px; width: auto; height: auto; }
  /* Text + Zahlungsmethoden zentriert, Bonus-Zeile größer */
  .deal__info { text-align: center; }
  .deal__meta { justify-content: center; }
  .deal__title { font-size: clamp(22px, 6vw, 27px); margin-top: 8px; }
  .deal--top .deal__title { font-size: clamp(24px, 6.6vw, 30px); }
  .deal__squares { display: grid; grid-template-columns: 1fr 1fr; }
  .square { width: auto; height: 70px; }
  .deal__act { flex-direction: column; align-items: stretch; }
  .deal__more { margin: 0; }
  .codechip { width: 100%; }
  .deal.open .deal__details-in { padding: 0 18px 20px; }
  .foot__rg { flex-direction: column; }
}
