/* ═══════════════════════════════════════════════════════════════════════════
   HASHIBONUS — „Diamond-Painting-Atelier"
   Helles Pink als Papier, Creme-Karten, Hot-Pink-Akzent, Sticker-Outlines,
   facettierte Steinchen als Signatur-Motiv. Fredoka (Display) + JetBrains Mono.
   Grammatik: (1) Sticker-Outline mit hartem Offset-Schatten, (2) Facetten-Gem
   als Marker, (3) Mono-Micro-Labels mit Nummern, (4) gepunktete Leinwand-
   Textur, (5) zwei Radien: 22px Flächen / 8px Chips.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --paper:   #ffeef4;
  --paper-2: #ffe3ec;
  --paper-3: #ffd6e3;
  --cream:   #fffaf7;
  --pink:    #ff4f8b;
  --pink-deep: #e0336f;
  --pink-soft: #ffbdd4;
  --ink:     #4a1330;
  --mid:     #8c3a5e;
  --soft:    #c98aa6;
  --line:    rgba(140, 58, 94, .16);
  --night:   #2c0d1d;
  --night-2: #3a1128;
  --gold:    #ffc542;
  --mint:    #37d39a;
  --sky:     #57b8ff;
  --lilac:   #b48cff;
  --twitch:  #9146ff;
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 8px;
  --sticker: 4px 4px 0 var(--ink);
  --sticker-lg: 7px 7px 0 var(--ink);
  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-num: 'JetBrains Mono', ui-monospace, monospace;
  --w: 1180px;
}

html { scroll-behavior: smooth; }
html.age-locked { overflow: hidden; }
body.hb-body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body.hb-body::before {
  /* Leinwand-Raster + zarte Streifen (Echo der alten Seite, aber leise) */
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 1px 1px, rgba(140,58,94,.13) 1px, transparent 1.6px) 0 0 / 18px 18px,
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(255,79,139,.045) 88px 176px);
}
.page-root { position: relative; z-index: 1; }
html.age-locked .page-root { filter: blur(12px) saturate(.8); pointer-events: none; user-select: none; }
.font-num { font-family: var(--font-num); }
.hb-ico { width: 18px; height: 18px; stroke-width: 2.2; flex: none; }
.hidden { display: none !important; }
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 32px; } }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 20px; border-radius: var(--r-md); border: 2px solid var(--ink);
  color: var(--ink); background: var(--cream); cursor: pointer; text-decoration: none;
  transition: transform .16s cubic-bezier(.2,.8,.2,1), box-shadow .16s cubic-bezier(.2,.8,.2,1), background .16s;
  box-shadow: var(--sticker); white-space: nowrap; user-select: none;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.btn--primary { background: var(--pink); color: #fff; }
.btn--primary:hover { background: var(--pink-deep); }
.btn--dark { background: var(--night); color: var(--cream); box-shadow: 4px 4px 0 var(--pink-deep); }
.btn--dark:hover { box-shadow: 6px 6px 0 var(--pink-deep); }
.btn--dark:active { box-shadow: 1px 1px 0 var(--pink-deep); }
.btn--ghost { background: transparent; box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.55); box-shadow: 3px 3px 0 var(--ink); }
.btn--sm { padding: 9px 14px; font-size: 14px; border-width: 2px; box-shadow: 3px 3px 0 var(--ink); }
.btn--lg { padding: 16px 26px; font-size: 17px; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }
.btn .hb-ico { width: 16px; height: 16px; }

/* ─── Sticker-Karte + Gem ────────────────────────────────────────────────── */
.sticker { background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--sticker-lg); }
.gem {
  display: inline-block; width: 14px; height: 14px; border-radius: 30%; flex: none;
  --gem-c: var(--pink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.85) 0 16%, transparent 17%),
    linear-gradient(315deg, rgba(0,0,0,.3) 0 16%, transparent 17%),
    linear-gradient(45deg, rgba(255,255,255,.28) 0 50%, rgba(0,0,0,.14) 50%),
    var(--gem-c);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
}
.gem--gold { --gem-c: var(--gold); } .gem--mint { --gem-c: var(--mint); }
.gem--sky { --gem-c: var(--sky); } .gem--lilac { --gem-c: var(--lilac); } .gem--pink { --gem-c: var(--pink); }
.gem--lg { width: 22px; height: 22px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-num); font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mid);
}
.kicker .gem { width: 12px; height: 12px; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.hb-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--pink); border-bottom: 2px solid var(--ink);
  box-shadow: 0 4px 0 rgba(74,19,48,.12);
}
.hb-header__inner { max-width: var(--w); margin: 0 auto; padding: 0 20px; height: 74px; display: flex; align-items: center; gap: 18px; transition: height .2s; }
.hb-header.is-scrolled .hb-header__inner { height: 62px; }
@media (min-width: 768px) { .hb-header__inner { padding: 0 32px; } }
.hb-logo { display: flex; align-items: center; flex: none; }
.hb-logo img { height: 40px; width: auto; filter: drop-shadow(0 2px 0 rgba(74,19,48,.25)); transition: height .2s; }
.hb-header.is-scrolled .hb-logo img { height: 34px; }
.hb-nav { display: none; align-items: center; gap: 2px; margin-left: 8px; }
@media (min-width: 1024px) { .hb-nav { display: flex; } }
.hb-nav__link {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 10px;
  color: var(--cream); font-weight: 600; font-size: 15px; text-decoration: none; position: relative; white-space: nowrap;
  border: 2px solid transparent; transition: background .15s, color .15s, border-color .15s;
}
@media (max-width: 1240px) { .hb-nav__link { font-size: 14px; padding: 8px 10px; } .hb-nav { margin-left: 0; } }
.hb-nav__link:hover { background: rgba(255,255,255,.18); }
.hb-nav__link.is-active { background: var(--night); border-color: var(--ink); color: var(--cream); }
.hb-nav__link .hb-ico { width: 16px; height: 16px; opacity: .9; }
.hb-badge {
  display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--gold); color: var(--ink); font-family: var(--font-num); font-size: 10.5px; font-weight: 700;
  border: 1.5px solid var(--ink);
}
.hb-header__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.hb-live {
  display: none; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 10px;
  background: var(--night); border: 2px solid var(--ink); color: var(--cream); font-family: var(--font-num); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-decoration: none;
}
@media (min-width: 560px) { .hb-live { display: inline-flex; } }
.hb-live__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--soft); }
.hb-live.is-live .hb-live__dot { background: #ff3b5c; box-shadow: 0 0 0 0 rgba(255,59,92,.6); animation: livepulse 1.6s infinite; }
.hb-live.is-live { border-color: #ff3b5c; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(255,59,92,.6); } 70% { box-shadow: 0 0 0 7px rgba(255,59,92,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,92,0); } }
.hb-login { display: none; }
@media (min-width: 560px) { .hb-login { display: inline-flex; } }
.hb-iconbtn {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px;
  border: 2px solid var(--ink); background: var(--cream); color: var(--ink); cursor: pointer; position: relative;
  box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s;
}
.hb-iconbtn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.hb-iconbtn .hb-badge { position: absolute; top: -8px; right: -8px; }
.hb-burger { display: inline-flex; }
@media (min-width: 1024px) { .hb-burger { display: none; } }
.hb-user { display: flex; align-items: center; gap: 8px; position: relative; }
.hb-notif { position: relative; }
.hb-userbtn {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 10px 4px 4px; border-radius: 12px;
  border: 2px solid var(--ink); background: var(--cream); cursor: pointer; box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s;
}
.hb-userbtn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.hb-avatar { width: 30px; height: 30px; border-radius: 9px; object-fit: cover; border: 1.5px solid var(--ink); background: var(--paper-2); }
.hb-avatar--txt { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; color: var(--pink-deep); }
.hb-userbtn__pts { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--ink); }
.hb-userbtn__pts .hb-ico { width: 14px; height: 14px; color: var(--pink); }
.hb-pop {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 240px; z-index: 80;
  background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--sticker-lg); padding: 6px; text-align: left;
}
.hb-pop--notif { width: 330px; max-width: calc(100vw - 24px); }
.hb-pop__head { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 8px 10px; font-family: var(--font-num); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); border-bottom: 1.5px dashed var(--line); }
.hb-pop__head b { color: var(--ink); text-transform: none; letter-spacing: 0; font-family: var(--font-display); font-size: 14px; }
.hb-pop__head button { background: none; border: 0; color: var(--pink-deep); font: inherit; cursor: pointer; text-transform: none; letter-spacing: 0; }
.hb-pop__row { display: flex; justify-content: space-between; padding: 10px; font-size: 14px; color: var(--mid); border-bottom: 1.5px dashed var(--line); }
.hb-pop__row .font-num { color: var(--ink); font-weight: 700; }
.hb-pop__item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px; border-radius: 10px; border: 0; background: none; color: var(--ink); font: inherit; font-weight: 600; font-size: 14px; text-decoration: none; cursor: pointer; text-align: left; }
.hb-pop__item:hover { background: var(--paper-2); }
.hb-pop__item .hb-ico { width: 16px; height: 16px; color: var(--pink-deep); }
.hb-pop__list { max-height: 60vh; overflow-y: auto; }
.hb-pop__empty { padding: 22px 10px; text-align: center; font-size: 13px; color: var(--mid); }
.hb-notif__item { display: flex; gap: 10px; padding: 10px; border-radius: 10px; text-decoration: none; color: var(--ink); }
.hb-notif__item:hover { background: var(--paper-2); }
.hb-notif__item.is-unread { background: rgba(255,79,139,.08); }
.hb-notif__ico { font-size: 18px; line-height: 1; }
.hb-notif__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hb-notif__body b { font-size: 14px; }
.hb-notif__body span { font-size: 12.5px; color: var(--mid); }
.hb-notif__body em { font-style: normal; font-size: 10.5px; color: var(--soft); }

