/* ═══════════════════════════════════════════════════════════════════
   ISKOBONUS — frontpage_new v4 "Terminal/Wettschein · Arena-Palette"
   Wettschein-Motiv + Ledger-Ästhetik in den Arena-Farben der alten
   Frontpage, weiche Radien, im Site-Shell (Sidebar + Topbar).
   Funktional wie die alte Frontpage: Quick-Filter, Boni-/Zahlungs-
   Popover, Detail-Drawer pro Casino, Payment-Icons, 112px-Logos.
   Tokens auf .tnew gescopt (--t-Prefix) gegen theme.css-Kollisionen.
   ═══════════════════════════════════════════════════════════════════ */

.tnew {
  /* Arena-Palette (identisch zur alten Frontpage / arena.css) */
  --t-bg:      hsl(228 9.8% 10%);
  --t-surface: #16171d;
  --t-panel:   #1a1b22;
  --t-raise:   #23242f;
  --t-line:    rgba(255, 255, 255, .10);
  --t-line-hi: rgba(255, 255, 255, .18);

  --t-fg:   rgba(255, 255, 255, .95);
  --t-mute: rgba(255, 255, 255, .72);
  --t-dim:  rgba(255, 255, 255, .45);

  --t-gold:      #f5b524;
  --t-gold-hi:   #ffc83d;
  --t-gold-deep: #c88f0a;
  --t-gold-dim:  rgba(245, 181, 36, .12);
  --t-blue:    #2b90f0;
  --t-blue-hi: #54b4ff;
  --t-mint:  #22c55e;
  --t-rose:  #fb7185;
  --t-twitch:#9146ff;

  --t-grad-gold: linear-gradient(135deg, #ffc83d 0%, #f5b524 60%, #e8a512 100%);

  --t-font-display: 'Clash Display', 'Sora', 'Arial Black', sans-serif;
  --t-font-body:    'Satoshi', 'Open Sans', system-ui, sans-serif;
  --t-font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --t-r:    16px;
  --t-r-sm: 12px;

  --t-shadow-card: 0 1px 0 rgba(255, 255, 255, .04) inset, 0 6px 16px -12px rgba(0, 0, 0, .6);

  font-family: var(--t-font-body);
  color: var(--t-mute);
  font-size: 16px;
  line-height: 1.55;
}

.tnew *, .tnew *::before, .tnew *::after { box-sizing: border-box; }
.tnew img { max-width: 100%; display: block; }
.tnew ul { list-style: none; margin: 0; padding: 0; }
/* :where() → Spezifität 0: Reset verliert gegen jede Komponenten-Klasse */
:where(.tnew button) { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.tnew a { color: inherit; text-decoration: none; }
.tnew .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.tnew :is(a, button, input, summary):focus-visible {
  outline: 2px solid var(--t-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.t-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Typo-Rollen ─────────────────────────────────────────────── */
.t-display { font-family: var(--t-font-display); letter-spacing: -.01em; }
.t-mono {
  font-family: var(--t-font-mono);
  font-size: .64rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--t-dim);
}
.t-num { font-family: var(--t-font-mono); font-variant-numeric: tabular-nums; }

.t-outline { color: var(--t-fg); }
@supports (-webkit-text-stroke: 1px #fff) {
  .t-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .85); }
}

.t-shimmer {
  background: linear-gradient(100deg, var(--t-gold) 20%, #ffe9a8 40%, var(--t-gold-hi) 50%, var(--t-gold) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: t-shimmer 4.5s ease-in-out infinite;
}
@keyframes t-shimmer { 0% { background-position: 110% 0; } 55% { background-position: -60% 0; } 100% { background-position: -60% 0; } }

/* ── Nummerierte Sektions-Linie ──────────────────────────────── */
.t-rule { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.t-rule .t-mono { color: var(--t-gold); white-space: nowrap; }
.t-rule::after { content: ""; flex: 1; height: 1px; background: var(--t-line); }

/* ── Flächen ─────────────────────────────────────────────────── */
.t-panel {
  background: var(--t-panel);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r);
  box-shadow: var(--t-shadow-card);
}

/* ── Buttons (schlank, dunkler Text — .tnew a schlägt Shell-Links) ── */
.tnew .t-cta, .tnew a.t-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--t-font-display);
  font-weight: 600; letter-spacing: .01em;
  font-size: .92rem;
  color: #1f1502;
  background: var(--t-grad-gold);
  border: 0;
  border-radius: var(--t-r-sm);
  padding: .6rem 1.15rem;
  box-shadow: 0 4px 14px -6px rgba(245, 181, 36, .5);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}
.tnew .t-cta:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 7px 20px -6px rgba(245, 181, 36, .55); color: #1f1502; }
.tnew .t-cta:active { transform: translateY(0); }
.tnew .t-cta i { font-size: .8em; }

.tnew .t-ghost, .tnew a.t-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--t-font-display); font-weight: 500; font-size: .92rem;
  color: var(--t-fg);
  border: 1px solid var(--t-line-hi);
  border-radius: var(--t-r-sm);
  padding: .6rem 1.15rem;
  background: rgba(255, 255, 255, .03);
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.tnew .t-ghost:hover { border-color: rgba(245, 181, 36, .5); background: rgba(255, 255, 255, .06); transform: translateY(-1px); color: var(--t-fg); }
.tnew .t-ghost .fa-twitch { color: var(--t-twitch); }

/* ═══ HERO — Broadcast-Bühne ═════════════════════════════════════ */
.t-hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3rem;
  border-bottom: 1px solid var(--t-line);
}
.t-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(820px 460px at 62% -12%, rgba(245, 181, 36, .16), transparent 60%),
    radial-gradient(680px 420px at 18% -18%, rgba(43, 144, 240, .12), transparent 60%);
  pointer-events: none;
}
.t-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(90% 80% at 50% 0%, #000 30%, transparent 78%);
          mask-image: radial-gradient(90% 80% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}
.t-beam {
  position: absolute; top: -240px;
  width: 340px; height: 620px;
  background: linear-gradient(180deg, rgba(245, 181, 36, .18), transparent 72%);
  filter: blur(46px);
  transform-origin: top center;
  pointer-events: none;
  animation: t-sway 13s ease-in-out infinite alternate;
}
.t-beam.b1 { left: 16%; }
.t-beam.b2 { right: 12%; background: linear-gradient(180deg, rgba(84, 180, 255, .14), transparent 72%); animation-name: t-sway2; animation-delay: -6s; }
@keyframes t-sway { from { transform: rotate(10deg); } to { transform: rotate(20deg); } }
@keyframes t-sway2 { from { transform: rotate(-12deg); } to { transform: rotate(-22deg); } }

.t-hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.12fr .88fr;
  gap: 3rem; align-items: center;
}

.t-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid var(--t-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  padding: .4rem .95rem;
  margin-bottom: 1.2rem;
}
.t-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--t-gold);
  box-shadow: 0 0 0 0 rgba(245, 181, 36, .5);
  animation: t-pulse 2s infinite;
}
.t-pulse.is-live { background: var(--t-rose); }
@keyframes t-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 181, 36, .45); }
  70% { box-shadow: 0 0 0 9px rgba(245, 181, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 181, 36, 0); }
}

.t-h1 {
  font-family: var(--t-font-display);
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
  font-weight: 600;
  line-height: .99; letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--t-fg);
  margin: 0 0 1.2rem;
}
.t-lead { color: var(--t-mute); font-size: 1.07rem; max-width: 32rem; margin: 0 0 1.7rem; }
.t-hero-cta { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 1.7rem; }
.tnew .t-cta-lg { padding: .8rem 1.6rem; font-size: 1rem; }

.t-datastrip {
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem 1rem;
  border-top: 1px solid var(--t-line);
  padding-top: .95rem;
  max-width: 34rem;
}
.t-ds { display: inline-flex; align-items: baseline; gap: .45rem; }
.t-ds .v { font-family: var(--t-font-mono); font-size: .82rem; font-weight: 700; color: var(--t-fg); }
.t-ds .v.is-gold { color: var(--t-gold); }
.t-ds .v.is-live { color: var(--t-rose); }
.t-datastrip .sep { color: var(--t-line-hi); }