/* Drawer */
.hb-drawer__overlay { position: fixed; inset: 0; background: rgba(44,13,29,.55); z-index: 70; opacity: 0; pointer-events: none; transition: opacity .25s; }
.hb-drawer__overlay.open { opacity: 1; pointer-events: auto; }
.hb-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 320px; max-width: 88vw; z-index: 80;
  background: var(--cream); border-left: 2px solid var(--ink); transform: translateX(105%); transition: transform .28s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
.hb-drawer.open { transform: translateX(0); }
.hb-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--pink); border-bottom: 2px solid var(--ink); }
.hb-drawer__logo { height: 32px; width: auto; }
.hb-drawer__user { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1.5px dashed var(--line); }
.hb-drawer__user .hb-avatar { width: 40px; height: 40px; }
.hb-drawer__user-txt { display: flex; flex-direction: column; }
.hb-drawer__user-txt span { font-size: 12px; color: var(--mid); }
.hb-drawer__nav { padding: 10px; display: flex; flex-direction: column; gap: 2px; flex: 1; overflow-y: auto; }
.hb-drawer__link { display: flex; align-items: center; gap: 12px; padding: 13px 12px; border-radius: 12px; color: var(--ink); font-weight: 600; font-size: 16px; text-decoration: none; }
.hb-drawer__link:hover { background: var(--paper-2); }
.hb-drawer__link .hb-ico { color: var(--pink-deep); }
.hb-drawer__foot { padding: 14px; border-top: 1.5px dashed var(--line); display: flex; flex-direction: column; gap: 10px; }
body.drawer-open { overflow: hidden; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 44px 0 26px; }
@media (min-width: 1024px) { .hero { padding: 64px 0 34px; } }
.hero__grid { display: grid; gap: 34px; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 7fr 5fr; gap: 56px; } }
.hero__h1 {
  font-size: clamp(42px, 7.2vw, 78px); line-height: .96; font-weight: 700; letter-spacing: -.025em; margin: 18px 0 20px; color: var(--ink);
}
.hero__h1 .hl { color: var(--pink); position: relative; white-space: nowrap; }
.hero__h1 .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.04em; height: .16em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q 12 2 25 8 T 50 8 T 75 8 T 100 8' fill='none' stroke='%23ffc542' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero__p { font-size: 18px; line-height: 1.55; color: var(--mid); max-width: 560px; margin: 0 0 26px; font-weight: 400; }
.hero__p b { color: var(--ink); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: 34px; border-top: 2px dashed var(--line); padding-top: 18px; }
.hero__stat { padding: 4px 26px 4px 0; margin-right: 26px; border-right: 2px dashed var(--line); }
.hero__stat:last-child { border-right: 0; margin-right: 0; }
.hero__stat b { display: block; font-family: var(--font-num); font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1; }
.hero__stat span { display: block; margin-top: 6px; font-family: var(--font-num); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); }

/* Atelier-Rahmen (Signatur-Motiv rechts) */
.atelier { position: relative; max-width: 440px; margin: 0 auto; width: 100%; }
.atelier__tape {
  position: absolute; top: -14px; left: 50%; width: 130px; height: 30px; transform: translateX(-50%) rotate(-4deg); z-index: 3;
  background: repeating-linear-gradient(45deg, rgba(255,197,66,.9) 0 8px, rgba(255,197,66,.7) 8px 16px); opacity: .95;
  border: 1.5px solid rgba(74,19,48,.35); border-radius: 3px;
}
.atelier__frame { padding: 16px; }
.atelier__label { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-num); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: 12px; }
.atelier__label b { color: var(--ink); }
.atelier__canvas-wrap { position: relative; border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; background: var(--cream); }
.atelier__canvas-wrap canvas { display: block; width: 100%; height: auto; }
.atelier__progress { margin-top: 12px; }
.atelier__bar { height: 10px; border: 2px solid var(--ink); border-radius: 6px; background: var(--paper-2); overflow: hidden; }
.atelier__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--pink), var(--pink-deep)); transition: width .3s; }
.atelier__meta { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--font-num); font-size: 11px; color: var(--mid); }
.atelier__meta b { color: var(--ink); }
.atelier__stub {
  position: absolute; right: -14px; bottom: 96px; transform: rotate(6deg); z-index: 3;
  background: var(--pink); color: #fff; border: 2px solid var(--ink); border-radius: 10px; padding: 8px 12px; box-shadow: var(--sticker);
  font-family: var(--font-num); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

/* ─── Sektion-Grundlagen ─────────────────────────────────────────────────── */
.sec { padding: 46px 0; }
@media (min-width: 1024px) { .sec { padding: 64px 0; } }
.sec__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 30px; margin-bottom: 26px; }
.sec__title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; margin: 10px 0 0; }
.sec__title .hl { color: var(--pink); }
.sec__sub { color: var(--mid); font-size: 16px; max-width: 520px; margin: 8px 0 0; line-height: 1.5; }

/* ─── Filter-Rail ────────────────────────────────────────────────────────── */
.rail { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.rail__chips { display: flex; gap: 8px; overflow-x: auto; padding: 6px 2px 8px; scrollbar-width: none; flex: 1; }
.rail__chips::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: var(--r-sm); white-space: nowrap;
  border: 2px solid var(--line); background: var(--cream); color: var(--ink); font: inherit; font-weight: 600; font-size: 13.5px; cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}
.chip:hover { border-color: var(--mid); transform: translateY(-1px); }
.chip.is-active { background: var(--night); border-color: var(--ink); color: var(--cream); box-shadow: 3px 3px 0 var(--pink); }
.chip .gem { width: 10px; height: 10px; }
.rail__sort { flex: none; display: flex; align-items: center; gap: 8px; }
.rail__sort label { font-family: var(--font-num); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); display: none; }
@media (min-width: 640px) { .rail__sort label { display: block; } }
.select {
  appearance: none; -webkit-appearance: none; font: inherit; font-weight: 600; font-size: 13.5px; color: var(--ink);
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234a1330' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 2px solid var(--ink); border-radius: var(--r-sm); padding: 8px 34px 8px 12px; box-shadow: 3px 3px 0 var(--ink); cursor: pointer;
}
.rail__count { font-family: var(--font-num); font-size: 12px; color: var(--mid); margin: 0 0 14px; }
.rail__count b { color: var(--ink); }