/* Schwebender Wettschein (#1) */
/* Float auf dem WRAPPER als translateY (GPU-composited) — margin-top im
   Keyframe hat jeden Frame ein Layout-Reflow ausgelöst (sichtbares Ruckeln). */
.t-heroticket-wrap {
  perspective: 1200px;
  animation: t-float 7s ease-in-out infinite;
  will-change: transform;
}
.t-heroticket-wrap:hover { animation-play-state: paused; }
.t-heroticket {
  position: relative;
  background: var(--t-panel);
  border: 1px solid rgba(245, 181, 36, .35);
  border-radius: var(--t-r);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .7), 0 0 44px -10px rgba(245, 181, 36, .28), 0 1px 0 rgba(255, 255, 255, .06) inset;
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform .45s cubic-bezier(.2, .7, .3, 1), box-shadow .45s ease;
  will-change: transform;
}
.t-heroticket:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .75), 0 0 60px -8px rgba(245, 181, 36, .4), 0 1px 0 rgba(255, 255, 255, .06) inset;
}
@keyframes t-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.t-ht-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.4rem;
  border-bottom: 1px solid var(--t-line);
}
.t-ht-head .t-mono { color: var(--t-gold); }
.t-ht-main { padding: 1.25rem 1.4rem 1.35rem; position: relative; }
.t-ht-toprow { display: flex; align-items: center; gap: 1rem; margin-bottom: .9rem; }
.t-ht-logo {
  width: 76px; height: 76px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-sm);
  background: var(--t-raise);
  padding: 8px;
}
.t-ht-logo img { max-height: 100%; object-fit: contain; border-radius: 8px; }
.t-ht-name { font-family: var(--t-font-display); font-size: 1.4rem; font-weight: 600; color: var(--t-fg); }
.t-ht-bonus {
  font-family: var(--t-font-mono);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.9vw, 2.3rem);
  line-height: 1.08; letter-spacing: -.03em;
  color: var(--t-gold);
  margin-bottom: .3rem;
}
.t-ht-hl { color: var(--t-mute); font-size: .9rem; margin: 0 0 1rem; }

.t-ledgerline {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px dotted var(--t-line-hi);
  padding-top: .85rem;
}
.t-ll { display: flex; flex-direction: column; gap: .15rem; }
.t-ll .v { font-family: var(--t-font-mono); font-size: .85rem; font-weight: 700; color: var(--t-fg); }

.t-ht-stub {
  position: relative;
  border-top: 1px dashed var(--t-line-hi);
  background: var(--t-raise);
  border-radius: 0 0 var(--t-r) var(--t-r);
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.4rem;
}
.t-ht-stub::before, .t-ht-stub::after {
  content: "";
  position: absolute; top: -10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--t-bg);
  border: 1px solid var(--t-line);
}
.t-ht-stub::before { left: -11px; }
.t-ht-stub::after { right: -11px; }
.t-ht-stub .t-cta { flex: 1; }

.t-stamp {
  position: absolute; top: .95rem; right: 1.2rem;
  font-family: var(--t-font-mono);
  font-size: .6rem; font-weight: 800;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--t-gold);
  border: 2px solid var(--t-gold);
  border-radius: 6px;
  padding: .3rem .55rem .3rem .8rem;
  transform: rotate(-6deg);
  opacity: .9;
  pointer-events: none;
}

.t-barcode {
  width: 54px; height: 30px; flex-shrink: 0;
  background: repeating-linear-gradient(90deg,
    var(--t-dim) 0 1px, transparent 1px 3px,
    var(--t-dim) 3px 6px, transparent 6px 8px,
    var(--t-dim) 8px 9px, transparent 9px 13px);
  opacity: .55;
  border-radius: 2px;
}
.t-code {
  display: inline-flex; align-items: center; justify-content: space-between; gap: .6rem;
  border: 1px dashed rgba(245, 181, 36, .55);
  border-radius: 10px;
  background: var(--t-gold-dim);
  padding: .48rem .75rem;
  font-family: var(--t-font-mono);
  font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  color: var(--t-gold-hi);
  transition: background .15s ease;
  text-transform: uppercase;
}
.t-code:hover { background: rgba(245, 181, 36, .22); }
.t-code i { font-size: .7rem; opacity: .7; }

/* Mono-Tags + Feature-Badges */
.t-tag { font-family: var(--t-font-mono); font-size: .66rem; font-weight: 600; letter-spacing: .1em; white-space: nowrap; }
.t-tag.is-mint { color: var(--t-mint); }
.t-tag.is-rose { color: var(--t-rose); }
.t-tag.is-gold { color: var(--t-gold-hi); }

.t-feat {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .7rem; font-weight: 600;
  color: var(--t-dim);
  border: 1px solid var(--t-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
  padding: .2rem .5rem;
}
.t-feat i { font-size: .68rem; }
.t-feat.is-gold { color: var(--t-gold-hi); border-color: rgba(245, 181, 36, .4); background: var(--t-gold-dim); }

/* Payment-Icons (FA-Brands wo möglich, sonst Text-Chip) */
.t-pay {
  display: inline-flex; align-items: center; gap: .35rem;
  height: 28px;
  padding: 0 .55rem;
  border: 1px solid var(--t-line);
  border-radius: 8px;
  background: var(--t-raise);
  font-size: .7rem; font-weight: 600;
  color: var(--t-mute);
  white-space: nowrap;
}
.t-pay i { font-size: 1rem; color: var(--t-fg); }
.t-pay.is-fa { padding: 0 .5rem; }
.t-pay.is-fa i { font-size: 1.35rem; }

/* ═══ TICKER-TAPE ════════════════════════════════════════════════ */
.t-tape {
  position: relative;
  border-bottom: 1px solid var(--t-line);
  background: var(--t-surface);
  overflow: hidden;
  padding: .55rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.t-tape[hidden] { display: none; }
.t-tape-track {
  display: inline-flex;
  white-space: nowrap;
  animation: t-marquee 38s linear infinite;
  will-change: transform;
}
.t-tape:hover .t-tape-track { animation-play-state: paused; }
@keyframes t-marquee { to { transform: translateX(-50%); } }
.t-tape-item {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--t-font-mono);
  font-size: .72rem; letter-spacing: .06em;
  color: var(--t-mute);
  padding: 0 1.1rem;
}
.t-tape-item::after { content: "///"; color: var(--t-line-hi); margin-left: 2.2rem; letter-spacing: 0; }
.t-tape-item b { color: var(--t-fg); font-weight: 700; }
.t-tape-item .amt { color: var(--t-gold-hi); font-weight: 700; }

/* ═══ SEKTIONEN ══════════════════════════════════════════════════ */
.t-section { padding: 3.4rem 0 .6rem; }
.t-h2 {
  font-family: var(--t-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600; letter-spacing: -.015em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--t-fg);
  margin: 0;
}
.t-sec-sub { color: var(--t-mute); margin: .45rem 0 0; max-width: 40rem; }

/* ═══ COMMAND-BAR (Quick-Filter + Popover) ═══════════════════════ */
.t-cmd {
  display: flex; align-items: center; flex-wrap: wrap; gap: .7rem;
  margin: 1.4rem 0 1.1rem;
}
.t-cmd-count {
  font-size: .85rem; color: var(--t-dim);
  margin-right: .4rem;
}
.t-cmd-count b { color: var(--t-fg); font-weight: 700; }

.t-quick {
  display: inline-flex; gap: .3rem;
  border: 1px solid var(--t-line);
  border-radius: 999px;
  background: var(--t-surface);
  padding: .28rem;
  box-shadow: var(--t-shadow-card);
}
.t-qf {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .8rem; font-weight: 600;
  color: var(--t-dim);
  border-radius: 999px;
  padding: .42rem .85rem;
  transition: color .15s ease, background .15s ease;
}
.t-qf i { font-size: .75rem; }
.t-qf:hover { color: var(--t-fg); background: var(--t-raise); }
.t-qf.is-on { color: #1f1502; background: var(--t-grad-gold); box-shadow: 0 3px 10px -4px rgba(245, 181, 36, .5); }
.t-qf-n {
  font-size: .66rem; font-weight: 700;
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  padding: .1rem .4rem;
}
.t-qf.is-on .t-qf-n { background: rgba(0, 0, 0, .18); }

.t-pop-anchor { position: relative; }
.t-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600;
  color: var(--t-fg);
  border: 1px solid var(--t-line-hi);
  border-radius: 999px;
  background: var(--t-raise);
  padding: .55rem 1rem;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
  box-shadow: var(--t-shadow-card);
}
.t-chip:hover, .t-chip[aria-expanded="true"] { border-color: rgba(245, 181, 36, .5); background: #2a2c39; }
.t-chip-caret { font-size: .6rem; color: var(--t-dim); transition: transform .15s ease; }
.t-chip[aria-expanded="true"] .t-chip-caret { transform: rotate(180deg); }
.t-chip-badge {
  font-size: .64rem; font-weight: 700;
  color: #1f1502;
  background: var(--t-grad-gold);
  border-radius: 999px;
  padding: .08rem .38rem;
}
.t-chip-badge[hidden] { display: none; }

.t-pop {
  position: absolute; top: calc(100% + 8px); left: 0;
  z-index: 60;
  min-width: 230px;
  background: #262834;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, .85), 0 0 0 1px rgba(0, 0, 0, .4);
  padding: .8rem;
  display: flex; flex-direction: column; gap: .45rem;
}
.t-pop[hidden] { display: none; }
.t-pop-pay { min-width: 300px; }
.t-pop-group + .t-pop-group { margin-top: .5rem; }
.t-pop-group .t-mono { margin: 0 0 .45rem; }
.t-pop-grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.t-toggle {
  font-size: .78rem; font-weight: 600;
  color: var(--t-mute);
  border: 1px solid var(--t-line);
  border-radius: 9px;
  background: var(--t-panel);
  padding: .42rem .7rem;
  text-align: left;
  transition: all .13s ease;
}
.t-toggle:hover { border-color: var(--t-line-hi); color: var(--t-fg); }
.t-toggle.is-on { color: var(--t-gold-hi); border-color: rgba(245, 181, 36, .55); background: var(--t-gold-dim); }

.t-find {
  display: flex; align-items: center; gap: .5rem;
  margin-left: auto;
  border: 1px solid var(--t-line);
  border-radius: 999px;
  background: var(--t-surface);
  padding: 0 1rem;
  min-width: 200px;
  box-shadow: var(--t-shadow-card);
}
.t-find::before { content: ">"; font-family: var(--t-font-mono); color: var(--t-gold); font-size: .8rem; }
.t-find input {
  background: none; border: 0; outline: 0;
  color: var(--t-fg);
  font-family: var(--t-font-mono); font-size: .78rem;
  letter-spacing: .04em;
  width: 100%;
  padding: .55rem 0;
}
.t-find input::placeholder { color: var(--t-dim); }

/* ═══ CASINO-ZEILEN (Anatomie wie alte Frontpage) ════════════════ */
.t-rows { display: flex; flex-direction: column; gap: .9rem; }
.t-row {
  background: var(--t-panel);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r);
  box-shadow: var(--t-shadow-card);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.t-row:hover {
  border-color: rgba(245, 181, 36, .35);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .6);
}
.t-deal.is-hidden { display: none !important; }

.t-row-main {
  display: grid;
  grid-template-columns: 112px minmax(0, 1.1fr) minmax(0, 1fr) auto 200px;
  align-items: center;
  column-gap: 1.2rem;
  padding: 1.1rem 1.3rem;
}

/* Rang-Badge sitzt IM Casino-Logo (Ecke oben links) */
.t-rrank {
  position: absolute; top: -1px; left: -1px;
  z-index: 2;
  font-size: .72rem; font-weight: 800;
  color: var(--t-fg);
  background: rgba(10, 11, 15, .85);
  border: 1px solid var(--t-line-hi);
  border-radius: 10px 0 10px 0;
  padding: .22rem .5rem;
  backdrop-filter: blur(4px);
}
.t-rrank.is-top {
  color: #1f1502;
  background: var(--t-grad-gold);
  border-color: var(--t-gold-deep);
  box-shadow: 0 4px 14px -6px rgba(245, 181, 36, .6);
}

.t-rlogo {
  position: relative;
  width: 112px; height: 112px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-sm);
  background: var(--t-raise);
  padding: 8px;
  overflow: hidden;
}
.t-rlogo img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 10px; }
.t-rlogo i { color: var(--t-dim); font-size: 1.6rem; }