/* ─── Bonus-Ticket (Casino-Karte) ────────────────────────────────────────── */
.tickets { display: flex; flex-direction: column; gap: 20px; }
.tk {
  position: relative; display: grid; grid-template-columns: 1fr; background: var(--cream);
  border: 2px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--sticker-lg);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s;
}
.tk:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--ink); }
@media (min-width: 900px) { .tk { grid-template-columns: 176px 1fr 236px; } }
.tk__stub {
  position: relative; background: var(--night); color: var(--cream); border-radius: 20px 20px 0 0;
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
}
@media (min-width: 900px) {
  .tk__stub { border-radius: 20px 0 0 20px; flex-direction: column; justify-content: center; padding: 22px 16px; gap: 10px; }
}
.tk--top .tk__stub { background: linear-gradient(160deg, var(--pink) 0%, var(--pink-deep) 100%); }
.tk__rank { font-family: var(--font-num); font-size: 13px; font-weight: 700; letter-spacing: .1em; opacity: .85; }
@media (min-width: 900px) { .tk__rank { position: absolute; top: 12px; left: 14px; } }
.tk__logo { width: 64px; height: 64px; border-radius: 16px; background: #fff; border: 2px solid var(--ink); overflow: hidden; flex: none; display: flex; align-items: center; justify-content: center; }
@media (min-width: 900px) { .tk__logo { width: 96px; height: 96px; border-radius: 22px; } }
.tk__logo img { width: 100%; height: 100%; object-fit: cover; }
.tk__stubname { font-weight: 700; font-size: 18px; line-height: 1.1; }
@media (min-width: 900px) { .tk__stubname { display: none; } }
.tk__lic { font-family: var(--font-num); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; display: none; }
@media (min-width: 900px) { .tk__lic { display: block; } }
.tk__top { position: absolute; top: -12px; left: 14px; transform: rotate(-6deg); z-index: 2; background: var(--gold); color: var(--ink); border: 2px solid var(--ink); border-radius: 8px; padding: 5px 9px; font-family: var(--font-num); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; box-shadow: 2px 2px 0 var(--ink); }
@media (min-width: 900px) { .tk__top { left: -10px; top: -12px; } }
/* Perforation */
.tk__body { position: relative; padding: 18px 18px 14px; border-top: 2px dashed var(--line); }
@media (min-width: 900px) { .tk__body { border-top: 0; border-left: 2px dashed var(--line); padding: 22px 24px 18px; } }
.tk__body::before, .tk__body::after {
  content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--paper); border: 2px solid var(--ink); z-index: 2;
}
.tk__body::before { top: -10px; left: -10px; }
.tk__body::after { top: -10px; right: -10px; }
@media (min-width: 900px) {
  .tk__body::before { top: -11px; left: -10px; }
  .tk__body::after { top: auto; bottom: -11px; left: -10px; right: auto; }
}
.tk__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.tag { display: inline-flex; align-items: center; gap: 5px; border-radius: var(--r-sm); padding: 4px 8px; font-family: var(--font-num); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border: 1.5px solid var(--ink); }
.tag--pink { background: var(--pink); color: #fff; }
.tag--gold { background: var(--gold); color: var(--ink); }
.tag--mint { background: var(--mint); color: var(--ink); }
.tag--ghost { background: transparent; color: var(--mid); border-color: var(--line); }
.tk__name { font-size: 24px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 4px; display: none; }
@media (min-width: 900px) { .tk__name { display: block; } }
.tk__bonus { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 4px 0 12px; }
.tk__pct { font-size: 40px; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--pink); }
.tk__upto { font-size: 18px; font-weight: 600; color: var(--ink); }
.tk__upto b { font-family: var(--font-num); font-size: 22px; font-weight: 700; }
.tk__fs { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--ink); }
.tk__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 14px; }
@media (min-width: 640px) { .tk__stats { grid-template-columns: repeat(4, 1fr); } }
.tk__stat { border-top: 2px dashed var(--line); padding-top: 8px; }
.tk__stat span { display: block; font-family: var(--font-num); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); }
.tk__stat b { display: block; font-family: var(--font-num); font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 3px; }
.tk__stat b.is-sticky { color: var(--pink-deep); }
.tk__stat b.is-nonsticky { color: #1d9d6f; }
.tk__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 14px; padding-top: 12px; border-top: 2px dashed var(--line); }
.pays { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.pay { display: inline-flex; align-items: center; justify-content: center; height: 26px; padding: 0 6px; min-width: 40px; background: #fff; border: 1.5px solid var(--line); border-radius: 6px; }
.pay img { height: 16px; width: auto; max-width: 52px; object-fit: contain; }
.pay--txt { font-family: var(--font-num); font-size: 10px; font-weight: 700; color: var(--mid); }
.tk__details-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; font: inherit; font-weight: 600; font-size: 13.5px; color: var(--pink-deep); cursor: pointer; padding: 4px 0; }
.tk__details-btn .hb-ico { width: 15px; height: 15px; transition: transform .2s; }
.tk.is-open .tk__details-btn .hb-ico { transform: rotate(180deg); }
.tk__cta { display: flex; flex-direction: column; gap: 10px; padding: 0 18px 18px; }
@media (min-width: 900px) { .tk__cta { padding: 22px 22px 22px 0; justify-content: center; } }
.tk__cta .btn { width: 100%; }
.tk__tc { font-family: var(--font-num); font-size: 9.5px; letter-spacing: .06em; line-height: 1.5; text-transform: uppercase; color: var(--soft); text-align: center; }
.code { display: flex; align-items: center; justify-content: space-between; gap: 8px; border: 2px dashed var(--ink); border-radius: var(--r-sm); padding: 8px 10px; background: var(--paper-2); font-family: var(--font-num); font-size: 13px; font-weight: 700; color: var(--ink); cursor: pointer; }
.code .hb-ico { width: 14px; height: 14px; color: var(--pink-deep); }
.tk__more { grid-column: 1 / -1; max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.2,.8,.2,1); }
.tk.is-open .tk__more { max-height: 600px; }
.tk__more-in { border-top: 2px solid var(--ink); padding: 18px; display: grid; gap: 18px; background: var(--paper-2); border-radius: 0 0 20px 20px; }
@media (min-width: 900px) { .tk__more-in { grid-template-columns: 1.3fr 1fr; padding: 22px 24px; } }
.tk__more h4 { margin: 0 0 10px; font-family: var(--font-num); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); }
.pros { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pros li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.pros .gem { margin-top: 4px; }

/* Skeleton */
.skel { height: 190px; border: 2px dashed var(--line); border-radius: var(--r-lg); background: linear-gradient(90deg, var(--cream) 25%, var(--paper-2) 50%, var(--cream) 75%); background-size: 200% 100%; animation: skel 1.2s infinite linear; }
@keyframes skel { to { background-position: -200% 0; } }
.empty { text-align: center; padding: 40px; border: 2px dashed var(--line); border-radius: var(--r-lg); color: var(--mid); }

/* ─── Steinchen-Band (Night-Kontrast) ────────────────────────────────────── */
.band {
  position: relative; background: var(--night); color: var(--cream); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 1.6px) 0 0 / 18px 18px; pointer-events: none; }
.band .wrap { position: relative; }
.band__grid { display: grid; gap: 32px; align-items: center; padding: 56px 0; }
@media (min-width: 1024px) { .band__grid { grid-template-columns: 5fr 7fr; gap: 48px; padding: 72px 0; } }
.band .kicker { color: var(--pink-soft); }
.band__title { font-size: clamp(30px, 4.4vw, 48px); font-weight: 700; letter-spacing: -.02em; line-height: 1.02; margin: 12px 0 14px; }
.band__title .hl { color: var(--pink); }
.band__p { color: rgba(255,250,247,.72); font-size: 16.5px; line-height: 1.55; max-width: 480px; margin: 0 0 22px; }
.band__p b { color: var(--cream); font-weight: 600; }
.band__kw { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border: 2px dashed rgba(255,255,255,.3); border-radius: var(--r-sm); font-family: var(--font-num); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--pink-soft); margin-bottom: 22px; }
.band__kw b { color: var(--gold); font-size: 14px; }
.paintings-rail { display: flex; gap: 18px; overflow-x: auto; padding: 14px 6px 22px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.paintings-rail::-webkit-scrollbar { display: none; }
.pcard {
  flex: 0 0 236px; scroll-snap-align: start; background: var(--cream); color: var(--ink); border: 2px solid var(--ink); border-radius: var(--r-lg); box-shadow: 6px 6px 0 var(--pink);
  padding: 12px; text-decoration: none; transition: transform .18s;
}
.pcard:hover { transform: translate(-2px,-2px); }
.pcard__canvas { border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; background: #fff; }
.pcard__canvas canvas { display: block; width: 100%; height: auto; }
.pcard__name { font-weight: 700; font-size: 17px; margin: 10px 0 2px; }
.pcard__meta { display: flex; justify-content: space-between; font-family: var(--font-num); font-size: 11px; color: var(--mid); }
.pcard__meta b { color: var(--ink); }
.pcard__bar { height: 8px; border: 1.5px solid var(--ink); border-radius: 5px; background: var(--paper-2); overflow: hidden; margin-top: 8px; }
.pcard__bar i { display: block; height: 100%; background: var(--pink); width: 0; }
.pcard__reward { margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--pink-deep); }

/* ─── So funktioniert's (editorial, asymmetrisch) ────────────────────────── */
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 16px; padding: 22px 0; border-top: 2px dashed var(--line); align-items: start; }
@media (min-width: 768px) { .step { grid-template-columns: 120px 1fr 1.1fr; gap: 28px; padding: 28px 0; } }
.step__num { font-family: var(--font-num); font-size: 44px; font-weight: 700; color: var(--pink); line-height: .9; letter-spacing: -.04em; }
@media (min-width: 768px) { .step__num { font-size: 64px; } }
.step__title { font-size: 22px; font-weight: 700; margin: 0 0 6px; letter-spacing: -.01em; }
.step__text { color: var(--mid); font-size: 15.5px; line-height: 1.55; margin: 0; }
.step__text a { color: var(--pink-deep); font-weight: 600; }
.step__aside { grid-column: 2; }
@media (min-width: 768px) { .step__aside { grid-column: 3; } }
.step__aside .note { display: inline-flex; gap: 10px; align-items: center; padding: 10px 14px; border: 2px solid var(--ink); border-radius: var(--r-md); background: var(--cream); box-shadow: var(--sticker); font-size: 14px; font-weight: 600; }