.t-rname { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.t-rname .nm { font-family: var(--t-font-display); font-size: 1.15rem; font-weight: 600; color: var(--t-fg); margin: 0; }
.t-rname .tags { display: flex; gap: .7rem; flex-wrap: wrap; }
.t-rname .feats { display: flex; gap: .4rem; flex-wrap: wrap; }

.t-rwelcome { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.t-rwelcome .wb {
  font-size: 1.8rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--t-gold);
  line-height: 1.1;
}
.t-rwelcome .wb .bis { font-size: 1.15rem; font-weight: 700; color: var(--t-fg); }
.t-rwelcome .fs { color: var(--t-mute); font-size: .88rem; }

.t-rstats { display: flex; gap: .6rem; }
.t-rstats .st {
  display: flex; flex-direction: column; gap: .25rem;
  border: 1px solid var(--t-line);
  border-radius: 10px;
  background: var(--t-raise);
  padding: .65rem .9rem;
  min-width: 86px;
  text-align: center;
  align-items: center;
}
.t-rstats .v { font-size: 1.05rem; font-weight: 800; color: var(--t-fg); }

.t-ract {
  display: flex; flex-direction: column; gap: .45rem;
  border-left: 1px dashed var(--t-line-hi);
  padding-left: 1.2rem;
  align-self: stretch;
  justify-content: center;
}
.t-ract .t-cta { width: 100%; }
.t-ract .t-code { justify-content: center; }
.t-details {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-size: .78rem; font-weight: 600;
  color: var(--t-mute);
  border: 1px solid var(--t-line);
  background: var(--t-raise);
  padding: .42rem .6rem;
  border-radius: 10px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.t-details:hover { color: var(--t-fg); border-color: var(--t-line-hi); }
.t-details.is-open { color: var(--t-gold-hi); border-color: rgba(245, 181, 36, .45); background: var(--t-gold-dim); }
.t-details-caret { font-size: .6rem; transition: transform .18s ease; }
.t-details.is-open .t-details-caret { transform: rotate(180deg); }

/* Detail-Drawer */
.t-drawer {
  border-top: 1px dashed var(--t-line-hi);
  background: var(--t-surface);
  border-radius: 0 0 var(--t-r) var(--t-r);
  padding: 1.2rem 1.4rem 1.3rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.t-drawer[hidden] { display: none; }
.t-drawer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .6rem;
}
.dstat {
  display: flex; flex-direction: column; gap: .2rem;
  border: 1px solid var(--t-line);
  border-radius: 10px;
  background: var(--t-panel);
  padding: .6rem .75rem;
}
.dstat .v { font-size: .88rem; font-weight: 700; color: var(--t-fg); }
.t-drawer-block .t-mono { margin: 0 0 .55rem; }
.t-drawer-block .t-mono i { color: var(--t-gold); margin-right: .3rem; }
.t-pros {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem 1.4rem;
}
.t-pros li { display: flex; gap: .55rem; align-items: baseline; font-size: .88rem; color: var(--t-mute); }
.t-pros li i { color: var(--t-mint); font-size: .72rem; }
.t-paystrip { display: flex; flex-wrap: wrap; gap: .45rem; }

.t-empty {
  text-align: center; color: var(--t-dim);
  font-family: var(--t-font-mono); font-size: .8rem; letter-spacing: .08em;
  padding: 2.6rem 1rem;
  margin: 0;
}
.t-empty[hidden] { display: none; }

.t-updated { margin-top: .9rem; text-align: right; }

/* ═══ COMMUNITY — asymmetrisches Bento ═══════════════════════════ */
.t-bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.1rem;
}
.t-bento > * { transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.t-bento > *:hover {
  border-color: rgba(245, 181, 36, .4);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .6);
}

.t-b-wheel {
  grid-row: 1 / 3;
  position: relative; overflow: hidden;
  padding: 2rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 320px;
}
.t-wheelviz {
  position: absolute; top: -130px; right: -130px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: conic-gradient(
    var(--t-gold-dim) 0 30deg, transparent 30deg 60deg,
    rgba(84, 180, 255, .10) 60deg 90deg, transparent 90deg 120deg,
    var(--t-gold-dim) 120deg 150deg, transparent 150deg 180deg,
    rgba(84, 180, 255, .10) 180deg 210deg, transparent 210deg 240deg,
    var(--t-gold-dim) 240deg 270deg, transparent 270deg 300deg,
    rgba(84, 180, 255, .10) 300deg 330deg, transparent 330deg 360deg);
  border: 1px solid var(--t-line-hi);
  animation: t-spin 60s linear infinite;
}
.t-wheelviz::after {
  content: ""; position: absolute; inset: 26%;
  border-radius: 50%;
  border: 1px dashed var(--t-line-hi);
}
@keyframes t-spin { to { transform: rotate(360deg); } }
.t-b-title { font-family: var(--t-font-display); font-size: 1.35rem; font-weight: 600; color: var(--t-fg); margin: .5rem 0 .3rem; }
.t-b-txt { color: var(--t-mute); font-size: .93rem; max-width: 26rem; margin: 0 0 1.1rem; }
.t-b-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--t-font-mono); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--t-gold-hi);
}
.t-b-link i { font-size: .65rem; transition: transform .15s ease; }
.t-bento a:hover .t-b-link i { transform: translate(3px, -3px); }