/* ─── Live-Karte ─────────────────────────────────────────────────────────── */
.live { display: grid; gap: 22px; align-items: center; }
@media (min-width: 1024px) { .live { grid-template-columns: 1fr 1.25fr; gap: 40px; } }
.live__player { padding: 12px; position: relative; }
.live__player .ratio { position: relative; padding-top: 56.25%; border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; background: var(--night); }
.live__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.live__tag { position: absolute; top: -12px; right: 18px; transform: rotate(4deg); }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { max-width: 760px; }
.faq details { border-top: 2px dashed var(--line); }
.faq details:last-child { border-bottom: 2px dashed var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; font-size: 18px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-num); font-size: 22px; color: var(--pink); flex: none; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 16px; color: var(--mid); line-height: 1.55; font-size: 15.5px; }
.faq p b { color: var(--ink); }
.prose { color: var(--mid); font-size: 15px; line-height: 1.6; max-width: 760px; }
.prose a { color: var(--pink-deep); font-weight: 600; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.hb-footer { margin-top: 40px; background: var(--pink); border-top: 2px solid var(--ink); color: var(--cream); }
.hb-footer__inner { max-width: var(--w); margin: 0 auto; padding: 44px 20px 30px; display: grid; gap: 30px; }
@media (min-width: 768px) { .hb-footer__inner { grid-template-columns: 2fr 1fr 1fr; padding: 52px 32px 36px; } }
.hb-footer__brand img { height: 44px; width: auto; filter: drop-shadow(0 2px 0 rgba(74,19,48,.25)); }
.hb-footer__brand p { max-width: 420px; color: rgba(255,250,247,.85); line-height: 1.55; font-size: 15px; margin: 14px 0; }
.hb-footer__social a { display: inline-flex; align-items: center; gap: 8px; color: var(--cream); font-family: var(--font-num); font-size: 12.5px; text-decoration: none; padding: 8px 12px; border: 2px solid var(--ink); border-radius: var(--r-sm); background: var(--night); }
.hb-footer__col { display: flex; flex-direction: column; gap: 8px; }
.hb-footer__col h4 { margin: 0 0 6px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--night); font-weight: 700; }
.hb-footer__col a { color: var(--cream); text-decoration: none; font-weight: 600; font-size: 15px; }
.hb-footer__col a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.hb-footer__age { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid var(--ink); border-radius: 50%; font-size: 13px; font-weight: 700; color: var(--ink); background: var(--cream); margin-top: 6px; }
.hb-footer__bar { background: var(--night); border-top: 2px solid var(--ink); }
.hb-footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding: 14px 20px; font-size: 12.5px; color: rgba(255,250,247,.7); }
@media (min-width: 768px) { .hb-footer__bar { padding: 14px 32px; } }

/* ─── Age-Gate ───────────────────────────────────────────────────────────── */
.age-gate { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.age-gate[hidden] { display: none; }
.age-gate__backdrop { position: absolute; inset: 0; background: rgba(255,238,244,.72); }
.age-gate__card { position: relative; width: 100%; max-width: 460px; padding: 34px 30px 26px; text-align: center; animation: gate-in .5s cubic-bezier(.2,.9,.2,1.2); }
.age-gate.is-leaving .age-gate__card { animation: gate-out .4s ease-in forwards; }
.age-gate.is-leaving .age-gate__backdrop { animation: fade-out .4s ease forwards; }
@keyframes gate-in { from { transform: translateY(30px) scale(.94) rotate(-1.5deg); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes gate-out { to { transform: translateY(-20px) scale(.96); opacity: 0; } }
@keyframes fade-out { to { opacity: 0; } }
.age-gate__gems { display: flex; justify-content: center; gap: 8px; margin-bottom: 14px; }
.age-gate__gems .gem { width: 18px; height: 18px; }
.age-gate__num { font-size: 72px; font-weight: 700; line-height: 1; color: var(--pink); letter-spacing: -.06em; }
.age-gate__num span { color: var(--ink); font-size: 44px; vertical-align: top; }
.age-gate__title { font-size: 26px; font-weight: 700; margin: 8px 0 8px; letter-spacing: -.01em; }
.age-gate__text { color: var(--mid); font-size: 15px; line-height: 1.5; margin: 0 0 22px; }
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 480px) { .age-gate__actions { flex-direction: row; justify-content: center; } }
.age-gate__foot { margin: 20px 0 0; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); }

/* ─── Reveal-Zustände (JS setzt Startwerte) ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

/* ─── Steinchen-Seite (Spiel) ───────────────────────────────────────────── */
.dp-hero { padding: 40px 0 20px; }
.dp-wallet { display: inline-flex; align-items: center; gap: 12px; padding: 10px 16px 10px 12px; border: 2px solid var(--ink); border-radius: var(--r-md); background: var(--cream); box-shadow: var(--sticker); }
.dp-wallet .gem { width: 20px; height: 20px; }
.dp-wallet b { font-family: var(--font-num); font-size: 22px; font-weight: 700; }
.dp-wallet span { font-family: var(--font-num); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); display: block; }
.dp-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.dp-card { display: flex; flex-direction: column; padding: 12px; text-decoration: none; color: var(--ink); cursor: pointer; transition: transform .18s, box-shadow .18s; position: relative; }
.dp-card:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--ink); }
.dp-card.is-done { box-shadow: 7px 7px 0 var(--gold); }
.dp-card__canvas { border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; background: #fff; }
.dp-card__canvas canvas { display: block; width: 100%; height: auto; }
.dp-card__name { font-weight: 700; font-size: 19px; margin: 12px 0 2px; }
.dp-card__meta { display: flex; justify-content: space-between; font-family: var(--font-num); font-size: 11px; color: var(--mid); }
.dp-card__meta b { color: var(--ink); }
.dp-card__bar { height: 9px; border: 2px solid var(--ink); border-radius: 6px; background: var(--paper-2); overflow: hidden; margin-top: 8px; }
.dp-card__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--pink), var(--pink-deep)); width: 0; transition: width .4s; }
.dp-card__reward { margin-top: 10px; display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--pink-deep); }
.dp-card__done { position: absolute; top: -12px; right: 12px; transform: rotate(5deg); }