.t-b-hunt { padding: 1.5rem 1.7rem; display: block; }
.t-b-hunt .t-rule { margin-bottom: .6rem; }
.t-huntline {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .5rem 0;
  border-top: 1px dotted var(--t-line);
  font-size: .88rem; color: var(--t-mute);
}
.t-huntline .t-num { color: var(--t-fg); font-weight: 700; font-size: .8rem; }

.t-b-give { position: relative; padding: 1.5rem 1.7rem; display: block; }
.t-b-give::before, .t-b-give::after {
  content: "";
  position: absolute; top: 50%; margin-top: -10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--t-bg);
  border: 1px solid var(--t-line);
}
.t-b-give::before { left: -11px; }
.t-b-give::after { right: -11px; }

/* ═══ DER STREAMER — Editorial-Split ═════════════════════════════ */
.t-about {
  display: grid;
  grid-template-columns: auto 1.25fr .75fr;
  gap: 2.4rem;
  align-items: start;
}
.t-vertlabel {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--t-font-mono);
  font-size: .64rem; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--t-dim);
  border-left: 1px solid var(--t-line);
  padding-left: .9rem;
  align-self: stretch;
}
.t-quote {
  font-family: var(--t-font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 500; line-height: 1.25;
  color: var(--t-fg);
  margin: 0 0 1.1rem;
}
.t-quote em { color: var(--t-gold); font-style: normal; }
.t-about-main p { color: var(--t-mute); margin: 0 0 1rem; }
.t-about-main p b { color: var(--t-fg); }
.t-facts { counter-reset: fact; }
.t-fact {
  counter-increment: fact;
  display: flex; gap: 1rem; align-items: baseline;
  padding: .8rem 0;
}
.t-fact + .t-fact { border-top: 1px solid var(--t-line); }
.t-fact::before {
  content: "0" counter(fact);
  font-family: var(--t-font-mono);
  font-size: .72rem; font-weight: 700;
  color: var(--t-gold);
}
.t-fact .h { font-weight: 700; font-size: .95rem; color: var(--t-fg); }
.t-fact .s { color: var(--t-dim); font-size: .82rem; margin-top: .1rem; }

/* ═══ FAQ — Ledger-Linien ════════════════════════════════════════ */
.t-faq { max-width: 46rem; }
.t-faq details { border-top: 1px solid var(--t-line); }
.t-faq details:last-child { border-bottom: 1px solid var(--t-line); }
.t-faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.05rem .3rem;
}
.t-faq summary::-webkit-details-marker { display: none; }
.t-faq .idx { font-family: var(--t-font-mono); font-size: .72rem; font-weight: 700; color: var(--t-gold); }
.t-faq .q { font-family: var(--t-font-display); font-weight: 500; font-size: 1.02rem; color: var(--t-fg); flex: 1; }
.t-faq summary i { color: var(--t-dim); font-size: .8rem; transition: transform .18s ease; align-self: center; }
.t-faq details[open] summary i { transform: rotate(45deg); color: var(--t-gold); }
.t-faq-body { padding: 0 .3rem 1.15rem 2.5rem; color: var(--t-mute); font-size: .93rem; }

.t-legalnote {
  border-top: 1px solid var(--t-line);
  margin-top: 3.4rem;
  padding: 1.4rem 0 .6rem;
}
.t-legalnote p { color: var(--t-dim); font-size: .8rem; max-width: 58rem; line-height: 1.6; margin: 0; }
.t-legalnote a { color: var(--t-mute); text-decoration: underline; }

/* ═══ SIDEBAR — an den neuen Look angepasst (nur diese Seite) ════ */
.sidebar {
  background: linear-gradient(180deg, #1a1b22, #14151b) !important;
  border-color: rgba(255, 255, 255, .09) !important;
}
.sidebar .sb-group-title {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}
.sidebar .sb-group-ico { color: rgba(255, 255, 255, .4); }
.sidebar .sb-link { border-radius: 10px; }
.sidebar .sb-link.active {
  color: #ffc83d !important;
  background: rgba(245, 181, 36, .1) !important;
  box-shadow: inset 2px 0 0 #f5b524;
}
.sidebar .sb-link.active i { color: #ffc83d !important; }
.sidebar .sb-chev { color: rgba(255, 255, 255, .35); }

/* ═══ REVEAL ═════════════════════════════════════════════════════ */
.t-reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.t-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .t-reveal { opacity: 1; transform: none; transition: none; }
  .t-tape-track { animation: none; }
  .t-wheelviz { animation: none; }
  .t-shimmer { animation: none; }
  .t-beam { animation: none; }
  .t-heroticket { animation: none; transform: none; }
  .t-heroticket-wrap { animation: none; }
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1240px) {
  .t-row-main { grid-template-columns: 96px minmax(0, 1.1fr) minmax(0, 1fr) 190px; }
  .t-rlogo { width: 96px; height: 96px; }
  .t-rstats { display: none; }
}

@media (max-width: 1080px) {
  .t-hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .t-heroticket { transform: none; animation: none; max-width: 34rem; }
  .t-heroticket-wrap { animation: none; }

  .t-cmd { gap: .55rem; }
  .t-find { margin-left: 0; min-width: 100%; }

  .t-row-main {
    grid-template-columns: 88px minmax(0, 1fr);
    row-gap: .8rem;
    padding: 1.1rem 1.2rem 1.2rem;
  }
  .t-rlogo { width: 88px; height: 88px; }
  .t-rwelcome { grid-column: 1 / -1; border-top: 1px dotted var(--t-line); padding-top: .8rem; }
  .t-ract {
    grid-column: 1 / -1;
    flex-direction: row; flex-wrap: wrap;
    border-left: 0; border-top: 1px dashed var(--t-line-hi);
    padding: .9rem 0 0;
  }
  .t-ract .t-cta { flex: 1; width: auto; }
  .t-ract .t-code { flex: 1; }
  .t-drawer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .t-pros { grid-template-columns: 1fr; }

  .t-bento { grid-template-columns: 1fr; }
  .t-b-wheel { grid-row: auto; min-height: 260px; }
  .t-about { grid-template-columns: 1fr; gap: 1.6rem; }
  .t-vertlabel { writing-mode: horizontal-tb; transform: none; border-left: 0; border-bottom: 1px solid var(--t-line); padding: 0 0 .5rem; }
}

@media (max-width: 720px) {
  .t-hero { padding: 2.8rem 0 2.2rem; }
  .t-hero-cta .t-cta-lg, .t-hero-cta .t-ghost { flex: 1; }
  .t-quick { flex-wrap: wrap; border-radius: 18px; }
  .t-pop { left: auto; right: 0; }
  .t-ht-stub { flex-wrap: wrap; }
  .t-barcode { display: none; }
  .t-stamp { top: .7rem; right: .7rem; font-size: .55rem; }
  .t-drawer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