/* Werkbank (Detail) */
.dp-bench { display: grid; gap: 22px; align-items: start; }
@media (min-width: 1024px) { .dp-bench { grid-template-columns: minmax(0, 1.25fr) 380px; gap: 32px; } }
.dp-canvas-wrap { padding: 14px; position: relative; }
.dp-canvas-wrap .atelier__label { margin-bottom: 10px; }
.dp-canvas { border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; background: #fff; position: relative; }
.dp-canvas canvas { display: block; width: 100%; height: auto; }
.dp-panel { padding: 20px; display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }
.dp-panel h2 { font-size: 26px; font-weight: 700; margin: 0; letter-spacing: -.01em; }
.dp-panel__desc { color: var(--mid); font-size: 15px; line-height: 1.5; margin: 0; }
.dp-progress b { font-family: var(--font-num); font-size: 28px; font-weight: 700; }
.dp-progress small { font-family: var(--font-num); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); display: block; }
.dp-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dp-amt { padding: 10px 6px; border: 2px solid var(--line); border-radius: var(--r-sm); background: var(--cream); font-family: var(--font-num); font-weight: 700; font-size: 14px; cursor: pointer; color: var(--ink); transition: border-color .15s, background .15s; }
.dp-amt:hover { border-color: var(--mid); }
.dp-amt.is-active { background: var(--night); color: var(--cream); border-color: var(--ink); box-shadow: 3px 3px 0 var(--pink); }
.dp-amt[disabled] { opacity: .4; cursor: not-allowed; }
.dp-custom { display: flex; align-items: center; gap: 8px; }
.dp-custom input { flex: 1; font: inherit; font-family: var(--font-num); font-weight: 700; font-size: 15px; padding: 10px 12px; border: 2px solid var(--ink); border-radius: var(--r-sm); background: var(--cream); color: var(--ink); min-width: 0; }
.dp-summary { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-num); font-size: 12px; color: var(--mid); border-top: 2px dashed var(--line); padding-top: 12px; }
.dp-summary b { color: var(--ink); font-size: 14px; }
.dp-reward { display: flex; gap: 12px; align-items: center; padding: 12px; border: 2px dashed var(--ink); border-radius: var(--r-md); background: var(--paper-2); }
.dp-reward .gem { width: 22px; height: 22px; }
.dp-reward b { display: block; font-size: 15px; }
.dp-reward span { font-size: 12.5px; color: var(--mid); }
.dp-msg { font-size: 13.5px; color: var(--pink-deep); font-weight: 600; min-height: 18px; }
.dp-legend { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.dp-legend span { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-num); font-size: 10.5px; color: var(--mid); }
.dp-legend .gem { width: 12px; height: 12px; }
.dp-back { display: inline-flex; align-items: center; gap: 6px; color: var(--pink-deep); font-weight: 600; text-decoration: none; margin-bottom: 14px; font-size: 14.5px; }
.dp-done-banner { text-align: center; padding: 26px; }
.dp-done-banner h3 { font-size: 30px; margin: 8px 0 6px; font-weight: 700; }
.dp-done-banner p { color: var(--mid); margin: 0 0 16px; }
.dp-login { text-align: center; padding: 40px 20px; }
.dp-login h3 { font-size: 24px; font-weight: 700; margin: 12px 0 8px; }
.dp-login p { color: var(--mid); margin: 0 0 18px; }
.dp-gallery { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.dp-frame { padding: 8px; background: var(--cream); border: 2px solid var(--ink); border-radius: 10px; box-shadow: 4px 4px 0 var(--gold); }
.dp-frame canvas { display: block; width: 100%; height: auto; border-radius: 6px; }
.dp-frame small { display: block; margin-top: 6px; font-family: var(--font-num); font-size: 10.5px; color: var(--mid); text-align: center; }

/* ═══ Polish-Pass (Critic-Runde 1) ══════════════════════════════════════════ */
/* Hero: Atelier ragt in die Textspalte, zweite CTA als Link, Kit-Label statt KPI-Bar */
.hero__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--pink-deep); text-decoration: none; padding: 10px 4px; border-bottom: 2px solid transparent; }
.hero__link:hover { border-bottom-color: var(--pink-deep); }
.hero__link .hb-ico { width: 16px; height: 16px; }
.hero__h1 { margin-bottom: 16px; }
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 6.5fr 5.5fr; gap: 24px; align-items: start; }
  .atelier { transform: rotate(-2deg) translateY(10px); margin-left: -30px; max-width: 470px; }
  .atelier:hover { transform: rotate(-.5deg) translateY(6px); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
}
.kit { margin-top: 30px; max-width: 470px; border: 2px solid var(--ink); border-radius: 10px; background: var(--cream); overflow: hidden; }
.kit__head { display: flex; justify-content: space-between; padding: 7px 12px; background: var(--night); color: var(--pink-soft); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.kit__list { list-style: none; margin: 0; padding: 6px 12px; }
.kit__list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--mid); }
.kit__list li:first-child { border-top: 0; }
.kit__list b { font-family: var(--font-num); font-size: 16px; color: var(--ink); min-width: 34px; }
.kit__list .gem { width: 12px; height: 12px; }
@media (max-width: 1023px) { .kit { display: none; } .hero { padding-top: 30px; } }

/* Band: bleibt Kontrast, aber Papierfamilie (Pflaume-Pink) + Stichkante */
.band { background: linear-gradient(160deg, #8a2258 0%, #5a1439 100%); position: relative; }
.band::after { content: ''; position: absolute; inset: 12px; border: 2px dashed rgba(255,255,255,.28); border-radius: 18px; pointer-events: none; }
.band::before { opacity: .8; }
.band__p { color: rgba(255,250,247,.82); }
.band__kw { border-color: rgba(255,255,255,.4); }

/* Trenner: gestrichelt nur für Perforation/Ticket, sonst Haarlinie */
.tk__stat { border-top: 1px solid var(--line); }
.step { border-top: 1px solid var(--line); }
.dp-summary { border-top: 1px solid var(--line); }
.hb-pop__head, .hb-pop__row, .hb-drawer__user, .hb-drawer__foot { border-style: solid; border-width: 0; border-bottom-width: 1px; }
.hb-drawer__foot { border-bottom-width: 0; border-top-width: 1px; }

/* Schatten-Hierarchie: tief nur für CTAs + Hauptkarten, passiv flach */
.dp-wallet { box-shadow: none; }
.step__aside .note { box-shadow: 2px 2px 0 var(--ink); }
.hb-iconbtn, .hb-userbtn { box-shadow: 2px 2px 0 var(--ink); }
.hb-iconbtn:hover, .hb-userbtn:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn--ghost { border-width: 2px; }
.btn--sm { box-shadow: 2px 2px 0 var(--ink); }

/* Tickets: Gem-Rating, Rang 1 größer */
.tk__rating { display: inline-flex; gap: 3px; margin-left: 8px; vertical-align: middle; }
.tk__rating .gem { width: 12px; height: 12px; }
.gem--off { --gem-c: #e9cfd9; }
.gem--half { opacity: .55; }
.tk__stubname .tk__rating { display: flex; margin: 4px 0 0; }
@media (min-width: 900px) {
  .tk--top { grid-template-columns: 210px 1fr 250px; }
  .tk--top .tk__logo { width: 124px; height: 124px; border-radius: 28px; }
  .tk--top .tk__pct { font-size: 52px; }
  .tk--top .tk__name { font-size: 28px; }
  .tk--top .tk__body { padding-top: 26px; padding-bottom: 22px; }
}

/* dp-card: fertig = Gold-Rahmen */
.dp-card.is-done { border-color: #b8860b; box-shadow: 7px 7px 0 var(--gold); }

/* Age-Gate als Ticket mit Stub + Perforation */
.age-gate__card { padding: 0; overflow: visible; }
.age-gate__stub { display: flex; justify-content: space-between; gap: 10px; padding: 12px 22px; background: var(--night); color: var(--pink-soft); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; border-radius: 20px 20px 0 0; }
.age-gate__body { position: relative; padding: 30px 30px 24px; border-top: 2px dashed var(--line); }
.age-gate__body::before, .age-gate__body::after { content: ''; position: absolute; top: -11px; width: 20px; height: 20px; border-radius: 50%; background: var(--paper); border: 2px solid var(--ink); }
.age-gate__body::before { left: -12px; } .age-gate__body::after { right: -12px; }

/* Footer: Stich-Trenner + Gem-Stempel */
@media (min-width: 768px) { .hb-footer__col { border-left: 2px dashed rgba(74,19,48,.35); padding-left: 24px; } }
.hb-footer__age { width: auto; height: auto; padding: 8px 12px; border-radius: 10px; gap: 8px; display: inline-flex; align-items: center; margin-top: 8px; box-shadow: 2px 2px 0 var(--ink); }

/* Mobile-Hero: eine CTA, Link darunter, Atelier direkt danach */
@media (max-width: 639px) {
  .hero__h1 { font-size: 44px; }
  .hero__p { font-size: 16px; margin-bottom: 18px; }
  .hero__cta { gap: 6px 14px; }
  .hero__cta .btn { width: 100%; }
  .hero__grid { gap: 26px; }
}

/* ═══ Kompakte Tickets (User-Feedback) ══════════════════════════════════════ */
.tickets { gap: 14px; }
@media (min-width: 900px) {
  .tk { grid-template-columns: 150px 1fr 220px; }
  .tk--top { grid-template-columns: 172px 1fr 230px; }
  .tk__stub { padding: 14px 12px; gap: 8px; }
  .tk__logo { width: 72px; height: 72px; border-radius: 18px; }
  .tk--top .tk__logo { width: 92px; height: 92px; border-radius: 22px; }
  .tk__body { padding: 14px 20px 12px; }
  .tk--top .tk__body { padding-top: 16px; padding-bottom: 14px; }
  .tk__cta { padding: 14px 18px 14px 0; gap: 8px; }
}
.tk__badges { margin-bottom: 6px; }
.tk__name { font-size: 20px; margin: 0; }
.tk--top .tk__name { font-size: 23px; }
.tk__bonus { margin: 2px 0 8px; gap: 8px; }
.tk__pct { font-size: 34px; }
.tk--top .tk__pct { font-size: 42px; }
.tk__upto { font-size: 16px; }
.tk__upto b { font-size: 19px; }
.tk__fs { font-size: 13.5px; }
.tk__stats { gap: 6px 12px; }
.tk__stat { padding-top: 5px; }
.tk__stat span { font-size: 9.5px; }
.tk__stat b { font-size: 14px; margin-top: 2px; }
.tk__foot { margin-top: 8px; padding-top: 8px; }
.pay { height: 24px; min-width: 36px; }
.pay img { height: 14px; }
.tk__cta .btn { padding: 13px 18px; font-size: 16px; }
.tk__tc { font-size: 9px; }
.tk__stub { padding: 12px 16px; }
.tk__rank { font-size: 12px; }
@media (min-width: 900px) { .tk__rank { top: 10px; left: 12px; } }

/* ═══ Performance: Hintergrund-Raster nicht mehr "fixed" (Repaint bei jedem Scroll) ═══ */
body.hb-body::before { content: none; }
body.hb-body {
  background:
    radial-gradient(circle at 1px 1px, rgba(140,58,94,.13) 1px, transparent 1.6px) 0 0 / 18px 18px,
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(255,79,139,.045) 88px 176px),
    var(--paper);
}
.tk, .dp-card, .pcard { will-change: transform; }

/* ═══ Tickets v3: drei Zeilen (Name+Badges / Bonus / Stats), Pays + Details in der CTA-Spalte ═══ */
.tk__head { display: flex; align-items: center; gap: 6px 12px; flex-wrap: wrap; margin-bottom: 2px; }
.tk__head .tk__badges { margin: 0; }
.tk__name { display: block; font-size: 20px; }
@media (max-width: 899px) { .tk__head .tk__name { display: none; } }
.tk__bonus { margin: 2px 0 6px; }
.tk__stats { gap: 4px 12px; }
.tk__stat { padding-top: 4px; }
@media (min-width: 900px) {
  .tk { grid-template-columns: 150px 1fr 232px; }
  .tk--top { grid-template-columns: 172px 1fr 240px; }
  .tk__body { padding: 12px 20px 12px; }
  .tk--top .tk__body { padding-top: 14px; padding-bottom: 12px; }
  .tk__cta { padding: 12px 16px 12px 0; gap: 7px; justify-content: center; }
  .tk__cta .pays { justify-content: flex-start; }
}
.tk__cta .btn { padding: 12px 16px; font-size: 15.5px; }
.tk__cta .pays { gap: 4px; }
.tk__ctafoot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.tk__ctafoot .tk__tc { text-align: right; }
.tk__details-btn { font-size: 13px; padding: 2px 0; }
.tk__stub { gap: 8px; }
@media (min-width: 900px) { .tk__stub { padding: 12px 10px; } .tk__logo { width: 64px; height: 64px; border-radius: 16px; } .tk--top .tk__logo { width: 84px; height: 84px; } }

/* ═══ Tickets v4: alle gleich breit (auch Top Pick), Bonus stärker ══════════ */
@media (min-width: 900px) {
  .tk, .tk--top { grid-template-columns: 160px 1fr 232px; }
  .tk__logo, .tk--top .tk__logo { width: 80px; height: 80px; border-radius: 20px; }
  .tk--top .tk__body { padding-top: 12px; padding-bottom: 12px; }
}
.tk__logo img { width: 100%; height: 100%; object-fit: cover; }
.tk__name, .tk--top .tk__name { font-size: 20px; }
.tk__bonus {
  display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin: 4px 0 8px; padding: 6px 14px 6px 12px; border-radius: 10px;
  background: linear-gradient(90deg, #ffd6e3 0%, rgba(255,214,227,0) 100%);
  border-left: 4px solid var(--pink);
}
.tk__pct, .tk--top .tk__pct { font-size: 46px; letter-spacing: -.035em; text-shadow: 2px 2px 0 rgba(74,19,48,.12); }
.tk__upto { font-size: 17px; }
.tk__upto b { font-size: 26px; color: var(--ink); }
.tk__fs { font-size: 14px; font-weight: 700; color: var(--pink-deep); }
@media (max-width: 639px) { .tk__pct, .tk--top .tk__pct { font-size: 40px; } .tk__upto b { font-size: 22px; } }

/* Perforations-Kreise an der Ticket-Kante entfernt (User-Wunsch) */
.tk__body::before, .tk__body::after { content: none; }

/* ═══ Palette v2 — gedämpftes Rosé (Feedback: zu hell, zu weiß, zu knallig) ═══ */
:root {
  --paper:   #f0c6d4;   /* Seite: sattes Rosé statt Fast-Weiß */
  --paper-2: #e9b6c7;
  --paper-3: #e2a5ba;
  --cream:   #fbe9ef;   /* Karten: helles Rosé statt Creme-Weiß */
  --pink:    #e8648a;   /* Header/Buttons: weicheres Pink */
  --pink-deep: #c9466f;
  --pink-soft: #f2b3c6;
  --line:    rgba(74,19,48,.18);
}
body.hb-body {
  background:
    radial-gradient(circle at 1px 1px, rgba(74,19,48,.14) 1px, transparent 1.6px) 0 0 / 18px 18px,
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(74,19,48,.05) 88px 176px),
    var(--paper);
}
.tk__bonus { background: linear-gradient(90deg, #f3b8ca 0%, rgba(243,184,202,0) 100%); }
.tk__stat b.is-nonsticky { color: #157a56; }
.pay { background: #fff5f8; }
.tk__logo { background: #fff5f8; }
.chip { background: var(--cream); }
.gem--off { --gem-c: #d9a9ba; }
.hb-footer { background: var(--pink); }
.age-gate__backdrop { background: rgba(240,198,212,.78); }
.hero__h1 .hl::after { filter: saturate(.9); }
.btn--primary { background: var(--pink); }
.btn--primary:hover { background: var(--pink-deep); }
.dp-canvas, .dp-card__canvas, .pcard__canvas, .atelier__canvas-wrap { background: #fff5f8; }

/* ═══ Palette v3 — noch gedämpfter (altrosa/mauve) ═══ */
:root {
  --paper:   #dcb0c0;
  --paper-2: #d19fb1;
  --paper-3: #c68da2;
  --cream:   #f6e2e8;
  --pink:    #d4688a;
  --pink-deep: #ad4569;
  --pink-soft: #e6aabd;
  --line:    rgba(74,19,48,.2);
}
body.hb-body {
  background:
    radial-gradient(circle at 1px 1px, rgba(74,19,48,.14) 1px, transparent 1.6px) 0 0 / 18px 18px,
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(74,19,48,.05) 88px 176px),
    var(--paper);
}
.tk__bonus { background: linear-gradient(90deg, #e6aabd 0%, rgba(230,170,189,0) 100%); }
.pay, .tk__logo, .dp-canvas, .dp-card__canvas, .pcard__canvas, .atelier__canvas-wrap { background: #fbeef2; }
.band { background: linear-gradient(160deg, #6e2148 0%, #4a1330 100%); }
.pcard { box-shadow: 6px 6px 0 var(--pink-deep); }
.age-gate__backdrop { background: rgba(220,176,192,.8); }

/* Header: Nav darf schrumpfen/scrollen, User-Button & Pills nie (Zahl ragte raus) */
.hb-nav { flex: 1 1 auto; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.hb-nav::-webkit-scrollbar { display: none; }
.hb-header__right { flex: none; }
.hb-header__right > *, .hb-user > * { flex: none; }
.hb-userbtn, .hb-userbtn__pts, .hb-live { white-space: nowrap; }
.hb-userbtn { min-width: max-content; }

/* ═══════════════════════════════════════════════════════════════════════════
   SUPPORT-TICKET — eine Karte: Kopf → Gewinn-Übersicht → Verlauf → nächster Schritt → Antwort
   ═══════════════════════════════════════════════════════════════════════════ */
.tkt { max-width: 860px; padding-top: 28px; padding-bottom: 40px; }
.tkt__card { padding: 0; overflow: hidden; }
.tkt__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 22px 26px 18px; border-bottom: 2px dashed var(--line); }
.tkt__meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.tkt__title { font-size: 24px; font-weight: 700; margin: 0; letter-spacing: -.01em; overflow-wrap: anywhere; }
.tkt__payout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; padding: 16px 26px; background: var(--night); color: var(--cream); }
@media (min-width: 640px) { .tkt__payout { grid-template-columns: repeat(4, 1fr); } }
.tkt__stat span { display: block; font-family: var(--font-num); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--pink-soft); }
.tkt__stat b { display: block; font-size: 15px; margin-top: 3px; }
.tkt__thread { padding: 22px 26px 6px; display: flex; flex-direction: column; gap: 14px; }
.msg { max-width: 86%; padding: 12px 16px; border-radius: 16px; border: 2px solid var(--ink); }
.msg--support { align-self: flex-start; background: #fff; border-bottom-left-radius: 4px; }
.msg--user { align-self: flex-end; background: var(--pink-soft); border-bottom-right-radius: 4px; }
.msg__who { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.msg__body { white-space: pre-wrap; overflow-wrap: anywhere; font-size: 15px; line-height: 1.5; color: var(--ink); }
.msg__body a { color: var(--pink-deep); font-weight: 600; text-decoration: underline; }
.msg__att { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.msg__att img { width: 84px; height: 84px; object-fit: cover; border-radius: 10px; border: 2px solid var(--ink); display: block; }
.tkt__step { margin: 16px 26px 0; padding: 18px 20px; border: 2px solid var(--ink); border-radius: var(--r-md); background: var(--paper-2); }
.tkt__step--info { background: rgba(55,211,154,.14); } .tkt__step--done { background: rgba(55,211,154,.22); } .tkt__step--bad { background: rgba(214,58,90,.14); }
.tkt__step-head { display: flex; align-items: center; gap: 10px; font-size: 16px; line-height: 1.35; }
.tkt__step-head b { font-weight: 700; }
.tkt__hint { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--mid); margin: 6px 0 0; line-height: 1.5; }
.tkt__hint .hb-ico { width: 16px; height: 16px; margin-top: 2px; color: var(--pink-deep); }
.tkt__options { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }
@media (min-width: 640px) { .tkt__options { grid-template-columns: repeat(3, 1fr); } .tkt__options--casinos { grid-template-columns: repeat(2, 1fr); } }
.opt { display: flex; flex-direction: column; gap: 4px; text-align: left; padding: 12px 14px; border: 2px solid var(--ink); border-radius: 12px; background: var(--cream); font: inherit; color: var(--ink); cursor: pointer; box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s, background .15s; }
.opt:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); background: #fff; }
.opt:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.opt[disabled] { opacity: .5; pointer-events: none; }
.opt b { font-size: 15px; } .opt span { font-size: 12.5px; color: var(--mid); }
.opt--row { flex-direction: row; align-items: center; gap: 12px; }
.opt--row img, .opt__ph { width: 36px; height: 36px; border-radius: 9px; border: 1.5px solid var(--ink); object-fit: cover; display: inline-flex; align-items: center; justify-content: center; background: #fff; }
.tkt__form-row { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }
@media (min-width: 640px) { .tkt__form-row { grid-template-columns: 180px 1fr; } }
.tkt__input { width: 100%; font: inherit; font-size: 15px; padding: 11px 14px; border: 2px solid var(--ink); border-radius: 12px; background: #fff; color: var(--ink); box-sizing: border-box; resize: vertical; }
.tkt__input:focus { outline: none; box-shadow: 0 0 0 3px rgba(212,104,138,.25); }
.tkt__actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.tkt__actions-right { display: flex; gap: 8px; flex-wrap: wrap; }
.tkt__actions .tkt__hint { margin: 0; }
.tkt__err { margin-top: 10px; font-size: 14px; font-weight: 600; color: #b3213f; }
.tkt__mono { margin-top: 8px; font-size: 12px; color: var(--ink); overflow-wrap: anywhere; background: #fff; border: 1.5px solid var(--line); border-radius: 8px; padding: 8px 10px; }
.tkt__reply { margin: 16px 26px 22px; padding-top: 18px; border-top: 2px dashed var(--line); }
.tkt__files { font-size: 12px; color: var(--mid); margin-top: 8px; min-height: 14px; }
.tkt__closed { display: flex; align-items: center; gap: 10px; margin: 16px 26px 22px; padding: 14px 16px; border-radius: 12px; background: var(--paper-2); color: var(--mid); font-size: 14.5px; }
.tkt .g-note { margin-top: 12px; }

/* ═══════════════════════════════════════════════════════════════════════════
   CRYPTO-GUIDE — Section-Index, Perk-Listen, App-Mockups, Step-Timeline, Vergleich
   ═══════════════════════════════════════════════════════════════════════════ */
.g-hero { padding: 44px 0 26px; }
.g-hero__grid { display: grid; gap: 30px; align-items: center; }
@media (min-width: 1024px) { .g-hero__grid { grid-template-columns: 7fr 5fr; gap: 56px; padding-bottom: 10px; } }
.g-h1 { font-size: clamp(36px, 5.6vw, 60px); line-height: 1.02; font-weight: 700; letter-spacing: -.025em; margin: 16px 0 16px; }
.g-h1 .hl { color: var(--pink-deep); }
.g-lead { font-size: 17.5px; line-height: 1.55; color: var(--mid); max-width: 560px; margin: 0 0 22px; }
.g-stats { display: flex; flex-wrap: wrap; gap: 10px; }
.g-stat { padding: 12px 16px; border: 2px solid var(--ink); border-radius: 12px; background: var(--cream); min-width: 150px; }
.g-stat b { display: block; font-family: var(--font-num); font-size: 22px; font-weight: 700; line-height: 1; }
.g-stat span { display: block; font-size: 12px; color: var(--mid); margin-top: 5px; }
.g-picker { display: flex; flex-direction: column; gap: 10px; }
.g-picker__label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); }
.g-pick { display: grid; grid-template-columns: 36px 40px 1fr auto; align-items: center; gap: 4px 12px; padding: 12px 16px; border: 2px solid var(--ink); border-radius: 14px; background: var(--cream); color: var(--ink); text-decoration: none; box-shadow: 4px 4px 0 var(--ink); transition: transform .16s, box-shadow .16s; }
.g-pick:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.g-pick__idx { font-size: 12px; color: var(--mid); grid-row: span 2; }
.g-pick__emoji { font-size: 26px; grid-row: span 2; }
.g-pick b { font-size: 17px; }
.g-pick__sub { font-size: 12.5px; color: var(--mid); grid-column: 3; }
.g-pick .tag { grid-row: span 2; }
.g-pick--exodus:hover { box-shadow: 6px 6px 0 #1d9d6f; } .g-pick--bitpanda:hover { box-shadow: 6px 6px 0 #4f46e5; } .g-pick--revolut:hover { box-shadow: 6px 6px 0 #9333ea; }

.g-layout { display: grid; gap: 30px; padding-top: 20px; padding-bottom: 60px; }
@media (min-width: 1024px) { .g-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 44px; } }
.g-toc { display: none; }
@media (min-width: 1024px) { .g-toc { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 92px; align-self: start; padding: 12px; border: 2px solid var(--ink); border-radius: 14px; background: var(--cream); } }
.g-toc__head { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); padding: 4px 8px 8px; }
.toc-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 9px; color: var(--mid); font-weight: 600; font-size: 14px; text-decoration: none; border-left: 3px solid transparent; }
.toc-item span { width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; background: #fff; color: var(--pink-deep); }
.toc-item:hover { background: var(--paper-2); color: var(--ink); }
.toc-item.is-active { background: var(--paper-3); color: var(--ink); border-left-color: var(--pink-deep); }

.g-content { display: flex; flex-direction: column; gap: 56px; min-width: 0; }
.g-sec__head { margin-bottom: 18px; }
.g-sec__idx { display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.g-sec__idx::before { content: ''; width: 28px; height: 2px; background: var(--pink-deep); }
.g-sec__title { font-size: clamp(28px, 3.6vw, 38px); font-weight: 700; letter-spacing: -.02em; margin: 0; display: flex; align-items: center; gap: 12px; }
.g-sec__emoji { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: var(--pink); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); font-size: 24px; }
.g-card { padding: 18px 20px; box-shadow: 5px 5px 0 var(--ink); }
.g-card--intro { display: flex; gap: 14px; align-items: flex-start; }
.g-card__emoji { font-size: 28px; line-height: 1; flex: none; }
.g-card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--mid); }
.g-card p b { color: var(--ink); }
.g-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 14px; padding: 12px 14px; border-radius: 12px; border: 2px solid var(--line); background: var(--cream); font-size: 14.5px; line-height: 1.5; color: var(--mid); }
.g-note b { display: block; color: var(--ink); margin-bottom: 2px; }
.g-note--tip { border-color: #d3a30f; background: rgba(255,197,66,.22); }
.g-note--warn { border-color: #c9466f; background: rgba(212,104,138,.16); }
.g-note--sm { font-size: 13.5px; padding: 10px 12px; margin-top: 10px; }
.g-note__emoji { font-size: 20px; line-height: 1; flex: none; }
.g-perks { display: grid; gap: 14px; margin-top: 16px; }
@media (min-width: 640px) { .g-perks { grid-template-columns: 1fr 1fr; } }
.g-perkcol { padding: 14px 16px 6px; border: 2px solid var(--ink); border-radius: 14px; background: var(--cream); }
.g-perkcol__title { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.g-perkcol__title--pro { color: #157a56; } .g-perkcol__title--con { color: var(--pink-deep); }
.perk { display: grid; grid-template-columns: 26px 28px 1fr; align-items: center; gap: 8px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--ink); }
.perk__idx { font-size: 10.5px; color: var(--mid); } .perk__ico { font-size: 16px; }
.g-sub { display: flex; align-items: center; gap: 10px; margin: 26px 0 10px; font-family: var(--font-num); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); }
.g-coins { display: flex; flex-direction: column; gap: 8px; }
.g-coin { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border: 2px solid var(--line); border-radius: 12px; background: var(--cream); }
.g-coin--top { border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.g-coin--no { opacity: .75; }
.g-coin__rank { width: 34px; font-size: 13px; font-weight: 700; color: var(--pink-deep); }
.g-coin > div { flex: 1; min-width: 0; } .g-coin b { display: block; font-size: 15px; } .g-coin span:not(.tag) { display: block; font-size: 12.5px; color: var(--mid); }
.g-split { display: grid; gap: 22px; margin-top: 18px; align-items: start; }
@media (min-width: 900px) { .g-split { grid-template-columns: 340px minmax(0, 1fr); gap: 28px; } .app { position: sticky; top: 92px; } }
.app { border: 2px solid var(--ink); border-radius: 18px; background: var(--night); color: var(--cream); overflow: hidden; box-shadow: 6px 6px 0 var(--ink); }
.app__bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.1); }
.app__bar i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; } .app__bar i:nth-child(2) { background: #febc2e; } .app__bar i:nth-child(3) { background: #28c840; }
.app__bar span { margin-left: auto; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,250,247,.6); }
.app__body { padding: 14px; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.app__body small { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,250,247,.55); }
.app__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.app__row b { display: block; font-size: 22px; }
.app__big { font-size: 26px; font-weight: 700; }
.app__brand { font-weight: 700; font-size: 15px; letter-spacing: -.02em; }
.app--bitpanda .app__brand { color: #7fd1a3; } .app--revolut .app__brand { color: #cba6ff; }
.app__btn { display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 9px; background: var(--pink); color: #fff; font-weight: 700; font-size: 12.5px; }
.app__btn--full { width: 100%; box-sizing: border-box; margin-top: 4px; }
.app--exodus .app__btn { background: #37d39a; color: #0b2e21; } .app--bitpanda .app__btn { background: #4ade80; color: #0b2e21; } .app--revolut .app__btn { background: #b48cff; color: #1e0b3a; }
.app__list { display: flex; flex-direction: column; gap: 6px; }
.app__coin { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,.06); }
.app__coin b { display: block; font-size: 13px; } .app__coin small { text-transform: none; letter-spacing: 0; font-size: 11px; }
.app__sym { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.12); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.app__val { text-align: right; font-size: 12.5px; } .app__val em { display: block; font-style: normal; font-size: 10.5px; color: #7fd1a3; }
.app__panel { display: flex; flex-direction: column; gap: 8px; padding: 10px; border-radius: 12px; border: 1px dashed rgba(255,255,255,.25); background: rgba(0,0,0,.18); }
.app__field { display: flex; flex-direction: column; gap: 3px; padding: 7px 9px; border-radius: 8px; background: rgba(255,255,255,.07); font-size: 11.5px; overflow: hidden; }
.app__field span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app__two { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.app__chips { display: flex; gap: 5px; } .app__chips em { font-style: normal; padding: 3px 8px; border-radius: 6px; background: rgba(255,255,255,.1); font-size: 11px; } .app__chips em.is-on { background: #37d39a; color: #0b2e21; font-weight: 700; }
.app__actions { display: flex; gap: 8px; } .app__act { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px; border-radius: 10px; background: rgba(255,255,255,.07); font-size: 16px; } .app__act small { text-transform: none; letter-spacing: 0; } .app__act--on { outline: 2px solid var(--pink); }
.gsteps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.gstep { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 16px 0; border-top: 2px dashed var(--line); position: relative; }
.gstep:first-child { border-top: 0; padding-top: 0; }
.gstep__num { width: 36px; height: 36px; border-radius: 10px; background: var(--pink); color: #fff; border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.gstep h3 { font-size: 17px; font-weight: 700; margin: 4px 0 6px; }
.gstep p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--mid); } .gstep p b { color: var(--ink); }
.g-verdict { display: flex; gap: 14px; align-items: flex-start; margin-top: 20px; padding: 16px 18px; border: 2px solid var(--ink); border-radius: 14px; background: var(--night); color: var(--cream); box-shadow: 5px 5px 0 var(--pink-deep); }
.g-verdict__emoji { font-size: 28px; line-height: 1; }
.g-verdict h3 { margin: 0 0 4px; font-size: 17px; } .g-verdict p { margin: 0; font-size: 14.5px; line-height: 1.5; color: rgba(255,250,247,.8); }
.g-tablewrap { overflow-x: auto; padding: 6px; box-shadow: 5px 5px 0 var(--ink); }
.g-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
.g-table th { text-align: left; padding: 10px 12px; font-family: var(--font-num); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); border-bottom: 2px solid var(--ink); }
.g-table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.g-table tr:last-child td { border-bottom: 0; }
.g-table td b { display: block; } .g-table td small { display: block; font-size: 12px; color: var(--mid); margin-top: 3px; }
.g-recs { display: grid; gap: 14px; margin-top: 18px; }
@media (min-width: 640px) { .g-recs { grid-template-columns: repeat(3, 1fr); } }
.g-rec { padding: 16px; box-shadow: 4px 4px 0 var(--ink); }
.g-rec--hi { background: var(--pink); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
.g-rec--hi small, .g-rec--hi p { color: rgba(255,255,255,.85); }
.g-rec__emoji { font-size: 26px; display: block; margin-bottom: 8px; }
.g-rec small { display: block; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); }
.g-rec b { display: block; font-size: 18px; margin: 4px 0 6px; }
.g-rec p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--mid); }

/* Header: mehr Platz auf Desktop, kompakt auf Mobile (eingeloggt lief die rechte Gruppe über) */
.hb-header__inner { max-width: 1320px; }
.hb-nav__link { font-size: 14.5px; padding: 8px 11px; }
.hb-logo { min-width: 0; flex: 0 1 auto; }
.hb-logo img { max-width: 100%; height: clamp(26px, 8.5vw, 40px); }
@media (max-width: 560px) {
  .hb-header__inner { gap: 10px; height: 64px; }
  .hb-header__right { gap: 6px; }
  .hb-iconbtn { width: 36px; height: 36px; }
  .hb-userbtn { padding: 4px 8px; gap: 6px; }
  .hb-userbtn .hb-avatar { display: none; }
  .hb-userbtn__pts { font-size: 12.5px; }
  .hb-logo img { height: 26px; }
}
/* Ticket: Hinweistext als Fließtext (Flex hatte die Wörter zerlegt) */
.tkt__reply > .tkt__hint { display: block; }
.tkt__reply > .tkt__hint .hb-ico { display: inline-block; vertical-align: -3px; margin-right: 6px; }

/* /play/<slug> — Einzel-Angebot */
.play { padding-top: 34px; padding-bottom: 50px; max-width: 1000px; }
.play .sec__head { margin-bottom: 20px; }
.play .tk.is-open .tk__more { max-height: 800px; }
