html, body { color:#e6edf3; font-family:'Space Grotesk', system-ui, sans-serif; -webkit-font-smoothing:antialiased; }
html { scroll-behavior:smooth; background:#0a0a0b; }

/* Body-Background: Deep-Teal/Petrol Grundton mit Mint-Glow oben +
   Dot-Grid für Tiefe. Selbe Farbfamilie wie Mint = harmonisch, monochrom-elegant.
   !important nötig damit das Tailwind-Util "bg-ink-950" auf <body> nicht gewinnt
   (jede View hat <body class="bg-ink-950 ...">). */
body {
  background-color: #0a0a0b !important;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,203,31,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #18181b 0%, #0a0a0b 40%, #08080a 100%) !important;
  background-size: 100% 100%, 100% 100% !important;
  background-attachment: fixed !important;
  /* eigener Stacking-Kontext → erlaubt z-index:-1 Kindern (Samurai-BG) hinter Content zu liegen ohne unter Body-BG zu rutschen */
  isolation: isolate;
}

.surface { background: linear-gradient(160deg, #18181b 0%, #121214 60%, #0a0a0b 100%); }

/* Marquee — nahtloses laufendes Band für den Raffle-Gewinner-Ticker.
   Content ist im HTML 6× dupliziert; -16.67% = eine Basis-Set-Breite → Loop nahtlos
   da Copy #2 visuell identisch zu Copy #1 ist. Mehr Dups = füllt auch breite Viewports. */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-16.6667%); }
}
.animate-marquee { animation: marquee 20s linear infinite; width: max-content; }
@media (prefers-reduced-motion: reduce) {
  .animate-marquee { animation: none; }
}

/* Gold-Shimmer für Text (wie Podium #1 Effekt, nur als Text). */
.text-gold-shimmer {
  background: linear-gradient(90deg, #ffd84a 0%, #fff19a 25%, #ffd84a 50%, #fff19a 75%, #ffd84a 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: gold-shimmer 3s linear infinite;
}
@keyframes gold-shimmer {
  from { background-position: 0% 0; }
  to   { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .text-gold-shimmer { animation: none; }
}

/* Aktiver 3D Gold Shimmer — Tiefe via Drop-Shadow (Schriftart bleibt unverändert) */
.text-gold-shimmer-3d {
  background: linear-gradient(
    180deg,
    #fff8d0 0%,
    #ffe478 15%,
    #ffd84a 35%,
    #d99318 60%,
    #a06808 85%,
    #c98a18 100%
  );
  background-size: 100% 200%;
  background-position: 0 0;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(255, 245, 200, 0.6))
    drop-shadow(0 2px 0 rgba(160, 100, 15, 0.55))
    drop-shadow(0 4px 0 rgba(110, 65, 5, 0.45))
    drop-shadow(0 10px 28px rgba(255, 195, 60, 0.45));
  animation: gold-3d-tilt 4s ease-in-out infinite;
  position: relative;
  isolation: isolate;
}
/* Aktiver Schimmer-Sweep (heller Glanzstreifen über die Goldfläche) */
.text-gold-shimmer-3d::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.0) 35%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.0) 65%,
    transparent 80%
  );
  background-size: 220% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: gold-3d-sweep 2s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes gold-3d-tilt {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 0% 100%; }
}
@keyframes gold-3d-sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -120% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .text-gold-shimmer-3d,
  .text-gold-shimmer-3d::after { animation: none; }
}
.text-mint-grad { background: linear-gradient(90deg, #ffd84a 0%, #ffe066 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* Hero-Akzent ("ohne Limits") — schlichter Mint-Verlauf, kein Effekt */
.text-shimmer {
  background: linear-gradient(90deg, #ffd84a 0%, #ffe066 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero-bg { position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(70% 80% at 90% 20%, rgba(255,203,31,.18) 0%, transparent 60%),
    radial-gradient(60% 70% at 10% 80%, rgba(255,216,74,.10) 0%, transparent 60%),
    linear-gradient(180deg, #121214 0%, #0a0b0d 100%);
}

/* hover cards (casino rows) */
.card { position:relative; border-radius:1rem; border:1px solid rgba(255,255,255,.06); transition: border-color .2s ease, box-shadow .2s ease; }
.card:hover { border-color: rgba(255,216,74,.4); box-shadow: 0 8px 30px -10px rgba(255,203,31,.25); }

/* sidebar shell — no hover, no transform; rounded so scrollbar gets clipped */
.sidebar-shell {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.sidebar-scroll {
  overflow-y: auto;
  padding: 1.25rem;
}
@media (min-width: 1024px) {
  .sidebar-scroll { max-height: calc(100vh - 6rem); }
}
.sidebar-scroll::-webkit-scrollbar { width: 6px; }
.sidebar-scroll::-webkit-scrollbar-track { background: transparent; }
.sidebar-scroll::-webkit-scrollbar-thumb { background: rgba(255,216,74,.25); border-radius: 999px; }
.sidebar-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,216,74,.45); }
.sidebar-scroll { scrollbar-width: thin; scrollbar-color: rgba(255,216,74,.25) transparent; }

/* buttons */
.btn-mint { display:inline-flex; align-items:center; justify-content:center; gap:.4rem; padding:.6rem 1rem; border-radius:.6rem; font-weight:600; background:#ffcb1f; color:#11130a; border:1px solid rgba(255,255,255,.06); transition: background .15s ease, transform .15s ease; }
.btn-mint:hover { background:#ffd84a; transform: translateY(-1px); }
.btn-ghost { display:inline-flex; align-items:center; justify-content:center; gap:.4rem; padding:.55rem .9rem; border-radius:.6rem; background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); color:#e6edf3; transition: border-color .15s ease, color .15s ease; cursor: pointer; }
.btn-ghost:hover { border-color: rgba(255,216,74,.5); color:#fff; }
.btn-twitch { display:inline-flex; align-items:center; justify-content:center; gap:.4rem; padding:.55rem .9rem; border-radius:.6rem; font-weight:600; background:#9146ff; color:#fff; border:1px solid rgba(255,255,255,.08); transition: background .15s ease, transform .15s ease; }
.btn-twitch:hover { background:#a970ff; transform: translateY(-1px); color:#fff; }

/* Bonus-Code Box: pulsierender Mint-Glow zur Aufmerksamkeit */
@keyframes code-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,216,74,.35), 0 0 14px -2px rgba(255,216,74,.25); border-color: rgba(255,216,74,.45); }
  50%      { box-shadow: 0 0 0 1px rgba(255,216,74,.65), 0 0 22px -2px rgba(255,216,74,.55); border-color: rgba(255,216,74,.75); }
}
.code-box { animation: code-pulse 2.4s ease-in-out infinite; background: rgba(255,203,31,.05); }

/* Details-Toggle: Hervorhebung + Chevron-Bounce, damit klar wird dass es aufklappbar ist */
.details-toggle {
  background: rgba(255,216,74,.06);
  border: 1px solid rgba(255,216,74,.22);
  color: #ffe066 !important;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.details-toggle:hover { background: rgba(255,216,74,.14); border-color: rgba(255,216,74,.55); transform: translateY(-1px); }
@keyframes chevron-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}
.details-toggle .details-icon { animation: chevron-bounce 1.4s ease-in-out infinite; will-change: transform; }
.card.open .details-toggle .details-icon { animation: none; }

/* filters */
.chip { display:inline-flex; align-items:center; gap:.35rem; padding:.3rem .7rem; border-radius:999px; font-size:.78rem; cursor:pointer; background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); color:#b8c0c8; transition: all .15s ease; user-select:none; }
.chip:hover { color:#fff; border-color: rgba(255,216,74,.4); }
.chip.active { background: rgba(255,203,31,.14); border-color: rgba(255,216,74,.5); color:#fff19a; }
.chip i { font-size: .75rem; }

.check { display:flex; align-items:center; gap:.55rem; padding:.4rem .55rem; border-radius:.5rem; cursor:pointer; font-size:.85rem; color:#cfd6dd; transition: background .15s ease; user-select:none; width:100%; text-align:left; }
.check:hover { background: rgba(255,255,255,.03); color:#fff; }
.check .box { width:16px; height:16px; border-radius:4px; border:1.5px solid rgba(255,255,255,.2); display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; transition: all .15s ease; }
.check.active .box { background:#ffcb1f; border-color:#ffcb1f; }
.check.active .box::after { content:'\f00c'; font-family:'Font Awesome 6 Free'; font-weight:900; color:#11130a; font-size:.65rem; }
.check.active { color:#fff; }

/* badges */
.badge { display:inline-flex; align-items:center; gap:.3rem; padding:.18rem .5rem; border-radius:.35rem; font-size:.68rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; background: rgba(255,255,255,.04); color:#cbd5d1; border:1px solid rgba(255,255,255,.07); }
.badge-no-dep { background: rgba(255,200,100,.10); border-color: rgba(255,200,100,.35); color:#fff19a; }

/* rank flag — hangs off the top-left edge; darker layer SITS BEHIND the number as offset shadow */
.rank-flag {
  position: absolute; top: .9rem; left: -.625rem; z-index: 20;
  display:inline-flex; align-items:center; justify-content:center;
  height:1.7rem; min-width:2.6rem; padding:0 .6rem;
  border-radius:.4rem;
  font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:.82rem;
  background: rgba(20,24,30,.92); backdrop-filter: blur(8px);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 3px 0 0 rgba(0,0,0,.55), 0 8px 18px -4px rgba(0,0,0,.5);
}
/* Top-3 Plätze: Gold/Silber/Bronze mit metallischem Verlauf + Schimmer-Sweep */
.rank-1, .rank-2, .rank-3 { position: absolute; overflow: hidden; isolation: isolate; }
.rank-1::after, .rank-2::after, .rank-3::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-110%);
  animation: rank-shine 3.2s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
.rank-1 > *, .rank-2 > *, .rank-3 > * { position: relative; z-index: 2; }
@keyframes rank-shine {
  0%        { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}

/* GOLD */
.rank-1 {
  background: linear-gradient(135deg, #fff4b8 0%, #ffd34d 30%, #d99520 55%, #ffe28a 80%, #c98010 100%);
  color: #4a2b00; border-color: rgba(255,210,80,.8);
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
  box-shadow: 0 3px 0 0 #8a5a10, 0 10px 22px -6px rgba(255,200,80,.55), inset 0 1px 0 rgba(255,255,255,.55);
}

/* SILBER */
.rank-2 {
  background: linear-gradient(135deg, #ffffff 0%, #d8dde2 30%, #8d97a2 55%, #e6ebef 80%, #6b7480 100%);
  color: #1a2028; border-color: rgba(220,225,232,.8);
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
  box-shadow: 0 3px 0 0 #4a525c, 0 10px 22px -6px rgba(200,210,220,.45), inset 0 1px 0 rgba(255,255,255,.6);
}

/* BRONZE */
.rank-3 {
  background: linear-gradient(135deg, #f4c89a 0%, #d18a4c 30%, #8a4a18 55%, #e8b282 80%, #6b3712 100%);
  color: #2c1500; border-color: rgba(210,140,80,.8);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
  box-shadow: 0 3px 0 0 #4a2810, 0 10px 22px -6px rgba(180,120,60,.5), inset 0 1px 0 rgba(255,235,210,.4);
}

/* Logo — Quadrat inline neben Stars/Lizenz im Brand-Block (Name ist raus, also darf's größer). */
.logo-block {
  width: 5.75rem; height: 5.75rem;        /* mobile: 92×92 */
  flex-shrink: 0;
  border-radius: .75rem;
  background: linear-gradient(135deg, rgba(255,203,31,.20) 0%, rgba(255,216,74,.07) 55%, rgba(255,203,31,.02) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .logo-block { width: 7rem; height: 7rem; }   /* desktop: 112×112 */
}
.logo-icon { color:#ffd84a; font-size: 2.4rem; filter: drop-shadow(0 2px 6px rgba(255,203,31,.32)); }
@media (min-width: 768px) { .logo-icon { font-size: 3rem; } }
/* Logo füllt den Frame vollständig aus — minimal beschnittene Ränder werden
   in Kauf genommen für den "edge-to-edge"-Look. */
.logo-block img.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* stars — FA Kit ersetzt <i> mit <svg>, daher beide Selektoren */
.stars { display: inline-flex; align-items: center; gap: 1px; vertical-align: middle; }
.stars i, .stars svg { color:#ffd84a; font-size:.62rem; width:.62rem; height:.62rem; }
.stars i.empty, .stars svg.empty { color: rgba(255,255,255,.18); }

/* payment icons */
/* Einheitliches Design für alle Zahlungs-Icons: fixe Größe + Mint-Akzent */
.pay-icon {
  display:inline-flex; align-items:center; justify-content:center;
  width: 64px; height: 28px;                /* fixe Größe für alle */
  padding: 0;
  border-radius: .35rem;
  background: rgba(255,203,31,.08);
  border: 1px solid rgba(255,216,74,.25);
  color: #ffd84a;
  font-size: .9rem;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.pay-icon:hover { transform: translateY(-1px); border-color: rgba(255,216,74,.5); }
.pay-icon.text { font-size: .68rem; font-weight: 700; letter-spacing: .02em; }
/* Visa + Mastercard sind als Card-Icons natürlich breiter — größer rendern damit sie nicht winzig wirken */
.pay-icon .fa-cc-visa, .pay-icon .fa-cc-mastercard { font-size: 1.5rem; }
/* Icon + Text Variante (z.B. Crypto = Bitcoin-Icon + "Crypto") */
.pay-icon.icon-text { gap: .25rem; padding: 0 .4rem; font-size: .65rem; font-weight: 700; letter-spacing: .02em; width: auto; min-width: 64px; }
.pay-icon.icon-text i { font-size: .85rem; }
/* Crypto-Stack: 3 überlappende Coin-Symbole */
.pay-icon.crypto-stack { padding: 0 .3rem; width: auto; min-width: 64px; }
.crypto-icons { display: inline-flex; align-items: center; }
.crypto-icons .ci {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  color: #ffd84a;
  background: rgba(255,203,31,.15);
  border: 1.5px solid #0a0a0b;
  margin-left: -7px;
}
.crypto-icons .ci:first-child { margin-left: 0; }
.crypto-icons .ci i { font-size: 11px; }
/* Toggle-Button "+X" — deutlicher Click-Affordance */
button.pay-toggle.pay-icon {
  cursor: pointer;
  background: rgba(255,203,31,.18);
  border-color: rgba(255,216,74,.55);
  color: #ffd84a;
  font-weight: 700;
  font-size: .72rem;
}
button.pay-toggle.pay-icon:hover {
  background: rgba(255,203,31,.28);
  border-color: rgba(255,216,74,.8);
  transform: translateY(-1px) scale(1.05);
}

/* sort select */
.sort-select {
  appearance:none; background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08);
  color:#e6edf3; padding:.5rem 2rem .5rem .8rem; border-radius:.5rem; font-size:.875rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23cdff5c' d='M6 8L2 4h8z'/></svg>");
  background-repeat:no-repeat; background-position: right .6rem center; cursor:pointer;
}
.sort-select:focus { outline:none; border-color: rgba(255,216,74,.5); }
.sort-select option { background:#121214; color:#e6edf3; }
.sort-select option:checked { background:#ffcb1f; color:#11130a; }

/* details accordion */
details > summary { list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; padding:.55rem 0; }
details > summary::-webkit-details-marker { display:none; }
details > summary .chev { transition: transform .2s ease; color:#ffd84a; }
details[open] > summary .chev { transform: rotate(90deg); }

/* row details collapse */
.row-details { display:none; }
.card.open .row-details { display:block; }
.card.open .details-icon { transform: rotate(180deg); }
.details-icon { transition: transform .2s ease; }

.row-hidden { display:none !important; }

/* desktop filter-sidebar toggle on mobile (the LEFT one) */
@media (max-width: 1023px) {
  .sidebar { display:none; }
  .sidebar.open { display:block; }
}

/* MOBILE NAV SIDEBAR (slide-in from right, via burger) */
#mobile-sidebar.open { transform: translateX(0); box-shadow: -24px 0 60px -16px rgba(0,0,0,.7); }
#mobile-overlay.open { opacity: 1; pointer-events: auto; }
body.mobile-menu-open { overflow: hidden; }
.mobile-nav-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem .8rem; border-radius: .5rem;
  font-size: .95rem; color: #cfd6dd;
  transition: background .15s ease, color .15s ease;
}
.mobile-nav-link:hover { background: rgba(255,255,255,.04); color: #fff; }

/* global page scrollbar */
::-webkit-scrollbar { width:10px; height:10px; }
::-webkit-scrollbar-track { background:#0a0b0d; }
::-webkit-scrollbar-thumb { background:#2b2e36; border-radius:999px; }
::-webkit-scrollbar-thumb:hover { background:#3c3f4a; }

/* ─────────────────────────────────────────────────────────────
   Typography upgrade — Sora als Display-Font für Headlines.
   Space Grotesk bleibt für Body. Tighter tracking, heavier weights.
   ───────────────────────────────────────────────────────────── */
/* Wildcard `* ` würde FA Icon-Fonts auf <i> Tags überschreiben → expliziter Selector ausschliesslich für Text-Elemente */
.font-display, .font-display :not(i):not(svg):not([class*="fa-"]) { font-family: 'Sora', 'Space Grotesk', system-ui, sans-serif; }
h1, h2, h3, .h-display { font-family: 'Sora', system-ui, sans-serif; letter-spacing: -.02em; }
h1 { font-weight: 800; }
h2, h3 { font-weight: 700; }

/* Tabular-Nums für alle Zahlen-Stellen (Ratings, Prozente, Beträge) */
.tabular, .row-bonus, .row-meta, .stars + span { font-variant-numeric: tabular-nums; }

/* ─────────────────────────────────────────────────────────────
   Animated hero orbs — drifting + breathing glow blobs für mehr Tiefe
   Petrol-Gradient als Basis + zwei animierte Mint-Orbs (GPU-only).
   ───────────────────────────────────────────────────────────── */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  /* Komplett transparent — Body-Gradient läuft nahtlos durch, keine Orbs. */
  background: transparent;
}

/* ─────────────────────────────────────────────────────────────
   Card hover-glow upgrade — stärkerer Lift + Glow
   ───────────────────────────────────────────────────────────── */
.card {
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  will-change: transform;
}
.card:hover {
  border-color: rgba(255,203,31,.55);
  box-shadow:
    0 0 0 1px rgba(255,203,31,.18),
    0 14px 40px -14px rgba(255,203,31,.32),
    0 28px 60px -28px rgba(0,0,0,.6);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   Focus-Visible Accessibility — sichtbare Outlines in Mint
   ───────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #ffcb1f;
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline-offset: 3px; }

/* Buttons subtle ripple on press */
.btn-mint:active { transform: translateY(0); filter: brightness(.95); }
.btn-ghost:active { background: rgba(255,203,31,.08); }

/* ─────────────────────────────────────────────────────────────
   Section-Headlines mit linkem Akzent-Strich (für Seiten ohne Hero)
   ───────────────────────────────────────────────────────────── */
.h-display-accent {
  position: relative; padding-left: .9rem;
}
.h-display-accent::before {
  content: ''; position: absolute; left: 0; top: .25em; bottom: .25em;
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, #ffcb1f 0%, #cc9500 100%);
  box-shadow: 0 0 12px rgba(255,203,31,.5);
}

/* Smoother selection */
::selection { background: rgba(255,203,31,.35); color: #fff; }

/* ─────────────────────────────────────────────────────────────
   View Transitions API — Cross-Document-Fade beim Seitenwechsel.
   Chrome 126+, Edge, Safari 18+ → smooth crossfade automatisch.
   Andere Browser ignorieren das ohne Fehler.
   ───────────────────────────────────────────────────────────── */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .22s;
  animation-timing-function: cubic-bezier(.4, 0, .2, 1);
}
::view-transition-old(root) { animation-name: vt-fade-out; }
::view-transition-new(root) { animation-name: vt-fade-in; }
@keyframes vt-fade-out { to   { opacity: 0; } }
@keyframes vt-fade-in  { from { opacity: 0; } }

/* Logo bleibt während Transition exakt am Platz (kein Crossfade auf ihm) */
.vt-logo { view-transition-name: logo; }
::view-transition-group(logo) { animation-duration: .22s; }

/* Reduced-motion: keine Fades */
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

/* ─────────────────────────────────────────────────────────────
   Micro-Polish — Tap-Delay weg, smooth scroll on anchors,
   image-rendering crisp, kein layout-shift bei Font-Load
   ───────────────────────────────────────────────────────────── */
/* Removes 300ms tap-delay on iOS + faster touch responses */
a, button, [role="button"], input[type="submit"], .btn-mint, .btn-ghost, .btn-twitch, .btn-red {
  touch-action: manipulation;
}

/* Skeleton-Loader für die Casino-Liste */
.skel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #18181b 0%, #121214 100%);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 1rem;
}
.skel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,203,31,.06), transparent);
  animation: skel-shimmer 1.4s ease-in-out infinite;
  transform: translateX(-100%);
}
@keyframes skel-shimmer { to { transform: translateX(100%); } }
.skel-bar { background: rgba(255,255,255,.04); border-radius: .35rem; height: 12px; }
.skel-bar.lg { height: 18px; }
.skel-bar.xl { height: 28px; }

/* ─── Race-Podium-Karten: Gold / Silber / Bronze ──────────────────────── */
.podium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: .75rem;
  display: flex;
  flex-direction: column;
}
.podium-card > * { position: relative; z-index: 2; }
.podium-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.10) 50%, transparent 65%);
  transform: translateX(-110%);
  animation: rank-shine 4.5s ease-in-out infinite;
}

/* Gold (#1) */
.podium-1 {
  background:
    linear-gradient(180deg, rgba(255,210,80,.20) 0%, rgba(217,149,32,.07) 55%, rgba(217,149,32,.02) 100%),
    linear-gradient(135deg, #161618, #0a0a0b);
  border: 1px solid rgba(255,210,80,.55);
  box-shadow: 0 12px 32px -10px rgba(255,200,80,.32), inset 0 1px 0 rgba(255,255,255,.08);
}
.podium-rank-1 { color: #ffe28a; text-shadow: 0 1px 0 rgba(0,0,0,.4); }
.podium-prize-1 {
  background: linear-gradient(135deg, rgba(255,220,90,.22), rgba(255,180,40,.10));
  border: 1px solid rgba(255,210,80,.6);
  color: #ffe28a;
}

/* Silber (#2) — Glow/Border auf Bronze-Niveau gedämpft damit es nicht prominenter
   wirkt als #3 (visuell gleiches "Gewicht", nur andere Farbe). */
.podium-2 {
  background:
    linear-gradient(180deg, rgba(220,228,236,.12) 0%, rgba(150,162,176,.05) 55%, rgba(150,162,176,.02) 100%),
    linear-gradient(135deg, #161618, #0a0a0b);
  border: 1px solid rgba(220,225,232,.35);
  box-shadow: 0 12px 32px -10px rgba(200,210,220,.18), inset 0 1px 0 rgba(255,255,255,.06);
}
.podium-rank-2 { color: #eaf0f5; text-shadow: 0 1px 0 rgba(0,0,0,.3); }
.podium-prize-2 {
  background: linear-gradient(135deg, rgba(220,228,236,.20), rgba(150,162,176,.08));
  border: 1px solid rgba(220,228,236,.55);
  color: #eaf0f5;
}

/* Bronze (#3) */
.podium-3 {
  background:
    linear-gradient(180deg, rgba(244,200,154,.18) 0%, rgba(180,110,60,.07) 55%, rgba(180,110,60,.02) 100%),
    linear-gradient(135deg, #161618, #0a0a0b);
  border: 1px solid rgba(210,140,80,.5);
  box-shadow: 0 12px 32px -10px rgba(180,120,60,.25), inset 0 1px 0 rgba(255,255,255,.06);
}
.podium-rank-3 { color: #f4c89a; text-shadow: 0 1px 0 rgba(0,0,0,.4); }
.podium-prize-3 {
  background: linear-gradient(135deg, rgba(244,200,154,.20), rgba(180,110,60,.08));
  border: 1px solid rgba(210,140,80,.55);
  color: #f4c89a;
}

/* Promote heavy animated layers to compositor (smoother repaints) */
.hero-bg::before, .hero-bg::after,
.float-back, .card,
.modal-overlay, .modal {
  will-change: transform, opacity;
}


/* ─── SAMURAI BACKGROUND GUARDIAN ─────────────────────────────────────
   Fixed oben rechts, mix-blend-mode lässt dunkle Bereiche verschwinden,
   leuchtende Augen bleiben sichtbar. Auf Mobile ausgeblendet. */
.samurai-bg {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: auto;
  z-index: -1; /* hinter Content; nur dort sichtbar wo kein Panel überdeckt */
  pointer-events: none;
  mix-blend-mode: lighten; /* dunkle Bereiche verschmelzen mit Body-BG */
  opacity: 0.55;
  filter: drop-shadow(0 0 28px rgba(255,203,31, 0.15));
  overflow: hidden;
}
.samurai-bg img {
  height: 100%;
  width: auto;
  max-width: 55vw;
  object-fit: contain;
  object-position: right top;
  display: block;
  /* sanfte vertikale Abfaserung am unteren Rand → kein harter Schnitt */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 75%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 75%, transparent 100%);
}
/* Auf Tablet/Mobile ausblenden — würde Content überdecken */
@media (max-width: 1023px) {
  .samurai-bg { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .samurai-bg { filter: none; }
}

/* Header bottom border — leuchtende Mint-Linie mit weichem Glow nach unten */
.header-mint-glow { position: relative; }
.header-mint-glow::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,216,74, 0.15) 8%,
    rgba(255,216,74, 0.95) 50%,
    rgba(255,216,74, 0.15) 92%,
    transparent 100%);
  box-shadow:
    0 0 4px 0 rgba(255,216,74, 0.40),
    0 0 9px 0 rgba(255,203,31, 0.20),
    0 0 18px 1px rgba(255,203,31, 0.08);
  pointer-events: none;
}

/* ─── FLOATING SHURIKENS ──────────────────────────────────────────────
   Sanfte Hintergrund-Atmosphäre: 6 kleine mint-leuchtende Sterne driften
   langsam und rotieren kontinuierlich. Hinter Content (z-index:-1),
   auf Mobile ausgeblendet. */
.bg-shurikens {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-shuriken {
  position: absolute;
  display: block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1 L13.4 10.6 L23 12 L13.4 13.4 L12 23 L10.6 13.4 L1 12 L10.6 10.6 Z' fill='%23cdff5c'/><circle cx='12' cy='12' r='0.9' fill='%230e1f1d'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 6px rgba(255,216,74, 0.55));
  will-change: transform, opacity;
}
@keyframes shuriken-drift-a {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(60px, -40px) rotate(90deg); }
  50%  { transform: translate(90px, -110px) rotate(180deg); }
  75%  { transform: translate(30px, -80px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes shuriken-drift-b {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-70px, 50px) rotate(-90deg); }
  50%  { transform: translate(-110px, 100px) rotate(-180deg); }
  75%  { transform: translate(-40px, 70px) rotate(-270deg); }
  100% { transform: translate(0, 0) rotate(-360deg); }
}
@keyframes shuriken-drift-c {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(80px, 60px) rotate(90deg); }
  50%  { transform: translate(120px, 0) rotate(180deg); }
  75%  { transform: translate(60px, -50px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes shuriken-drift-d {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-50px, -60px) rotate(-120deg); }
  50%  { transform: translate(40px, -90px) rotate(-220deg); }
  75%  { transform: translate(90px, -30px) rotate(-300deg); }
  100% { transform: translate(0, 0) rotate(-360deg); }
}
/* Schlanker Vertikal-Drift für Shurikens am rechten Bildschirmrand —
   bleibt nahe der Rand-Säule, fliegt NICHT in die Samurai-Silhouette */
@keyframes shuriken-drift-edge {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(12px, -55px) rotate(90deg); }
  50%  { transform: translate(-8px, -100px) rotate(180deg); }
  75%  { transform: translate(15px, -45px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes shuriken-drift-edge-down {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-10px, 60px) rotate(-90deg); }
  50%  { transform: translate(10px, 110px) rotate(-180deg); }
  75%  { transform: translate(-12px, 50px) rotate(-270deg); }
  100% { transform: translate(0, 0) rotate(-360deg); }
}
@keyframes shuriken-glow-pulse {
  0%, 100% { opacity: 0.18; }
  50%      { opacity: 0.38; }
}
.bg-shuriken--1  { top:  8%; left:  7%; width: 26px; height: 26px;
  animation: shuriken-drift-a 38s linear infinite, shuriken-glow-pulse 5s   ease-in-out infinite; }
.bg-shuriken--2  { top: 22%; left: 18%; width: 18px; height: 18px;
  animation: shuriken-drift-b 46s linear infinite, shuriken-glow-pulse 6s   ease-in-out infinite -2s; }
.bg-shuriken--3  { top: 38%; left:  6%; width: 22px; height: 22px;
  animation: shuriken-drift-c 42s linear infinite, shuriken-glow-pulse 7s   ease-in-out infinite -3s; }
.bg-shuriken--4  { top: 56%; left: 16%; width: 16px; height: 16px;
  animation: shuriken-drift-d 50s linear infinite, shuriken-glow-pulse 5.5s ease-in-out infinite -1s; }
.bg-shuriken--5  { top: 72%; left:  9%; width: 28px; height: 28px;
  animation: shuriken-drift-a 54s linear infinite, shuriken-glow-pulse 8s   ease-in-out infinite -4s; }
.bg-shuriken--6  { top: 88%; left: 24%; width: 20px; height: 20px;
  animation: shuriken-drift-c 44s linear infinite, shuriken-glow-pulse 6.5s ease-in-out infinite -2.5s; }
.bg-shuriken--7  { top: 14%; left: 36%; width: 22px; height: 22px;
  animation: shuriken-drift-b 40s linear infinite, shuriken-glow-pulse 5.8s ease-in-out infinite -1.5s; }
.bg-shuriken--8  { top: 32%; left: 48%; width: 16px; height: 16px;
  animation: shuriken-drift-d 48s linear infinite, shuriken-glow-pulse 7.2s ease-in-out infinite -3.5s; }
.bg-shuriken--9  { top: 50%; left: 38%; width: 24px; height: 24px;
  animation: shuriken-drift-a 52s linear infinite, shuriken-glow-pulse 6s   ease-in-out infinite -2.8s; }
.bg-shuriken--10 { top: 68%; left: 54%; width: 20px; height: 20px;
  animation: shuriken-drift-c 46s linear infinite, shuriken-glow-pulse 5.4s ease-in-out infinite -1.8s; }
.bg-shuriken--11 { top: 86%; left: 42%; width: 18px; height: 18px;
  animation: shuriken-drift-b 50s linear infinite, shuriken-glow-pulse 7.5s ease-in-out infinite -4.2s; }
.bg-shuriken--12 { top: 10%; left: 64%; width: 24px; height: 24px;
  animation: shuriken-drift-d 42s linear infinite, shuriken-glow-pulse 6.2s ease-in-out infinite -2.2s; }
.bg-shuriken--13 { top: 44%; left: 78%; width: 18px; height: 18px;
  animation: shuriken-drift-a 56s linear infinite, shuriken-glow-pulse 8s   ease-in-out infinite -3s; }
.bg-shuriken--14 { top: 76%; left: 70%; width: 22px; height: 22px;
  animation: shuriken-drift-c 48s linear infinite, shuriken-glow-pulse 5.6s ease-in-out infinite -1.2s; }
/* Rechte-Rand-Säule — bleibt vom Samurai weg (left: 88-96%, vertikal driftend) */
.bg-shuriken--15 { top:  6%; left: 95%; width: 20px; height: 20px;
  animation: shuriken-drift-edge      52s linear infinite, shuriken-glow-pulse 6.4s ease-in-out infinite -0.5s; }
.bg-shuriken--16 { top: 24%; left: 91%; width: 18px; height: 18px;
  animation: shuriken-drift-edge-down 46s linear infinite, shuriken-glow-pulse 5.2s ease-in-out infinite -2.8s; }
.bg-shuriken--17 { top: 54%; left: 96%; width: 22px; height: 22px;
  animation: shuriken-drift-edge      54s linear infinite, shuriken-glow-pulse 7s   ease-in-out infinite -1.6s; }
/* Untere Zone — unterhalb der Mask-Fade-Linie (75%+), Samurai ist dort transparent */
.bg-shuriken--18 { top: 88%; left: 60%; width: 22px; height: 22px;
  animation: shuriken-drift-c         44s linear infinite, shuriken-glow-pulse 6s   ease-in-out infinite -3.2s; }
.bg-shuriken--19 { top: 94%; left: 86%; width: 18px; height: 18px;
  animation: shuriken-drift-edge-down 50s linear infinite, shuriken-glow-pulse 5.8s ease-in-out infinite -2.4s; }
@media (max-width: 768px) {
  .bg-shurikens { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .bg-shuriken { animation: none !important; opacity: 0.25; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FRANKLYN — Electric-Yellow Theme  (überschreibt das Basis-Theme)
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  --fr-yellow:      #ffcb1f;
  --fr-yellow-br:   #ffd84a;
  --fr-yellow-soft: #ffe066;
  --fr-bg-0:        #0a0b0d;
  --fr-bg-1:        #0f1013;
  --fr-bg-2:        #16181c;
  --fr-bg-3:        #1f2127;
  --fr-line:        rgba(255,216,74,.14);
}

/* ── Background: dunkler Verlauf + Partikel-Canvas ──────────────────────── */
html, body {
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255,203,31,.10) 0%, transparent 55%),
    radial-gradient(90% 60% at 85% 10%, rgba(255,216,74,.06) 0%, transparent 60%),
    linear-gradient(180deg, #16181c 0%, #0f1013 45%, #0a0b0d 100%);
  background-attachment: fixed;
  color: #f3f4ee;
}
#fr-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
/* Content über dem Partikel-Layer (mobile-sidebar/-overlay NICHT — die müssen
   fixed bleiben, sonst landen sie im normalen Seitenfluss) */
header, main, footer {
  position: relative;
  z-index: 1;
}

/* ── Logo Wordmark ──────────────────────────────────────────────────────── */
.fr-brand { text-decoration: none; }
.fr-wordmark {
  font-family: 'Sora', 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
}
.fr-brand:hover .fr-wordmark { color: var(--fr-yellow-br); }
.fr-brand .vt-logo { filter: drop-shadow(0 0 8px rgba(255,203,31,.4)); transition: transform .25s ease; }
.fr-brand:hover .vt-logo { transform: rotate(-12deg) scale(1.05); }

/* ── Header glow ────────────────────────────────────────────────────────── */
header.sticky {
  background: rgba(10,11,13,.85) !important;
  border-bottom: 1px solid var(--fr-line);
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.fr-hero {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 1.5rem;
}
@media (min-width: 768px) { .fr-hero { padding: 3.5rem 2rem 2rem; } }
.fr-hero-inner { max-width: 44rem; }
.fr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .8rem;
  border: 1px solid rgba(255,216,74,.35);
  background: rgba(255,203,31,.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fr-yellow-soft);
  margin-bottom: 1.1rem;
}
.fr-hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fr-yellow-br);
  box-shadow: 0 0 8px 1px var(--fr-yellow-br);
  animation: fr-pulse 1.8s ease-in-out infinite;
}
@keyframes fr-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.fr-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 .8rem;
}
.fr-hero-accent {
  background: linear-gradient(100deg, #ffcb1f 0%, #ffe066 50%, #ffcb1f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: fr-shine 5s linear infinite;
}
@keyframes fr-shine { to { background-position: 200% center; } }
.fr-hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  color: rgba(243,244,238,.6);
  margin: 0 0 1.4rem;
  max-width: 36rem;
}
.fr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
}
.fr-hero-stats {
  display: flex;
  gap: 1.4rem;
  margin-left: .5rem;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 520px) { .fr-hero-stats { margin-left: 0; padding-left: 0; border: 0; width: 100%; margin-top: .4rem; } }
.fr-hero-stat { display: flex; flex-direction: column; }
.fr-hero-stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fr-yellow-br);
  line-height: 1;
}
.fr-hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  margin-top: 3px;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-mint {
  background: linear-gradient(180deg, #ffe066 0%, #ffcb1f 55%, #cc9500 100%) !important;
  color: #11130a !important;
  border: 1px solid #8a6100 !important;
  font-weight: 700 !important;
  box-shadow: 0 0 0 0 rgba(255,203,31,0), 0 6px 16px -6px rgba(255,203,31,.55) !important;
  transition: box-shadow .2s ease, transform .12s ease !important;
}
.btn-mint:hover {
  box-shadow: 0 0 18px -2px rgba(255,216,74,.7), 0 8px 20px -6px rgba(255,203,31,.6) !important;
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,216,74,.25) !important;
  color: #e8e9e2 !important;
}
.btn-ghost:hover {
  border-color: var(--fr-yellow-br) !important;
  color: var(--fr-yellow-soft) !important;
  background: rgba(255,203,31,.07) !important;
}

/* ═══ FILTER BAR (horizontal) ═══════════════════════════════════════════════ */
.fr-filter-toggle {
  display: flex;
  align-items: center;
  gap: .6rem;
  width: 100%;
  padding: .7rem 1rem;
  margin-bottom: .75rem;
  background: var(--fr-bg-2);
  border: 1px solid var(--fr-line);
  border-radius: 12px;
  color: #f3f4ee;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
}
.fr-filter-toggle i:first-child { color: var(--fr-yellow-br); }
.fr-filter-toggle.is-open i:last-child { transform: rotate(180deg); }

.fr-filterbar {
  background: linear-gradient(180deg, rgba(31,33,39,.85) 0%, rgba(22,24,28,.85) 100%);
  border: 1px solid var(--fr-line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(8px);
}
.fr-filterbar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .85rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fr-filterbar-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}
.fr-filter-reset {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  background: none;
  border: 0;
  cursor: pointer;
}
.fr-filter-reset:hover { color: var(--fr-yellow-br); }
.fr-filter-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px; width: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  cursor: pointer;
}
.fr-filter-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.6rem;
}
.fr-filter-group { display: flex; flex-direction: column; gap: .5rem; }
.fr-filter-group--wide { flex: 1 1 100%; }
@media (min-width: 1024px) { .fr-filter-group--wide { flex: 1 1 auto; } }
.fr-filter-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,216,74,.6);
}
.fr-chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }

/* Chips + Checks im Filterbar — pill style */
.fr-filterbar .chip,
.fr-filterbar .check {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(243,244,238,.75);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.fr-filterbar .chip i,
.fr-filterbar .check i { font-size: .72rem; opacity: .7; }
.fr-filterbar .chip:hover,
.fr-filterbar .check:hover {
  border-color: rgba(255,216,74,.5);
  color: #fff;
}
.fr-filterbar .chip.active,
.fr-filterbar .check.active {
  background: linear-gradient(180deg, rgba(255,216,74,.22), rgba(255,203,31,.12));
  border-color: var(--fr-yellow-br);
  color: var(--fr-yellow-soft);
  box-shadow: 0 0 12px -4px rgba(255,216,74,.6);
}
.fr-filterbar .chip.active i,
.fr-filterbar .check.active i { opacity: 1; color: var(--fr-yellow-br); }
/* Check-Box marker */
.fr-filterbar .check .box {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .15s ease;
}
.fr-filterbar .check.active .box {
  background: var(--fr-yellow-br);
  border-color: var(--fr-yellow-br);
}
.fr-filterbar .check.active .box::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 8px;
  color: #11130a;
}

/* Mobile: Filterbar einklappbar */
@media (max-width: 1023px) {
  .fr-filterbar { display: none; }
  .fr-filterbar.open { display: block; }
}

/* ── Result bar + Sort ──────────────────────────────────────────────────── */
.fr-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fr-result-count { font-size: .85rem; color: rgba(255,255,255,.5); }
.fr-result-count #result-count { color: var(--fr-yellow-br); font-weight: 700; }
.fr-sort-toggle {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .85rem;
  border-radius: 10px;
  background: var(--fr-bg-2);
  border: 1px solid var(--fr-line);
  color: #f3f4ee;
  font-size: .85rem;
  cursor: pointer;
  min-width: 12rem;
  justify-content: space-between;
}
.fr-sort-toggle:hover { border-color: rgba(255,216,74,.5); }
.fr-sort-menu {
  background: var(--fr-bg-3);
  border: 1px solid rgba(255,216,74,.3);
  border-radius: 10px;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,.7);
  padding: .25rem;
  min-width: 100%;
}
.fr-sort-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: .5rem .7rem;
  border-radius: 7px;
  font-size: .85rem;
  color: #e8e9e2;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.fr-sort-opt:hover { background: rgba(255,216,74,.1); }

/* ═══ CARD GRID ════════════════════════════════════════════════════════════ */
.fr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px)  { .fr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fr-grid { grid-template-columns: repeat(3, 1fr); } }
.fr-card-wrap { position: relative; display: flex; }

/* Card itself — überschreibt das Basis-.card */
.fr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: linear-gradient(180deg, #1c1e24 0%, #131418 100%) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 18px !important;
  padding: 1.25rem 1.1rem 1.1rem !important;
  overflow: visible !important;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease !important;
}
.fr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255,216,74,.35), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.fr-card:hover {
  border-color: rgba(255,216,74,.35) !important;
  box-shadow: 0 0 32px -10px rgba(255,203,31,.4), 0 18px 40px -16px rgba(0,0,0,.7) !important;
  transform: translateY(-3px) !important;
}
.fr-card:hover::before { opacity: 1; }

/* Top-3 Akzent */
.fr-card.rank-1 { border-color: rgba(255,216,74,.4) !important; }
.fr-card.rank-1::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 30px -12px rgba(255,216,74,.5);
  pointer-events: none;
}

/* Rank flag */
.fr-card .rank-flag {
  position: absolute;
  top: -10px; left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  min-width: 34px;
  padding: 0 .5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  color: #11130a;
  background: linear-gradient(180deg, #ffe066, #ffcb1f);
  border-radius: 7px;
  box-shadow: 0 4px 12px -2px rgba(255,203,31,.6);
  z-index: 3;
}
.fr-card .rank-flag.rank-2 { background: linear-gradient(180deg,#d6d9e0,#9aa0ad); color:#1a1c20; box-shadow:0 4px 12px -3px rgba(0,0,0,.6); }
.fr-card .rank-flag.rank-3 { background: linear-gradient(180deg,#e0a878,#b9763f); color:#1a1208; box-shadow:0 4px 12px -3px rgba(0,0,0,.6); }
.fr-card .rank-flag:not(.rank-1):not(.rank-2):not(.rank-3) {
  background: var(--fr-bg-3); color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.12); box-shadow: none;
}

/* Card head */
.fr-card-head { display: flex; flex-direction: column; align-items: center; text-align: center; }
.fr-card-logo { margin-bottom: .6rem; }
.fr-card-logo .logo-block {
  width: 76px; height: 76px;
  border-radius: 16px;
  background: #0f1013;
  border: 1px solid rgba(255,216,74,.18);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fr-card-logo .logo-block .logo-img { width: 100%; height: 100%; object-fit: cover; }
.fr-card-logo .logo-block .logo-icon { font-size: 2rem; color: var(--fr-yellow-br); }
.fr-card-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fr-card-stars { margin-top: .25rem; }
.fr-card-stars .stars i,
.fr-card-stars .stars svg { color: var(--fr-yellow-br); font-size: .7rem; }
.fr-card-stars .stars i.empty,
.fr-card-stars .stars svg.empty { color: rgba(255,255,255,.15); }
.fr-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: center;
  margin-top: .55rem;
}

/* Bonus highlight */
.fr-card-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: .9rem 0 .25rem;
  padding: .8rem .6rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,216,74,.1), rgba(255,203,31,.03));
  border: 1px solid rgba(255,216,74,.2);
}
.fr-card-bonus-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.45);
}
.fr-card-bonus-value {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--fr-yellow-br);
  line-height: 1.15;
  margin-top: .15rem;
  text-shadow: 0 0 18px rgba(255,216,74,.35);
}
.fr-card-bonus-fs {
  font-size: .8rem;
  font-weight: 600;
  color: var(--fr-yellow-soft);
  margin-top: .1rem;
}

/* Mini stats */
.fr-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  margin: .75rem 0;
}
.fr-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem .3rem;
  border-radius: 9px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
}
.fr-stat-label {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}
.fr-stat-val {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  margin-top: .15rem;
}
.fr-stat-val.accent { color: var(--fr-yellow-br); }

/* Code box */
.fr-card-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  margin: .15rem 0 .6rem;
  padding: .5rem .7rem;
  border-radius: 10px;
  border: 1px dashed rgba(255,216,74,.5);
  background: rgba(255,203,31,.06);
}
.fr-card-code-inner { display: flex; flex-direction: column; align-items: center; }
.fr-card-code-label {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
}
.fr-card-code-value {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
  color: var(--fr-yellow-br);
}
.fr-card-code .code-copy {
  background: none;
  border: 0;
  color: rgba(255,216,74,.7);
  cursor: pointer;
  padding: .2rem;
}
.fr-card-code .code-copy:hover { color: var(--fr-yellow-br); }

/* CTA + details button */
.fr-card-play {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: .7rem 1rem !important;
}
.fr-card-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: .6rem;
  padding: .4rem;
  background: none;
  border: 0;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  cursor: pointer;
}
.fr-card-details-btn:hover { color: var(--fr-yellow-br); }
.fr-card-details-btn .details-icon { transition: transform .2s ease; }

/* Accordion */
.fr-card-details {
  display: none;
  margin-top: .5rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.card.open .fr-card-details { display: block; animation: fr-accordion .25s ease; }
@keyframes fr-accordion { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.card.open .fr-card-details-btn .details-icon { transform: rotate(180deg); }

.fr-detail-stat {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .55rem;
  border-radius: 9px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
}
.fr-detail-ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,203,31,.1);
  border: 1px solid rgba(255,216,74,.25);
  color: var(--fr-yellow-br);
  font-size: .8rem;
}
.fr-detail-label {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}
.fr-detail-val {
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  margin-top: .1rem;
}
.fr-detail-heading {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-bottom: .6rem;
}
.fr-detail-heading.accent { color: var(--fr-yellow-br); }
.fr-detail-box {
  padding: .8rem;
  border-radius: 11px;
  background: rgba(255,203,31,.04);
  border: 1px solid rgba(255,216,74,.14);
}
.fr-deposit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .45rem .6rem;
  border-radius: 8px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.05);
}
.fr-deposit-pct {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fr-yellow-br);
}
.fr-pros { display: flex; flex-direction: column; gap: .4rem; }
.fr-pros li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(243,244,238,.85);
  line-height: 1.4;
}
.fr-pros li i { color: var(--fr-yellow-br); font-size: .7rem; margin-top: .25rem; flex-shrink: 0; }

/* Skeleton card */
.fr-skel-card {
  border-radius: 18px;
  padding: 1.25rem 1.1rem;
  background: linear-gradient(180deg,#1c1e24,#131418);
  border: 1px solid rgba(255,255,255,.06);
}

/* ═══ AGE GATE ═════════════════════════════════════════════════════════════ */
html.fr-agegate-locked { overflow: hidden; }
.fr-agegate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6,7,8,.92);
  backdrop-filter: blur(10px);
}
.fr-agegate.show { display: flex; animation: fr-fade .3s ease; }
.fr-agegate.closing { animation: fr-fade .4s ease reverse forwards; }
@keyframes fr-fade { from { opacity: 0; } to { opacity: 1; } }
.fr-agegate-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,203,31,.18) 0%, transparent 65%);
  pointer-events: none;
}
.fr-agegate-card {
  position: relative;
  max-width: 25rem;
  width: 100%;
  text-align: center;
  padding: 2.2rem 1.8rem 1.6rem;
  background: linear-gradient(180deg, #1c1e24 0%, #111216 100%);
  border: 1px solid rgba(255,216,74,.28);
  border-radius: 20px;
  box-shadow: 0 0 50px -10px rgba(255,203,31,.3), 0 30px 60px -20px rgba(0,0,0,.8);
  animation: fr-agegate-pop .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes fr-agegate-pop {
  from { opacity: 0; transform: translateY(20px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.fr-agegate-logo {
  width: 64px; height: 64px;
  filter: drop-shadow(0 0 14px rgba(255,203,31,.5));
}
.fr-agegate-18 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  margin-top: .4rem;
  color: var(--fr-yellow-br);
  text-shadow: 0 0 24px rgba(255,216,74,.5);
}
.fr-agegate-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin: .5rem 0 .6rem;
}
.fr-agegate-text {
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(243,244,238,.62);
  margin-bottom: 1.3rem;
}
.fr-agegate-text strong { color: var(--fr-yellow-soft); }
.fr-agegate-actions { display: flex; flex-direction: column; gap: .6rem; }
.fr-agegate-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1rem;
  border-radius: 11px;
  background: linear-gradient(180deg, #ffe066 0%, #ffcb1f 55%, #cc9500 100%);
  color: #11130a;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  border: 1px solid #8a6100;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .12s ease;
}
.fr-agegate-yes:hover { box-shadow: 0 0 22px -2px rgba(255,216,74,.7); transform: translateY(-1px); }
.fr-agegate-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1rem;
  border-radius: 11px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  text-decoration: none;
}
.fr-agegate-no:hover { color: #fff; border-color: rgba(255,255,255,.25); }
.fr-agegate-fine {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  margin-top: 1rem;
  letter-spacing: .03em;
}

/* ── Misc cleanup: surface/footer in neuem Theme ───────────────────────── */
.surface {
  background: linear-gradient(180deg, rgba(31,33,39,.9), rgba(22,24,28,.9)) !important;
}
footer { border-top: 1px solid var(--fr-line); }
::selection { background: rgba(255,216,74,.3); color: #fff; }
::-webkit-scrollbar-thumb { background: rgba(255,216,74,.25); }
::-webkit-scrollbar-thumb:hover { background: rgba(255,216,74,.45); }

/* ═══════════════════════════════════════════════════════════════════════════
   FRANKLYN v2 — Sheen-Fix · Filter kompakt · Detail-Modal · neuer Hero
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Wandernde Schein-Reflektion KOMPLETT killen ────────────────────────── */
.fr-card::after,
.fr-card.rank-1::after, .fr-card.rank-2::after, .fr-card.rank-3::after,
.rank-flag::after,
.fr-card .rank-flag::after { content: none !important; animation: none !important; }
.fr-card, .fr-card .rank-flag { isolation: auto; }

/* Featured-Karte (#1) — ersetzt das alte .fr-card.rank-1 */
.fr-card--featured {
  border-color: rgba(255,216,74,.4) !important;
  box-shadow: inset 0 0 36px -16px rgba(255,216,74,.45) !important;
}
.fr-card--featured:hover {
  box-shadow: inset 0 0 36px -16px rgba(255,216,74,.45),
              0 0 32px -10px rgba(255,203,31,.4),
              0 18px 40px -16px rgba(0,0,0,.7) !important;
}

/* ── Details-Button (öffnet Modal) ──────────────────────────────────────── */
.fr-card-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  margin-top: .55rem;
  padding: .5rem .75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: rgba(243,244,238,.7);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.fr-card-details-btn:hover {
  border-color: rgba(255,216,74,.45);
  color: var(--fr-yellow-br);
  background: rgba(255,203,31,.06);
}
.fr-card-details-btn i { color: var(--fr-yellow-br); }

/* ═══ DETAIL-MODAL ═════════════════════════════════════════════════════════ */
html.fr-modal-locked { overflow: hidden; }
.fr-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
}
.fr-modal.open { display: block; }
.fr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,7,8,.82);
  backdrop-filter: blur(6px);
  animation: fr-fade .2s ease;
}
.fr-modal-card {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(40rem, calc(100vw - 2rem));
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background: linear-gradient(180deg, #1c1e24 0%, #121317 100%);
  border: 1px solid rgba(255,216,74,.3);
  border-radius: 18px;
  box-shadow: 0 0 50px -12px rgba(255,203,31,.3), 0 40px 80px -24px rgba(0,0,0,.85);
  padding: 1.4rem;
  animation: fr-modal-pop .28s cubic-bezier(.34,1.56,.64,1);
}
@keyframes fr-modal-pop {
  from { opacity: 0; transform: translate(-50%, -46%) scale(.96); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.fr-modal-card::-webkit-scrollbar { width: 8px; }
.fr-modal-card::-webkit-scrollbar-thumb { background: rgba(255,216,74,.3); border-radius: 8px; }
.fr-modal-x {
  position: sticky;
  float: right;
  top: 0;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  z-index: 2;
}
.fr-modal-x:hover { color: #fff; border-color: rgba(255,216,74,.5); background: rgba(255,203,31,.1); }
.fr-modal-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fr-modal-logo .logo-block {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: #0f1013;
  border: 1px solid rgba(255,216,74,.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.fr-modal-logo .logo-block .logo-img { width: 100%; height: 100%; object-fit: cover; }
.fr-modal-logo .logo-block .logo-icon { font-size: 1.6rem; color: var(--fr-yellow-br); }
.fr-modal-title { flex: 1; min-width: 0; }
.fr-modal-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.15;
}
.fr-modal-bonus {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.fr-modal-cta {
  width: 100%;
  justify-content: center;
  margin-top: 1.1rem;
  padding: .8rem 1rem !important;
}
@media (max-width: 480px) {
  .fr-modal-head { flex-wrap: wrap; }
  .fr-modal-bonus { align-items: flex-start; text-align: left; width: 100%; }
}

/* ═══ FILTER — kompakt + einklappbar (überschreibt v1) ═════════════════════ */
.fr-filterbar {
  display: block !important;
  background: linear-gradient(180deg, rgba(31,33,39,.9), rgba(22,24,28,.9));
  border: 1px solid var(--fr-line);
  border-radius: 14px;
  padding: 0;
  margin-bottom: 1rem;
  overflow: hidden;
}
.fr-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .35rem .5rem .35rem .35rem;
}
.fr-filter-headbtn {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
  padding: .55rem .7rem;
  background: none;
  border: 0;
  color: #f3f4ee;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
.fr-filter-headbtn > i:first-child { color: var(--fr-yellow-br); }
.fr-filter-chev {
  margin-left: auto;
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  transition: transform .25s ease;
}
.fr-filterbar.open .fr-filter-chev { transform: rotate(180deg); }
.fr-filter-reset {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.fr-filter-reset:hover { color: var(--fr-yellow-br); border-color: rgba(255,216,74,.4); }

/* Body: standardmäßig eingeklappt */
.fr-filter-body {
  display: none;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 1.3rem;
  padding: .25rem 1rem 1.1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.fr-filterbar.open .fr-filter-body { display: flex; }
.fr-filter-col { display: flex; flex-direction: column; gap: .5rem; }
.fr-filter-col--wide { flex: 1 1 22rem; }
.fr-filter-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,.07); }
@media (max-width: 700px) { .fr-filter-divider { display: none; } .fr-filter-col, .fr-filter-col--wide { flex: 1 1 100%; } }
.fr-filter-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,216,74,.65);
  padding-top: .35rem;
}
.fr-chip-row { display: flex; flex-wrap: wrap; gap: .35rem; }

/* Chips/Checks kompakter */
.fr-filterbar .chip,
.fr-filterbar .check {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .34rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(243,244,238,.72);
  font-size: .73rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.fr-filterbar .chip i,
.fr-filterbar .check i { font-size: .68rem; opacity: .65; }
.fr-filterbar .chip:hover,
.fr-filterbar .check:hover { border-color: rgba(255,216,74,.5); color: #fff; }
.fr-filterbar .chip.active,
.fr-filterbar .check.active {
  background: linear-gradient(180deg, rgba(255,216,74,.22), rgba(255,203,31,.1));
  border-color: var(--fr-yellow-br);
  color: var(--fr-yellow-soft);
  box-shadow: 0 0 10px -3px rgba(255,216,74,.6);
}
.fr-filterbar .chip.active i,
.fr-filterbar .check.active i { opacity: 1; color: var(--fr-yellow-br); }
.fr-filterbar .check .box {
  width: 13px; height: 13px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .15s ease;
}
.fr-filterbar .check.active .box { background: var(--fr-yellow-br); border-color: var(--fr-yellow-br); }
.fr-filterbar .check.active .box::after {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 7.5px; color: #11130a;
}

/* ═══ HERO — neu, zentriert, energetisch ══════════════════════════════════ */
.fr-hero {
  position: relative;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.25rem 1rem .5rem;
  text-align: center;
}
@media (min-width: 768px) { .fr-hero { padding: 1.5rem 2rem .5rem; } }
.fr-hero-inner { position: relative; z-index: 1; }
.fr-hero-logo {
  width: 60px; height: 60px;
  margin: 0 auto .5rem;
  filter: drop-shadow(0 0 16px rgba(255,203,31,.55));
  animation: fr-hero-float 4s ease-in-out infinite;
}
@keyframes fr-hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.fr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .85rem;
  border: 1px solid rgba(255,216,74,.35);
  background: rgba(255,203,31,.08);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fr-yellow-soft);
  margin-bottom: 1rem;
}
.fr-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  color: #fff;
  margin: 0 0 .45rem;
}
.fr-hero-accent {
  position: relative;
  background: linear-gradient(100deg, #ffcb1f 0%, #ffe066 45%, #ffcb1f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: fr-shine 5s linear infinite;
}
.fr-hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  line-height: 1.55;
  color: rgba(243,244,238,.6);
  margin: 0 auto .8rem;
  max-width: 34rem;
}
.fr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: .8rem;
}
.fr-hero-marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.4rem;
}
.fr-hero-mark {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  font-weight: 600;
  color: rgba(243,244,238,.55);
}
.fr-hero-mark i { color: var(--fr-yellow-br); font-size: .8rem; }
.fr-hero-mark span#hero-stat-count { color: var(--fr-yellow-br); font-weight: 800; }
/* Animierte Electric-Line unter dem Hero */
.fr-hero-line {
  position: relative;
  height: 2px;
  max-width: 22rem;
  margin: .9rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(255,216,74,.7), transparent);
  overflow: hidden;
}
.fr-hero-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: fr-hero-spark 3s ease-in-out infinite;
}
@keyframes fr-hero-spark {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(420%); }
}
@media (prefers-reduced-motion: reduce) {
  .fr-hero-logo, .fr-hero-line::after, .fr-hero-accent { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FRANKLYN v3 — Linke Filter-Sidebar · Layout · Hero zentriert + Animation
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Layout: Sidebar + Content ──────────────────────────────────────────── */
.fr-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .fr-layout { grid-template-columns: 250px 1fr; gap: 1.5rem; }
}
.fr-content { min-width: 0; }

/* Grid passt sich der Content-Breite an → 1 / 2 / 3 Karten */
.fr-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)) !important;
  gap: 1.1rem !important;
}

/* ── Mobile Filter-Button ───────────────────────────────────────────────── */
.fr-mobile-filter {
  display: flex;
  align-items: center;
  gap: .6rem;
  width: 100%;
  padding: .7rem 1rem;
  margin-bottom: .9rem;
  background: var(--fr-bg-2);
  border: 1px solid var(--fr-line);
  border-radius: 12px;
  color: #f3f4ee;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
}
.fr-mobile-filter i { color: var(--fr-yellow-br); }

/* ── Filter-Sidebar ─────────────────────────────────────────────────────── */
.fr-sidebar {
  background: linear-gradient(180deg, rgba(31,33,39,.92), rgba(20,22,26,.92));
  border: 1px solid var(--fr-line);
  border-radius: 16px;
  padding: .35rem .65rem .65rem;
  align-self: start;
}
@media (min-width: 1024px) {
  .fr-sidebar { position: sticky; top: 5rem; }
}
@media (max-width: 1023px) {
  .fr-sidebar { display: none; }
  .fr-sidebar.open { display: block; animation: fr-rise .3s ease both; }
}
.fr-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .35rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.fr-sidebar-title {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 700;
}
.fr-sidebar-title i { color: var(--fr-yellow-br); }
.fr-sidebar-head-actions { display: flex; align-items: center; gap: .4rem; }
.fr-sidebar-reset {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .35rem .55rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  color: rgba(255,255,255,.55);
  font-size: .7rem; font-weight: 600; cursor: pointer;
}
.fr-sidebar-reset:hover { color: var(--fr-yellow-br); border-color: rgba(255,216,74,.4); }
.fr-sidebar-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  color: rgba(255,255,255,.6); cursor: pointer;
}

/* Filter-Gruppe (<details>) */
.fr-fgroup { border-bottom: 1px solid rgba(255,255,255,.06); }
.fr-fgroup:last-of-type { border-bottom: 0; }
.fr-fgroup-sum {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem .35rem;
  cursor: pointer;
  font-size: .82rem; font-weight: 700;
  color: #f3f4ee;
  user-select: none;
}
.fr-fgroup-sum::-webkit-details-marker { display: none; }
.fr-fgroup-sum > span { display: flex; align-items: center; gap: .5rem; }
.fr-fgroup-ico { color: var(--fr-yellow-br); font-size: .8rem; }
.fr-fgroup-chev {
  font-size: .68rem; color: rgba(255,255,255,.4);
  transition: transform .25s ease;
}
.fr-fgroup[open] .fr-fgroup-chev { transform: rotate(180deg); }
.fr-fgroup-body {
  padding: .1rem .35rem .85rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.fr-fgroup[open] .fr-fgroup-body { animation: fr-fgroup-open .28s ease both; }
@keyframes fr-fgroup-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Quick: Chips als 2-Spalten-Grid */
.fr-fgroup-body.fr-chip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
}

/* Chips/Checks in der Sidebar */
.fr-sidebar .chip {
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  padding: .45rem .5rem;
  border-radius: 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(243,244,238,.75);
  font-size: .76rem; font-weight: 600;
  cursor: pointer; transition: all .15s ease; white-space: nowrap;
}
.fr-sidebar .chip i { font-size: .7rem; opacity: .7; }
.fr-sidebar .chip:hover { border-color: rgba(255,216,74,.5); color: #fff; }
.fr-sidebar .chip.active {
  background: linear-gradient(180deg, rgba(255,216,74,.22), rgba(255,203,31,.1));
  border-color: var(--fr-yellow-br); color: var(--fr-yellow-soft);
  box-shadow: 0 0 10px -3px rgba(255,216,74,.6);
}
.fr-sidebar .chip.active i { opacity: 1; color: var(--fr-yellow-br); }

.fr-sidebar .check {
  display: flex; align-items: center; gap: .55rem;
  width: 100%;
  padding: .45rem .55rem;
  border-radius: 9px;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(243,244,238,.72);
  font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all .14s ease; text-align: left;
}
.fr-sidebar .check i {
  font-size: .78rem; color: rgba(255,255,255,.35);
  width: 1rem; text-align: center; flex-shrink: 0;
}
.fr-sidebar .check:hover { background: rgba(255,255,255,.04); color: #fff; }
.fr-sidebar .check .box {
  width: 16px; height: 16px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .15s ease;
}
.fr-sidebar .check.active {
  background: rgba(255,203,31,.07);
  border-color: rgba(255,216,74,.3);
  color: #fff;
}
.fr-sidebar .check.active .box { background: var(--fr-yellow-br); border-color: var(--fr-yellow-br); }
.fr-sidebar .check.active .box::after {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 9px; color: #11130a;
}
.fr-sidebar .check.active i { color: var(--fr-yellow-br); }

/* ═══ HERO — zentriert + cool animiert (überschreibt v2) ═══════════════════ */
.fr-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 62rem;
  margin: 0 auto;
  padding: 2.75rem 1rem 1.25rem;
  overflow: hidden;
}
@media (min-width: 768px) { .fr-hero { padding: 4rem 2rem 1.75rem; } }
/* Pulsierender Radial-Glow hinter dem Hero */
.fr-hero::before {
  content: '';
  position: absolute;
  left: 50%; top: 34%;
  width: 680px; height: 440px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,203,31,.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: fr-hero-glow 5.5s ease-in-out infinite;
}
@keyframes fr-hero-glow {
  0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.18); }
}
.fr-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Staggered Entrance */
@keyframes fr-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fr-hero-logo,
.fr-hero-badge,
.fr-hero-title,
.fr-hero-sub,
.fr-hero-actions,
.fr-hero-marks { animation: fr-rise .6s cubic-bezier(.22,1,.36,1) both; }
.fr-hero-badge  { animation-delay: .08s; }
.fr-hero-title  { animation-delay: .16s; }
.fr-hero-sub    { animation-delay: .26s; }
.fr-hero-actions{ animation-delay: .34s; }
.fr-hero-marks  { animation-delay: .42s; }

/* Logo: erst reinfahren, dann dauerhaft schweben + Glow-Puls */
.fr-hero-logo {
  width: 66px; height: 66px;
  margin: 0 auto 1rem;
  animation: fr-rise .6s cubic-bezier(.22,1,.36,1) both,
             fr-hero-float 4s ease-in-out .7s infinite,
             fr-hero-logoglow 3s ease-in-out .7s infinite;
}
@keyframes fr-hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(-4deg); }
}
@keyframes fr-hero-logoglow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255,203,31,.45)); }
  50%      { filter: drop-shadow(0 0 26px rgba(255,216,74,.85)); }
}

.fr-hero-title { letter-spacing: -.035em; }
.fr-hero-actions { margin-left: 0; }

@media (prefers-reduced-motion: reduce) {
  .fr-hero::before,
  .fr-hero-logo, .fr-hero-badge, .fr-hero-title,
  .fr-hero-sub, .fr-hero-actions, .fr-hero-marks { animation: none; }
}

/* ── FRANKLYN v4 — max. 2 Karten nebeneinander (sonst zu eng) ───────────── */
.fr-grid {
  grid-template-columns: 1fr !important;
}
@media (min-width: 720px) {
  .fr-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── FRANKLYN v5 — großes animiertes Hintergrund-Logo + Wordmark ─────────── */
.fr-bg-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 118vmin;
  height: 118vmin;
  margin: -59vmin 0 0 -59vmin;
  background: url('/franklyn-logo.png') center / contain no-repeat;
  opacity: .055;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  animation: fr-bglogo-drift 46s ease-in-out infinite;
}
@keyframes fr-bglogo-drift {
  0%   { transform: translate(0, 0)            scale(1)    rotate(-6deg); }
  25%  { transform: translate(3.5vmin, -2.5vmin) scale(1.07) rotate(-1deg); }
  50%  { transform: translate(0, 3vmin)         scale(1.12) rotate(5deg); }
  75%  { transform: translate(-3.5vmin, -1.5vmin) scale(1.06) rotate(1deg); }
  100% { transform: translate(0, 0)            scale(1)    rotate(-6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .fr-bg-logo { animation: none; }
}

/* Wordmark "Franklynbonus" — gemischte Schreibweise, kein Uppercase mehr */
.fr-wordmark {
  text-transform: none;
  letter-spacing: -.01em;
  font-weight: 800;
}
.fr-brand:hover .fr-wordmark { color: var(--fr-yellow-br); }

/* ── FRANKLYN v6 — Hintergrund-Logo: rechts, halb angeschnitten, sehr groß ─ */
.fr-bg-logo {
  position: fixed;
  top: 50%;
  right: 0;
  left: auto;
  width: 115vmin;
  height: 115vmin;
  margin: 0;
  background: url('/franklyn-logo.png') center / contain no-repeat;
  opacity: .07;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  transform: translate(46%, -50%) rotate(-6deg);
  animation: fr-bglogo-drift 38s ease-in-out infinite;
}
@keyframes fr-bglogo-drift {
  0%   { transform: translate(46%, -50%) scale(1)    rotate(-6deg); }
  50%  { transform: translate(43%, -53%) scale(1.08) rotate(2deg); }
  100% { transform: translate(46%, -50%) scale(1)    rotate(-6deg); }
}
@media (max-width: 640px) {
  .fr-bg-logo { width: 150vmin; height: 150vmin; opacity: .05; }
}

/* ── FRANKLYN v7 — Hintergrund-Logo: noch größer + stärker gedreht ───────── */
.fr-bg-logo {
  width: 165vmin;
  height: 165vmin;
  transform: translate(44%, -50%) rotate(-20deg);
}
@keyframes fr-bglogo-drift {
  0%   { transform: translate(44%, -50%) scale(1)    rotate(-20deg); }
  50%  { transform: translate(41%, -53%) scale(1.07) rotate(-12deg); }
  100% { transform: translate(44%, -50%) scale(1)    rotate(-20deg); }
}
@media (max-width: 640px) {
  .fr-bg-logo { width: 200vmin; height: 200vmin; opacity: .05; }
}

/* ── FRANKLYN v8 — Card-Head: Logo links, Infos rechts gestapelt ────────── */
.fr-card-head {
  flex-direction: row !important;
  align-items: center;
  text-align: left;
  gap: .85rem;
}
.fr-card-logo { margin-bottom: 0 !important; flex-shrink: 0; }
.fr-card-headinfo {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
}
.fr-card-headinfo .fr-card-name { max-width: 100%; }
.fr-card-headinfo .fr-card-stars { margin-top: 0; }
.fr-card-headinfo .fr-card-chips {
  justify-content: flex-start;
  margin-top: .15rem;
}

/* ── FRANKLYN v9 — graue Flächen leicht transparent (Filter + Cards) ─────── */
.fr-card,
.fr-skel-card {
  background: linear-gradient(180deg, rgba(28,30,36,.84) 0%, rgba(19,20,24,.84) 100%) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.fr-sidebar {
  background: linear-gradient(180deg, rgba(31,33,39,.80), rgba(20,22,26,.80)) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── FRANKLYN v10 — Panel um Result-Bar + Card-Grid ─────────────────────── */
.fr-content {
  background: linear-gradient(180deg, rgba(31,33,39,.55), rgba(18,20,24,.55));
  border: 1px solid var(--fr-line);
  border-radius: 18px;
  padding: 1rem 1.1rem 1.25rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fr-content .fr-result-bar {
  padding-bottom: .9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* ── FRANKLYN — Mobile-Menü Fix: explizites Verstecken (Tailwind-unabhängig) ─
   Tailwinds translate-x-full braucht --tw-* Variablen; fehlen die, ist das
   Menü dauerhaft sichtbar. ID-Selektor (1,0,0) schlägt die Utility-Klassen. */
#mobile-sidebar {
  transform: translateX(100%);
  transition: transform .3s ease;
}
#mobile-sidebar.open {
  transform: translateX(0);
}
#mobile-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════════════
   FRANKLYN HEADER v2 — "Asymmetric Glass Bento"
   Komplett eigenständiger Namespace (.fr-h2-*) — kollidiert mit nichts.
   ═══════════════════════════════════════════════════════════════════ */

/* Stelle sicher, dass der bisherige Mint-Glow vom Template-Header
   nicht doppelt rendert, falls eine andere Page noch .header-mint-glow
   selbst setzt — der neue Header benutzt das nicht mehr. */

.fr-h2 {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;                 /* z-index sauber halten */
  padding: 0;
  background: transparent;            /* echte Optik macht fr-h2-bg */
}

/* Hintergrund-Layer: leichter Spotlight + Glas-Blur statt Mint-Linie */
.fr-h2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background:
    radial-gradient(60% 140% at 50% -40%, rgba(255,216,74,.10) 0%, rgba(255,216,74,0) 60%),
    linear-gradient(180deg, rgba(10,11,13,.86) 0%, rgba(10,11,13,.72) 70%, rgba(10,11,13,.45) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 1px 0 0 rgba(255,216,74,.10) inset,
    0 24px 60px -28px rgba(0,0,0,.6);
}

.fr-h2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 58px;
}
@media (min-width: 640px) { .fr-h2-inner { padding: 0 24px; } }
@media (min-width: 1024px){ .fr-h2-inner { padding: 0 32px; } }

/* ─── BRAND (links) ───────────────────────────────────────────────── */
.fr-h2-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.fr-h2-mono {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255,216,74,.22) 0%, rgba(255,216,74,.04) 60%, rgba(255,216,74,.18) 100%);
  border: 1px solid rgba(255,216,74,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 6px 20px -8px rgba(255,216,74,.45),
    0 0 0 1px rgba(0,0,0,.4);
  transform: rotate(-6deg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  overflow: hidden;
}
.fr-h2-mono::after {
  /* feiner inner Glow-Ring */
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: radial-gradient(70% 70% at 30% 20%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}
.fr-h2-mono-img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  transform: rotate(6deg);              /* Logo wieder geradestellen */
  filter: drop-shadow(0 0 6px rgba(255,216,74,.55));
}
.fr-h2-brand:hover .fr-h2-mono {
  transform: rotate(0deg) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 10px 26px -8px rgba(255,216,74,.6),
    0 0 0 1px rgba(0,0,0,.4);
}
.fr-h2-mono--sm { width: 34px; height: 34px; border-radius: 10px; transform: rotate(-6deg); }

.fr-h2-words {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.fr-h2-word-main {
  font-family: var(--font-display, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .22em;
  color: #f4f7f1;
  text-shadow: 0 0 18px rgba(255,216,74,.18);
}
.fr-h2-brand:hover .fr-h2-word-main { color: var(--fr-yellow-soft); }

.fr-h2-word-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .60rem;
  letter-spacing: .35em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.fr-h2-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--fr-yellow-br);
  box-shadow: 0 0 8px 1px rgba(255,216,74,.7);
  animation: fr-h2-pulse 2.4s ease-in-out infinite;
}
@keyframes fr-h2-pulse {
  0%, 100% { opacity: .55; transform: scale(.85); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

/* ─── PILL NAV (mitte) ────────────────────────────────────────────── */
.fr-h2-pill {
  display: none;
  position: relative;
  justify-self: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(20,22,27,.65);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 8px 24px -10px rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .fr-h2-pill { display: inline-flex; align-items: center; gap: 2px; } }

.fr-h2-pill-indicator {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 0;
  border-radius: 999px;
  background:
    radial-gradient(120% 200% at 50% 0%, rgba(255,216,74,.28) 0%, rgba(255,216,74,.05) 70%),
    linear-gradient(180deg, rgba(255,216,74,.14), rgba(255,216,74,.06));
  border: 1px solid rgba(255,216,74,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 0 14px -2px rgba(255,216,74,.45);
  opacity: 0;
  transform: translateX(0);
  transition:
    transform .35s cubic-bezier(.2,.85,.2,1),
    width     .35s cubic-bezier(.2,.85,.2,1),
    opacity   .25s ease;
  pointer-events: none;
  z-index: 0;
}

.fr-h2-pill-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(230, 237, 243, .68);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .2s ease;
}
.fr-h2-pill-link i {
  font-size: .72rem;
  color: rgba(255,216,74,.55);
  transition: color .2s ease, transform .25s ease;
}
.fr-h2-pill-link:hover {
  color: #fff;
}
.fr-h2-pill-link:hover i {
  color: var(--fr-yellow-br);
  transform: translateY(-1px);
}
.fr-h2-pill-link.is-active {
  color: var(--fr-yellow-soft);
}
.fr-h2-pill-link.is-active i {
  color: var(--fr-yellow-br);
}

/* ─── ACTIONS (rechts) ────────────────────────────────────────────── */
.fr-h2-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.fr-h2-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: rgba(230, 237, 243, .8);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .15s ease;
}
.fr-h2-icon-btn:hover {
  color: #fff;
  border-color: rgba(255,216,74,.45);
  background: rgba(255,216,74,.06);
}
.fr-h2-icon-btn:active { transform: translateY(1px); }
.fr-h2-icon-btn i { font-size: .9rem; }

.fr-h2-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  background: var(--fr-yellow-br);
  color: #11130a;
  box-shadow: 0 0 0 2px #0a0b0d, 0 0 10px rgba(255,216,74,.5);
}

/* Twitch-Login (rechts, ausgeloggt) */
.fr-h2-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  height: 36px;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(180deg, #9146ff 0%, #7d2bff 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 6px 18px -8px rgba(145,70,255,.7);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.fr-h2-login:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 10px 24px -8px rgba(145,70,255,.8);
}
.fr-h2-login i { font-size: .85rem; }

/* User-Pill */
.fr-h2-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 11px 3px 3px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(230,237,243,.9);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.fr-h2-user:hover { border-color: rgba(255,216,74,.4); background: rgba(255,216,74,.05); }
.fr-h2-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 0 0 2px rgba(0,0,0,.4);
}
.fr-h2-user-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,216,74,.18);
  color: var(--fr-yellow-soft);
  font-size: .72rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,216,74,.4);
}
.fr-h2-user-name {
  font-size: .82rem;
  font-weight: 600;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fr-h2-user-chev {
  font-size: .60rem;
  color: rgba(255,255,255,.45);
}

/* Popover (notif / user) */
.fr-h2-pop {
  background: linear-gradient(180deg, #14171c 0%, #0e1115 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow:
    0 20px 50px -16px rgba(0,0,0,.8),
    0 0 0 1px rgba(255,216,74,.06),
    inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* ─── MOBILE SIDEBAR (neu skinniert) ─────────────────────────────── */
.fr-h2-sidebar {
  background: linear-gradient(180deg, #14171c 0%, #0c0e12 60%, #08090c 100%);
  border-left: 1px solid rgba(255,216,74,.12);
  box-shadow: -18px 0 50px -20px rgba(0,0,0,.8);
}
.fr-h2-sidebar.open      { transform: translateX(0); }
.fr-h2-mobile-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  width: 100%;
  border-radius: 10px;
  font-size: .9rem;
  color: rgba(230,237,243,.82);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.fr-h2-mobile-link i {
  width: 20px;
  text-align: center;
  color: rgba(255,216,74,.55);
  font-size: .82rem;
}
.fr-h2-mobile-link:hover { background: rgba(255,255,255,.04); color: #fff; }
.fr-h2-mobile-link.is-active {
  background: linear-gradient(90deg, rgba(255,216,74,.10) 0%, rgba(255,216,74,0) 100%);
  color: var(--fr-yellow-soft);
}
.fr-h2-mobile-link.is-active i { color: var(--fr-yellow-br); }
.fr-h2-mobile-dot {
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  border-radius: 3px;
  background: var(--fr-yellow-br);
  box-shadow: 0 0 8px 1px rgba(255,216,74,.7);
}

.fr-h2-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  color: #11130a;
  background: linear-gradient(180deg, var(--fr-yellow-soft) 0%, var(--fr-yellow) 100%);
  border: 1px solid rgba(0,0,0,.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 8px 22px -10px rgba(255,216,74,.7);
  text-decoration: none;
  transition: transform .15s ease, filter .2s ease;
}
.fr-h2-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.fr-h2-cta i { font-size: .8rem; }

/* Sidebar open class kommt vom alten JS — beibehalten */
#mobile-sidebar.open { transform: translateX(0); }

/* ═══════════════════════════════════════════════════════════════════
   CASINOS v2 — Editorial Card + Premium Overlay
   Eigenständiger Override-Block. Behält bestehende JS-Klassen bei.
   ═══════════════════════════════════════════════════════════════════ */

/* ── CARD: asymmetrischer Header, dramatischer Bonus-Block ─────── */
.fr-card {
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(255,216,74,.06) 0%, transparent 55%),
    linear-gradient(180deg, #1d2027 0%, #131419 100%) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 20px !important;
  padding: 1.25rem 1.15rem 1.05rem !important;
  overflow: hidden !important;             /* clip ribbon */
  transition: border-color .25s ease, box-shadow .3s ease, transform .25s cubic-bezier(.2,.8,.2,1) !important;
}

/* Verfeinerter Mint-Glow am Rand (statt gradient-border) */
.fr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    radial-gradient(80% 40% at 50% 0%, rgba(255,216,74,.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}
.fr-card > * { position: relative; z-index: 1; }
.fr-card:hover {
  border-color: rgba(255,216,74,.4) !important;
  box-shadow:
    0 0 0 1px rgba(255,216,74,.18) inset,
    0 22px 60px -20px rgba(0,0,0,.8),
    0 0 50px -12px rgba(255,203,31,.35) !important;
  transform: translateY(-4px) !important;
}
.fr-card:hover::before { opacity: 1; }

/* Rang #1: dezente FEATURED-Eckmarke statt voller Innenschimmer */
.fr-card.rank-1,
.fr-card.fr-card--featured {
  border-color: rgba(255,216,74,.32) !important;
}
.fr-card.rank-1::after,
.fr-card.fr-card--featured::after {
  content: 'TOP PICK';
  position: absolute;
  top: 14px; right: -38px;
  width: 140px;
  padding: 4px 0;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: .22em;
  color: #11130a;
  background: linear-gradient(90deg, #ffe066, #ffcb1f);
  transform: rotate(38deg);
  box-shadow: 0 6px 14px -4px rgba(255,203,31,.6);
  z-index: 4;
  pointer-events: none;
}

/* Rank-Flag (#2/#3/...) bleibt — Position links oben, kleiner */
.fr-card .rank-flag {
  top: -1px !important;
  left: 14px !important;
  height: 22px !important;
  min-width: 32px !important;
  font-size: .68rem !important;
  border-radius: 0 0 6px 6px !important;
}

/* Bei rank-1 verstecken wir das alte Flag — das "TOP PICK"-Ribbon übernimmt */
.fr-card.rank-1 .rank-flag { display: none; }

/* ── HEADER asymmetrisch: Logo links, Name+Stars rechts ──────────── */
.fr-card-head {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  gap: .85rem !important;
  text-align: left !important;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.fr-card-logo { margin-bottom: 0 !important; }
.fr-card-logo .logo-block {
  width: 72px !important; height: 72px !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, #16181d 0%, #0c0d10 100%) !important;
  border: 1px solid rgba(255,216,74,.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 4px 12px -4px rgba(0,0,0,.6);
}
.fr-card-logo .logo-block .logo-icon { font-size: 2rem !important; }
.fr-card-headinfo { min-width: 0; }
.fr-card-name {
  font-size: 1.02rem !important;
  letter-spacing: -.01em;
  text-align: left !important;
}
.fr-card-stars { margin-top: .15rem !important; text-align: left; }
.fr-card-chips {
  justify-content: flex-start !important;
  margin-top: .35rem !important;
  gap: .3rem !important;
}

/* ── BONUS HERO: dramatischer mit Shimmer-Effekt ──────────────── */
.fr-card-bonus {
  position: relative;
  margin: .9rem 0 .7rem !important;
  padding: 1rem .7rem !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255,216,74,.14) 0%, rgba(255,203,31,.04) 100%) !important;
  border: 1px solid rgba(255,216,74,.22) !important;
  overflow: hidden;
  isolation: isolate;
}
.fr-card-bonus::before {
  /* shimmer band */
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.15) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}
.fr-card:hover .fr-card-bonus::before {
  animation: fr-card-shimmer 1.4s ease;
}
@keyframes fr-card-shimmer {
  to { left: 130%; }
}
.fr-card-bonus > * { position: relative; z-index: 1; }
.fr-card-bonus-label {
  font-size: 9.5px !important;
  letter-spacing: .22em !important;
}
.fr-card-bonus-value {
  font-size: 1.55rem !important;
  letter-spacing: -.015em;
}
.fr-card-bonus-fs {
  font-size: .78rem !important;
  margin-top: .25rem !important;
}

/* ── STATS: kompakte Inline-Row statt 2x2 Boxen ───────────────── */
.fr-card-stats {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .3rem !important;
  margin: .35rem 0 .8rem !important;
  padding: .55rem .55rem !important;
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
}
.fr-stat {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  position: relative;
}
.fr-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%;
  right: -.15rem;
  width: 1px;
  background: rgba(255,255,255,.06);
}
.fr-stat-label {
  font-size: 8px !important;
  letter-spacing: .14em !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fr-stat-val {
  font-size: .88rem !important;
  margin-top: .1rem !important;
}

/* ── CODE BOX: cleaner Ribbon-Style ───────────────────────────── */
.fr-card-code {
  margin: 0 0 .7rem !important;
  padding: .55rem .65rem !important;
  border: 1px solid rgba(255,216,74,.3) !important;
  background:
    linear-gradient(90deg, rgba(255,216,74,.12) 0%, rgba(255,216,74,.04) 100%) !important;
  border-radius: 10px !important;
  position: relative;
  justify-content: space-between !important;
}
.fr-card-code::before {
  /* linker Mint-Strich als Akzent */
  content: '';
  position: absolute;
  left: 0; top: 8%; bottom: 8%;
  width: 3px;
  background: var(--fr-yellow-br);
  border-radius: 3px;
  box-shadow: 0 0 8px 1px rgba(255,216,74,.5);
}
.fr-card-code-inner { align-items: flex-start !important; padding-left: .45rem; }
.fr-card-code-label {
  font-size: 8px !important;
  letter-spacing: .22em !important;
}
.fr-card-code-value { font-size: .92rem !important; }
.fr-card-code .code-copy {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: background .2s ease, transform .15s ease;
}
.fr-card-code .code-copy:hover {
  background: rgba(255,216,74,.12);
  border-color: rgba(255,216,74,.35);
  transform: translateY(-1px);
}

/* ── CTA: prominent + Arrow-Slide on hover ────────────────────── */
.fr-card-play {
  position: relative;
  padding: .8rem 1.1rem !important;
  font-size: .9rem !important;
  font-weight: 800 !important;
  letter-spacing: .03em;
  background: linear-gradient(180deg, var(--fr-yellow-soft) 0%, var(--fr-yellow) 100%) !important;
  border-radius: 10px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 8px 20px -8px rgba(255,216,74,.6) !important;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .25s ease, filter .15s ease !important;
}
.fr-card-play:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 12px 28px -10px rgba(255,216,74,.85) !important;
}
.fr-card-play i {
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.fr-card-play:hover i {
  transform: translateX(4px);
}

/* ── Details als reduzierter Link statt voller Button ─────────── */
.fr-card-details-btn {
  margin-top: .55rem !important;
  padding: .35rem !important;
  font-size: .74rem !important;
  letter-spacing: .04em;
  color: rgba(255,255,255,.4) !important;
  border-radius: 6px !important;
  transition: color .2s ease;
}
.fr-card-details-btn:hover {
  color: var(--fr-yellow-br) !important;
  background: transparent !important;
}
.fr-card-details-btn i { color: rgba(255,255,255,.4); transition: color .2s ease, transform .2s ease; }
.fr-card-details-btn:hover i { color: var(--fr-yellow-br); transform: translateY(2px); }

/* ═══ MODAL OVERLAY v2: breiter, mit Hero-Banner + Sticky CTA ════ */
.fr-modal-backdrop {
  background: rgba(4,5,7,.84) !important;
  backdrop-filter: blur(12px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
}
.fr-modal-card {
  width: min(42rem, calc(100vw - 2rem)) !important;
  max-height: calc(100vh - 2rem) !important;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(255,216,74,.06) 0%, transparent 70%),
    linear-gradient(180deg, #1c1f25 0%, #0f1115 100%) !important;
  border: 1px solid rgba(255,216,74,.22) !important;
  border-radius: 18px !important;
  box-shadow:
    0 0 0 1px rgba(255,216,74,.06) inset,
    0 30px 80px -20px rgba(0,0,0,.85),
    0 0 70px -16px rgba(255,203,31,.35) !important;
  padding: 0 !important;                /* eigene Innenabstände unten */
  overflow: hidden !important;
}
.fr-modal-x {
  position: absolute !important;
  float: none !important;
  top: 14px !important; right: 14px !important;
  width: 36px !important; height: 36px !important;
  border-radius: 10px !important;
  background: rgba(0,0,0,.45) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(8px);
}

/* Hero-Banner */
.fr-modal-head {
  position: relative;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 1.1rem !important;
  padding: 1.6rem 1.6rem 1.3rem !important;
  margin: 0 !important;
  background:
    radial-gradient(70% 100% at 0% 50%, rgba(255,216,74,.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,216,74,.04) 0%, transparent 100%) !important;
  border-bottom: 1px solid rgba(255,216,74,.14) !important;
}
.fr-modal-head::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--fr-yellow-br), transparent);
  opacity: .55;
}
.fr-modal-logo .logo-block {
  width: 84px !important; height: 84px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,216,74,.3) !important;
  background: linear-gradient(135deg, #16181d 0%, #0a0b0e 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 22px -8px rgba(0,0,0,.7);
}
.fr-modal-logo .logo-block .logo-icon { font-size: 2rem !important; }
.fr-modal-name {
  font-size: 1.35rem !important;
  letter-spacing: -.015em;
}
.fr-modal-bonus {
  padding: .65rem .9rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,216,74,.14), rgba(255,203,31,.04));
  border: 1px solid rgba(255,216,74,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.fr-modal-bonus .fr-card-bonus-label { font-size: 9px !important; letter-spacing: .22em !important; }
.fr-modal-bonus .fr-card-bonus-value { font-size: 1.25rem !important; }

/* Body */
.fr-modal-body {
  padding: 1.3rem 1.6rem 1.6rem !important;
}

/* Sticky-CTA am Modal-Boden */
.fr-modal-cta {
  position: sticky;
  bottom: 0;
  margin-top: 1.4rem !important;
  padding: .85rem 1rem !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  letter-spacing: .03em;
  background: linear-gradient(180deg, var(--fr-yellow-soft) 0%, var(--fr-yellow) 100%) !important;
  border-radius: 11px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 10px 26px -10px rgba(255,216,74,.7) !important;
}
.fr-modal-cta i { transition: transform .25s ease; }
.fr-modal-cta:hover i { transform: translateX(5px); }

/* Modal-Open Animation: smoother */
@keyframes fr-modal-pop {
  from { opacity: 0; transform: translate(-50%, -47%) scale(.97); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Detail-Stats im Modal: bessere Optik */
.fr-detail-stat {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem .75rem;
  border-radius: 11px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s ease, background .2s ease;
}
.fr-detail-stat:hover {
  border-color: rgba(255,216,74,.25);
  background: rgba(255,216,74,.04);
}
.fr-detail-ico {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,216,74,.12);
  border: 1px solid rgba(255,216,74,.25);
  color: var(--fr-yellow-br);
  font-size: .85rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 520px) {
  .fr-modal-head {
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto;
    row-gap: .8rem !important;
    padding: 1.2rem 1.2rem 1rem !important;
  }
  .fr-modal-bonus {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center !important;
  }
  .fr-modal-body { padding: 1.1rem 1.2rem 1.4rem !important; }
  .fr-card-stats { gap: .2rem !important; padding: .45rem !important; }
  .fr-stat-label { font-size: 7.5px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   DETAIL-MODAL BODY v2 — reichere Sektionen
   ═══════════════════════════════════════════════════════════════════ */

/* ── Sektion-Wrapper (einheitlicher Abstand) ───────────────────── */
.fr-detail-section { margin-bottom: 1.1rem; }
.fr-detail-section:last-child { margin-bottom: 0; }

/* Heading mit optionalem Count-Badge */
.fr-detail-heading {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .65rem;
}
.fr-detail-heading.accent { color: var(--fr-yellow-soft); }
.fr-detail-heading.is-negative { color: #ff7e7e; }
.fr-detail-heading i { font-size: .82rem; color: var(--fr-yellow-br); }
.fr-detail-heading.is-negative i { color: #ff7e7e; }
.fr-detail-heading-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255,216,74,.14);
  border: 1px solid rgba(255,216,74,.3);
  color: var(--fr-yellow-soft);
  font-size: 10px; font-weight: 800;
  margin-left: .25rem;
}

/* ── No-Deposit Banner: golden Eye-Catcher oben ────────────────── */
.fr-detail-nodep {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1rem;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(255,193,7,.16) 0%, rgba(255,216,74,.08) 60%, rgba(255,216,74,.02) 100%);
  border: 1px solid rgba(255,193,7,.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 24px -10px rgba(255,193,7,.35);
  overflow: hidden;
}
.fr-detail-nodep::before {
  /* glow stripe */
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(255,200,40,.15), transparent);
  animation: fr-nodep-sweep 3.5s linear infinite;
  pointer-events: none;
}
@keyframes fr-nodep-sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.fr-detail-nodep-ico {
  position: relative;
  z-index: 1;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #ffd84a 0%, #ffcb1f 100%);
  color: #2a1908;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px -4px rgba(255,193,7,.55), inset 0 1px 0 rgba(255,255,255,.5);
}
.fr-detail-nodep-body { position: relative; z-index: 1; min-width: 0; }
.fr-detail-nodep-label {
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,193,7,.85);
  margin-bottom: .12rem;
}
.fr-detail-nodep-value {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.fr-detail-nodep-value strong { color: #ffd84a; font-weight: 800; }

/* ── Quick-Facts (4-er Grid, Mobile 2-er) ──────────────────────── */
.fr-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 600px) {
  .fr-detail-facts { grid-template-columns: repeat(4, 1fr); }
}
.fr-detail-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
}
.fr-detail-val {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  margin-top: .1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Bonus-Bedingungen: 4 Tiles ────────────────────────────────── */
.fr-detail-terms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
@media (min-width: 600px) {
  .fr-detail-terms { grid-template-columns: repeat(4, 1fr); }
}
.fr-detail-term {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .65rem .75rem;
  border-radius: 11px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
}
.fr-detail-term.is-sticky {
  border-color: rgba(56,189,248,.32);
  background: rgba(56,189,248,.05);
}
.fr-detail-term.is-sticky .fr-detail-term-val { color: #7dd3fc; }
.fr-detail-term.is-nonsticky {
  border-color: rgba(255,216,74,.28);
  background: rgba(255,216,74,.05);
}
.fr-detail-term.is-nonsticky .fr-detail-term-val { color: var(--fr-yellow-soft); }
.fr-detail-term.highlight {
  border-color: rgba(255,216,74,.35);
  background: linear-gradient(180deg, rgba(255,216,74,.10), rgba(255,216,74,.02));
}
.fr-detail-term-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.5);
}
.fr-detail-term-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .98rem;
  color: #fff;
}
.fr-detail-term-val.accent { color: var(--fr-yellow-br); }

/* ── Welcome-Paket: Schritt-Karten mit Pfeilen ────────────────── */
.fr-detail-deposits {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: .35rem;
}
.fr-detail-deposit {
  flex: 1 1 0;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .65rem .5rem;
  border-radius: 11px;
  background:
    radial-gradient(120% 60% at 50% 100%, rgba(255,216,74,.10), transparent 65%),
    rgba(255,255,255,.025);
  border: 1px solid rgba(255,216,74,.18);
  text-align: center;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.fr-detail-deposit:hover {
  transform: translateY(-2px);
  border-color: rgba(255,216,74,.45);
}
.fr-detail-deposit-step {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  color: var(--fr-yellow-br);
  letter-spacing: .02em;
}
.fr-detail-deposit-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.45);
  margin-top: .15rem;
}
.fr-detail-deposit-pct {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.05;
  margin-top: .25rem;
  letter-spacing: -.01em;
  text-shadow: 0 0 14px rgba(255,216,74,.3);
}
.fr-detail-deposit-pct small {
  font-size: .65em;
  font-weight: 700;
  color: var(--fr-yellow-br);
  margin-left: 1px;
}
.fr-detail-deposit-arrow {
  align-self: center;
  color: rgba(255,216,74,.45);
  font-size: .7rem;
  padding: 0 .1rem;
  flex: 0 0 auto;
}
@media (max-width: 520px) {
  .fr-detail-deposit-arrow { display: none; }
  .fr-detail-deposits { flex-wrap: wrap; }
  .fr-detail-deposit { flex: 1 1 calc(50% - .35rem); }
}
.fr-detail-fs-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .65rem;
  padding: .45rem .75rem;
  border-radius: 8px;
  background: rgba(255,216,74,.08);
  border: 1px dashed rgba(255,216,74,.35);
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}
.fr-detail-fs-note i { color: var(--fr-yellow-br); }
.fr-detail-fs-note strong { color: var(--fr-yellow-soft); }

/* ── Vorteile / Nachteile: Side-by-side ───────────────────────── */
.fr-detail-proscons {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 600px) {
  .fr-detail-proscons { grid-template-columns: 1fr 1fr; }
}
.fr-detail-pcbox {
  padding: .9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
.fr-detail-pcbox.positive {
  border-color: rgba(255,216,74,.18);
  background: linear-gradient(180deg, rgba(255,216,74,.05), transparent 70%);
}
.fr-detail-pcbox.negative {
  border-color: rgba(255,126,126,.18);
  background: linear-gradient(180deg, rgba(255,126,126,.05), transparent 70%);
}
.fr-pros, .fr-cons {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fr-pros li, .fr-cons li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .83rem;
  line-height: 1.45;
  color: rgba(243,244,238,.82);
}
.fr-pros li i {
  color: var(--fr-yellow-br);
  font-size: .68rem;
  margin-top: .35rem;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,216,74,.12);
  border: 1px solid rgba(255,216,74,.3);
}
.fr-cons li i {
  color: #ff9a9a;
  font-size: .68rem;
  margin-top: .35rem;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,126,126,.12);
  border: 1px solid rgba(255,126,126,.3);
}

/* ── Beschreibung ──────────────────────────────────────────────── */
.fr-detail-text {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(243,244,238,.72);
  margin: 0;
  padding: .85rem 1rem;
  border-left: 3px solid rgba(255,216,74,.35);
  background: rgba(255,255,255,.02);
  border-radius: 0 10px 10px 0;
}

/* ── Zahlungs-Grid ─────────────────────────────────────────────── */
.fr-detail-payments {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .8rem;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
}
.fr-detail-payments .pay-icon {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  transition: border-color .2s ease, background .2s ease, transform .15s ease !important;
}
.fr-detail-payments .pay-icon:hover {
  border-color: rgba(255,216,74,.35) !important;
  background: rgba(255,216,74,.06) !important;
  transform: translateY(-1px);
}

/* ── Tags ──────────────────────────────────────────────────────── */
.fr-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.fr-detail-tag {
  display: inline-flex;
  align-items: center;
  padding: .25rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(243,244,238,.78);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  letter-spacing: .01em;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER v2 — Editorial Minimal (matched zum Header v2)
   ═══════════════════════════════════════════════════════════════════ */
.fr-ftr {
  position: relative;
  margin-top: 4rem;
  background:
    linear-gradient(180deg, #0a0c10 0%, #07090c 100%);
  border-top: 1px solid rgba(255,255,255,.04);
  isolation: isolate;
}
.fr-ftr::before {
  /* sanfter Spot-Glow oben */
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  width: 800px; height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(60% 50% at 50% 50%, rgba(255,216,74,.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.fr-ftr-hairline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,216,74,.05) 10%,
    rgba(255,216,74,.5) 50%,
    rgba(255,216,74,.05) 90%,
    transparent 100%);
}
.fr-ftr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.25rem;
}
@media (min-width: 768px)  { .fr-ftr-inner { padding: 3.5rem 2rem 1.5rem; } }
@media (min-width: 1024px) { .fr-ftr-inner { padding: 4rem 2.5rem 1.75rem; } }

/* Hauptgrid */
.fr-ftr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .fr-ftr-grid { grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
}

/* Brand-Block */
.fr-ftr-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.1rem;
}
.fr-ftr-mono {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(255,216,74,.22), rgba(255,216,74,.06));
  border: 1px solid rgba(255,216,74,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 6px 18px -8px rgba(255,216,74,.45);
  transform: rotate(-6deg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.fr-ftr-brand-link:hover .fr-ftr-mono { transform: rotate(0deg) scale(1.04); }
.fr-ftr-mono-img {
  width: 72%; height: 72%;
  object-fit: contain;
  transform: rotate(6deg);
  filter: drop-shadow(0 0 6px rgba(255,216,74,.5));
}
.fr-ftr-words {
  display: inline-flex; flex-direction: column;
  line-height: 1; gap: 4px;
}
.fr-ftr-word-main {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .22em;
  color: #f4f7f1;
}
.fr-ftr-word-sub {
  display: inline-flex; align-items: center;
  gap: 6px;
  font-size: 9.5px;
  letter-spacing: .35em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.fr-ftr-dot {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--fr-yellow-br);
  box-shadow: 0 0 8px 1px rgba(255,216,74,.7);
  animation: fr-h2-pulse 2.4s ease-in-out infinite;
}
.fr-ftr-tagline {
  font-size: .85rem;
  line-height: 1.55;
  color: rgba(243,244,238,.55);
  max-width: 30rem;
  margin: 0;
}

/* Link-Spalten */
.fr-ftr-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.fr-ftr-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin: 0 0 1rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.fr-ftr-col-title::before {
  content: '';
  display: inline-block;
  width: 12px; height: 2px;
  border-radius: 2px;
  background: var(--fr-yellow-br);
  box-shadow: 0 0 6px 1px rgba(255,216,74,.5);
}
.fr-ftr-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: .6rem;
}
.fr-ftr-list a {
  font-size: .85rem;
  color: rgba(243,244,238,.62);
  text-decoration: none;
  transition: color .2s ease, padding-left .25s ease;
  position: relative;
}
.fr-ftr-list a:hover {
  color: var(--fr-yellow-soft);
  padding-left: .5rem;
}
.fr-ftr-list a::before {
  content: '';
  position: absolute;
  left: -2px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 2px;
  background: var(--fr-yellow-br);
  border-radius: 2px;
  transition: width .25s ease;
}
.fr-ftr-list a:hover::before { width: 6px; }

/* 18+ Banner */
.fr-ftr-warn {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.75rem;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255,170,0,.07) 0%, rgba(255,170,0,.01) 100%);
  border: 1px solid rgba(255,170,0,.18);
}
.fr-ftr-warn-ico {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: rgba(255,170,0,.14);
  border: 1px solid rgba(255,170,0,.3);
  color: #ffc34a;
  font-size: .9rem;
}
.fr-ftr-warn-head {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.fr-ftr-warn-head strong {
  color: #ffd84a;
  font-weight: 800;
  letter-spacing: .04em;
}
.fr-ftr-warn-sub {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  margin-top: .15rem;
  line-height: 1.5;
}
.fr-ftr-warn-sub a {
  color: #ffd84a;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,193,7,.4);
}
.fr-ftr-warn-sub a:hover { color: #fff; border-color: #fff; }

/* Copyright Bar */
.fr-ftr-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: 11.5px;
  color: rgba(255,255,255,.38);
  letter-spacing: .02em;
}
.fr-ftr-bolt {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.fr-ftr-bolt i { color: var(--fr-yellow-br); font-size: .7rem; }

/* ═══════════════════════════════════════════════════════════════════
   CASINO CARDS — Linear Cleanup
   Konstante Heights pro Sektion, mittiger Inhalt, keine variable
   Höhe durch optionale Elemente — alle Cards exakt gleich groß.
   ═══════════════════════════════════════════════════════════════════ */

/* Logo-Block: feste Größe (war ohnehin schon, jetzt mit fixer Höhe in Head) */
.fr-card-head {
  min-height: 88px;            /* fixe Header-Höhe (Logo 72 + leichte Atemluft) */
  padding-bottom: .85rem !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
}
.fr-card-name {
  font-size: 1.05rem !important;
  font-weight: 700;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  margin-bottom: .1rem;
}
.fr-card-chips {
  min-height: 22px;            /* damit Cards ohne Chips trotzdem gleich hoch sind */
  margin-top: .35rem !important;
}

/* Bonus-Block: fixe Höhe egal ob Freispiele drin */
.fr-card-bonus {
  min-height: 96px;
  justify-content: center !important;
  margin: .85rem 0 .65rem !important;
}
.fr-card-bonus-fs {
  min-height: 1.05rem;          /* reserviert Platz auch wenn leer */
}
/* Wenn keine Freispiele: leerer Spacer mit min-height */
.fr-card-bonus:not(:has(.fr-card-bonus-fs))::after {
  content: '';
  display: block;
  height: 1.05rem;
}

/* Stats-Row: feste Höhe */
.fr-card-stats {
  min-height: 56px;
  align-items: center;
  margin: .35rem 0 .7rem !important;
}

/* Code-Box: leerer Platzhalter wenn nicht vorhanden, damit CTA überall auf gleicher Höhe sitzt */
.fr-card-code { min-height: 50px; }
.fr-card-wrap:has(.fr-card:not(:has(.fr-card-code)))::before {
  /* fallback: kein has() Support → flex behält bottom-anchor */
}

/* CTA-Bereich am Boden: einheitlich */
.fr-card-play {
  min-height: 44px;
  margin-top: auto !important;  /* push CTA an den Boden — Cards bleiben aligned */
}
.fr-card-details-btn {
  min-height: 28px;
  margin-top: .5rem !important;
}

/* Grid-Gap: konsistenter */
.fr-grid {
  gap: 1.1rem !important;
}
@media (min-width: 1024px) {
  .fr-grid { gap: 1.25rem !important; }
}

/* Stars-Klassen verstecken (falls sie noch wo auftauchen) */
.fr-card-stars { display: none !important; }

/* Modal-Meta (License · Founded) statt Sterne */
.fr-modal-meta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .35rem;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.fr-modal-meta i {
  color: var(--fr-yellow-br);
  font-size: .72rem;
}

/* Anchor: Cards strecken sich auf gleiche Höhe innerhalb der Grid-Zelle */
.fr-card-wrap { align-self: stretch; }
.fr-card { height: 100%; }

/* ═══════════════════════════════════════════════════════════════════
   MODAL v3 — Kompakt + statische Card-Layouts
   ═══════════════════════════════════════════════════════════════════ */

/* Hero: kompakter, mit rechtsseitigem Platz für den X-Button */
.fr-modal-head {
  padding: 1.1rem 3.4rem 1rem 1.3rem !important;
  gap: .9rem !important;
}
/* Bonus terms-Grid: 3 Spalten (Auszahlungsquote entfernt) */
.fr-detail-terms { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 600px) {
  .fr-detail-terms { grid-template-columns: repeat(2, 1fr) !important; }
}
.fr-modal-logo .logo-block {
  width: 64px !important; height: 64px !important;
  border-radius: 13px !important;
}
.fr-modal-logo .logo-block .logo-icon { font-size: 1.7rem !important; }
.fr-modal-name { font-size: 1.18rem !important; }
.fr-modal-meta { margin-top: .25rem !important; font-size: .72rem !important; }
.fr-modal-bonus {
  padding: .5rem .75rem !important;
}
.fr-modal-bonus .fr-card-bonus-value { font-size: 1.1rem !important; }

/* X-Button kleiner */
.fr-modal-x {
  width: 32px !important; height: 32px !important;
  top: 11px !important; right: 11px !important;
}

/* Body: weniger Padding */
.fr-modal-body {
  padding: 1rem 1.3rem 1.3rem !important;
}

/* Sections: enger gestapelt */
.fr-detail-section { margin-bottom: .85rem; }
.fr-detail-section:last-child { margin-bottom: 0; }
.fr-detail-heading {
  font-size: .78rem;
  margin-bottom: .5rem;
}

/* No-Deposit Banner — schlanker */
.fr-detail-nodep {
  padding: .65rem .85rem;
  margin-bottom: .85rem;
  gap: .75rem;
  border-radius: 11px;
}
.fr-detail-nodep-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  font-size: 1rem;
}
.fr-detail-nodep-label {
  font-size: 9px;
  margin-bottom: .05rem;
}
.fr-detail-nodep-value {
  font-size: .9rem;
}

/* Quick-Facts: kompakter */
.fr-detail-facts {
  gap: .4rem !important;
  margin-bottom: .85rem !important;
}
.fr-detail-stat {
  padding: .5rem .55rem !important;
  gap: .5rem !important;
}
.fr-detail-ico {
  width: 28px; height: 28px;
  border-radius: 7px;
  font-size: .75rem;
}
.fr-detail-label { font-size: 8.5px !important; }
.fr-detail-val { font-size: .82rem !important; }

/* Bonus-Bedingungen Tiles */
.fr-detail-terms { gap: .4rem !important; }
.fr-detail-term {
  padding: .5rem .6rem !important;
}
.fr-detail-term-label { font-size: 8.5px !important; }
.fr-detail-term-val { font-size: .88rem !important; }

/* Welcome-Paket: kleinere Schritte */
.fr-detail-deposit {
  padding: .55rem .4rem !important;
  min-width: 80px;
}
.fr-detail-deposit-step { font-size: .7rem !important; }
.fr-detail-deposit-label { font-size: 8.5px !important; }
.fr-detail-deposit-pct { font-size: 1.15rem !important; margin-top: .15rem !important; }
.fr-detail-fs-note {
  margin-top: .5rem !important;
  padding: .35rem .65rem !important;
  font-size: .74rem !important;
}

/* Pros/Cons: tighter */
.fr-detail-proscons {
  gap: .55rem !important;
  margin-bottom: .85rem !important;
}
.fr-detail-pcbox {
  padding: .7rem .85rem !important;
}
.fr-pros, .fr-cons { gap: .35rem !important; }
.fr-pros li, .fr-cons li { font-size: .78rem !important; line-height: 1.4 !important; }

/* Payments + Tags */
.fr-detail-payments { padding: .6rem !important; gap: .35rem !important; }
.fr-detail-text { padding: .65rem .85rem !important; font-size: .82rem !important; }

/* CTA: NICHT sticky — sitzt sauber am Ende, kein Overlap */
.fr-modal-cta {
  position: static !important;
  margin-top: 1rem !important;
  padding: .75rem 1rem !important;
  font-size: .9rem !important;
  border-radius: 10px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   CARDS — Statisch fixierte Boxen (alles immer auf gleicher Y-Position)
   Wir packen jede Karte in starr nummerierte Slots mit fester Höhe.
   ═══════════════════════════════════════════════════════════════════ */

.fr-card {
  /* Festes Padding, damit alle Karten exakt gleich hoch */
  padding: 1.1rem 1rem .95rem !important;
}

/* SLOT 1: HEADER — fest 80px */
.fr-card-head {
  height: 80px !important;
  min-height: 80px !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
  margin-bottom: .75rem;
  align-items: center;
}

/* Logo etwas kleiner für eine ausgewogenere Karte */
.fr-card-logo .logo-block {
  width: 64px !important; height: 64px !important;
  border-radius: 14px !important;
}
.fr-card-logo .logo-block .logo-icon { font-size: 1.75rem !important; }

/* Name nicht abschneiden, aber mit fester Zeile */
.fr-card-name {
  font-size: 1rem !important;
  line-height: 1.2 !important;
  height: 1.2em;
  margin-bottom: .25rem;
}
.fr-card-chips {
  height: 22px !important;
  min-height: 22px !important;
  overflow: hidden;
  margin-top: 0 !important;
}

/* Trennlinie unter Header als eigener Slot, immer da */
.fr-card-head + * {
  /* nach Head startet die Bonus-Sektion */
}

/* SLOT 2: BONUS HERO — fest 92px */
.fr-card-bonus {
  height: 92px !important;
  min-height: 92px !important;
  padding: .75rem .6rem !important;
  margin: 0 0 .6rem !important;
  justify-content: center;
}
.fr-card-bonus-label { font-size: 9px !important; }
.fr-card-bonus-value { font-size: 1.4rem !important; }
.fr-card-bonus-fs {
  font-size: .74rem !important;
  margin-top: .15rem !important;
}
.fr-card-bonus:not(:has(.fr-card-bonus-fs))::after { display: none; }

/* SLOT 3: STATS — fest 54px */
.fr-card-stats {
  height: 54px !important;
  min-height: 54px !important;
  padding: .5rem .5rem !important;
  margin: 0 0 .55rem !important;
}
.fr-stat-val { font-size: .85rem !important; }
.fr-stat-label { font-size: 7.5px !important; }

/* SLOT 4: CODE-BOX — IMMER vorhanden, fest 46px (auch wenn leer) */
.fr-card-code,
.fr-card-code-placeholder {
  height: 46px !important;
  min-height: 46px !important;
  margin: 0 0 .6rem !important;
  padding: .45rem .65rem !important;
  border-radius: 9px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.fr-card-code-placeholder {
  border: 1px dashed rgba(255,255,255,.07);
  background: rgba(255,255,255,.015);
  color: rgba(255,255,255,.32);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-left: 1rem !important;
}
.fr-card-code-placeholder::before {
  /* gleiches Mint-Strich-Pattern wie Code-Box, aber neutralisiert */
  content: '';
  position: absolute;
  left: 0; top: 8%; bottom: 8%;
  width: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
}
.fr-card-code { position: relative; }
.fr-card-code-placeholder { position: relative; }
.fr-card-code-label { font-size: 7.5px !important; }
.fr-card-code-value { font-size: .88rem !important; }

/* SLOT 5: CTA — fest 42px */
.fr-card-play {
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 1rem !important;
  margin-top: 0 !important;
  font-size: .85rem !important;
  flex-shrink: 0;
}

/* SLOT 6: DETAILS — fest 26px */
.fr-card-details-btn {
  height: 26px !important;
  min-height: 26px !important;
  margin-top: .45rem !important;
  padding: 0 !important;
  font-size: .72rem !important;
}

/* Anchor: Cards strecken sich nicht mehr nach unten — alle haben durch fixe Slot-Höhen exakt die gleiche Höhe */
.fr-card-wrap { align-self: start; }
.fr-card { height: auto !important; }

/* ═══════════════════════════════════════════════════════════════════
   CARDS — Name raus, Logo größer, Chips gestapelt neben Logo
   ═══════════════════════════════════════════════════════════════════ */

/* Logo nochmal größer */
.fr-card-logo .logo-block {
  width: 80px !important; height: 80px !important;
  border-radius: 16px !important;
}
.fr-card-logo .logo-block .logo-icon { font-size: 2.1rem !important; }

/* Header etwas höher fix, damit das größere Logo + Chips reinpassen */
.fr-card-head {
  height: 88px !important;
  min-height: 88px !important;
  align-items: center !important;
  gap: 1rem !important;
}

/* Name komplett verstecken (falls noch wo gerendert wird) */
.fr-card-name { display: none !important; }

/* Chips gestapelt: 2 FIXIERTE Slot-Zeilen — Bonusart bleibt immer in Zeile 1,
   No-Deposit-Slot ist reserviert (Zeile 2), bleibt leer wenn nicht vorhanden.
   So verschiebt sich BONUSTYPE NIE durch fehlende/zusätzliche No-Dep-Zeile. */
.fr-card-chips--stacked {
  display: grid !important;
  grid-template-rows: 22px 22px !important;
  row-gap: .4rem !important;
  align-content: center !important;
  justify-items: start !important;
  height: auto !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;
  flex: 1 1 auto;
}
.fr-card-chips--stacked > span { margin: 0; align-self: center; }

/* ═══════════════════════════════════════════════════════════════════
   Tweaks: Code-Box dezenter, Stats prominenter
   ═══════════════════════════════════════════════════════════════════ */

/* CODE-BOX — kleiner & dezenter */
.fr-card-code,
.fr-card-code-placeholder {
  height: 34px !important;
  min-height: 34px !important;
  padding: .25rem .55rem !important;
  margin: 0 0 .55rem !important;
  border-radius: 8px !important;
}
.fr-card-code {
  background: rgba(255,216,74,.05) !important;
  border-color: rgba(255,216,74,.16) !important;
}
.fr-card-code::before {
  width: 2px !important;
  background: rgba(255,216,74,.55) !important;
  box-shadow: none !important;
}
.fr-card-code-inner {
  flex-direction: row !important;
  align-items: center !important;
  gap: .5rem !important;
  padding-left: .35rem !important;
}
.fr-card-code-label {
  font-size: 8px !important;
  letter-spacing: .14em !important;
  color: rgba(255,255,255,.4) !important;
}
.fr-card-code-value {
  font-size: .78rem !important;
  letter-spacing: .04em !important;
  color: rgba(255,216,74,.9) !important;
}
.fr-card-code .code-copy {
  width: 22px !important; height: 22px !important;
  font-size: .7rem !important;
}
.fr-card-code .code-copy i { font-size: .7rem !important; }

/* Placeholder ebenfalls dezenter */
.fr-card-code-placeholder {
  padding-left: .8rem !important;
  font-size: .68rem !important;
  letter-spacing: .1em !important;
  color: rgba(255,255,255,.28) !important;
}
.fr-card-code-placeholder::before { width: 2px !important; }

/* STATS — prominenter */
.fr-card-stats {
  height: 68px !important;
  min-height: 68px !important;
  padding: .6rem .55rem !important;
  margin: 0 0 .65rem !important;
}
.fr-stat-val {
  font-size: 1.05rem !important;
  margin-top: .2rem !important;
  letter-spacing: -.005em;
}
.fr-stat-label {
  font-size: 9px !important;
  letter-spacing: .12em !important;
}

/* ═══════════════════════════════════════════════════════════════════
   BONUSHUNT v2 — Live-Dashboard, eigener Namespace .bh-
   ═══════════════════════════════════════════════════════════════════ */

.bh-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1rem 4rem;
}
@media (min-width: 768px)  { .bh-main { padding: 1.5rem 2rem 4rem; } }
@media (min-width: 1024px) { .bh-main { padding: 1.75rem 2.5rem 5rem; } }

/* ─── Empty / Loading State Card ─────────────────────────────────── */
.bh-state-card {
  background: linear-gradient(180deg, #16191f 0%, #0e1014 100%);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: rgba(255,255,255,.5);
}
.bh-state-card i { color: var(--fr-yellow-br); font-size: 1.6rem; }
.bh-state-card p { margin-top: .85rem; font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════════════
   HERO — Live Progress Card
   ═══════════════════════════════════════════════════════════════════ */
.bh-hero {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1.4rem 1.6rem 1.6rem;
  border-radius: 18px;
  background:
    radial-gradient(70% 100% at 100% 0%, rgba(255,216,74,.08) 0%, transparent 60%),
    linear-gradient(180deg, #16191f 0%, #0c0e12 100%);
  border: 1px solid rgba(255,216,74,.16);
  box-shadow: 0 22px 50px -22px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.bh-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--fr-yellow-br), transparent);
  opacity: .55;
}
.bh-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1rem;
}
.bh-live {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: rgba(255,216,74,.10);
  border: 1px solid rgba(255,216,74,.4);
  color: var(--fr-yellow-soft);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.bh-live-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--fr-yellow-br);
  box-shadow: 0 0 8px 1px rgba(255,216,74,.7);
  animation: bh-pulse 1.4s ease-in-out infinite;
}
@keyframes bh-pulse { 0%,100%{opacity:.6;transform:scale(.85)} 50%{opacity:1;transform:scale(1.15)} }
.bh-hero-progress {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.bh-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 .5rem;
}
.bh-hero-accent {
  background: linear-gradient(100deg, #ffcb1f 0%, #ffe066 45%, #ffcb1f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: fr-shine 5s linear infinite;
}
.bh-hero-sub {
  margin: 0 0 1.4rem;
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(243,244,238,.55);
  max-width: 38rem;
}

/* ─── Live Balance ───────────────────────────────────────────────── */
.bh-balance {
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 13px;
  padding: 1rem 1.1rem;
}
.bh-balance-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.bh-balance-cell { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.bh-balance-cell.highlight { align-items: flex-end; text-align: right; }
.bh-balance-label {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bh-balance-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.bh-balance-val.accent {
  color: var(--fr-yellow-soft);
  text-shadow: 0 0 16px rgba(255,216,74,.3);
}
.bh-balance-arrow {
  color: rgba(255,216,74,.55);
  font-size: 1rem;
}
.bh-balance-bar {
  position: relative;
  height: 6px;
  margin: .9rem 0 .55rem;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  overflow: hidden;
}
.bh-balance-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fr-yellow) 0%, var(--fr-yellow-soft) 100%);
  box-shadow: 0 0 12px rgba(255,216,74,.5);
  border-radius: 999px;
  transition: width .8s cubic-bezier(.2,.8,.2,1);
  width: 0%;
}
.bh-balance-bar-fill.is-target {
  background: linear-gradient(90deg, #6ee7b7 0%, #34d399 100%);
  box-shadow: 0 0 12px rgba(52,211,153,.5);
}
.bh-balance-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .01em;
}
.bh-balance-footer strong { color: #fff; font-weight: 700; }
.bh-balance-footer .is-positive {
  color: #6ee7b7;
  font-weight: 700;
}
.bh-balance-footer .is-positive i { margin-right: .35rem; }
.bh-balance-footer i { color: var(--fr-yellow-br); margin-right: .35rem; }

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════════════ */
.bh-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .bh-stats { grid-template-columns: repeat(4, 1fr); gap: .8rem; }
}
.bh-stat {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1rem;
  border-radius: 13px;
  background: linear-gradient(180deg, #15171c 0%, #0d0f12 100%);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .2s ease, transform .2s ease;
}
.bh-stat:hover {
  border-color: rgba(255,216,74,.25);
  transform: translateY(-1px);
}
.bh-stat.highlight {
  border-color: rgba(255,216,74,.32);
  background: linear-gradient(180deg, rgba(255,216,74,.06) 0%, transparent 60%), #0d0f12;
}
.bh-stat-ico {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: rgba(255,216,74,.12);
  border: 1px solid rgba(255,216,74,.28);
  color: var(--fr-yellow-br);
  font-size: .85rem;
  flex-shrink: 0;
}
.bh-stat-body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.bh-stat-label {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bh-stat-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.bh-stat-val.accent {
  color: var(--fr-yellow-soft);
}

/* ═══════════════════════════════════════════════════════════════════
   MAIN GRID: Slots + Side
   ═══════════════════════════════════════════════════════════════════ */
.bh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .bh-grid { grid-template-columns: 1fr 380px; gap: 1.5rem; }
}

/* ─── Card Common ────────────────────────────────────────────────── */
.bh-slots-card, .bh-side-card {
  background: linear-gradient(180deg, #14171c 0%, #0c0e12 100%);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px;
  overflow: hidden;
}
.bh-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.bh-card-head-l {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.bh-card-ico {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,216,74,.12);
  border: 1px solid rgba(255,216,74,.28);
  color: var(--fr-yellow-br);
  font-size: .78rem;
}
.bh-card-ico.is-success {
  background: rgba(110,231,183,.12);
  border-color: rgba(110,231,183,.3);
  color: #6ee7b7;
}
.bh-card-head h2, .bh-card-head h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  color: #fff;
  letter-spacing: -.005em;
}
.bh-card-meta {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.bh-card-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255,216,74,.12);
  border: 1px solid rgba(255,216,74,.3);
  color: var(--fr-yellow-soft);
  font-size: 10.5px;
  font-weight: 800;
  margin-left: .35rem;
}

/* ═══════════════════════════════════════════════════════════════════
   SLOTS TABLE
   ═══════════════════════════════════════════════════════════════════ */
.bh-slots-wrap { overflow-x: auto; }
.bh-slots-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.bh-slots-table thead tr {
  background: rgba(255,255,255,.02);
}
.bh-slots-table th {
  padding: .65rem 1rem;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bh-slots-table th.left  { text-align: left; }
.bh-slots-table th.right { text-align: right; }
.bh-slots-table th.col-rank  { width: 56px; }
.bh-slots-table th.col-multi { width: 92px; }
.bh-slots-table td {
  padding: .7rem 1rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.bh-slots-table td.right { text-align: right; }
.bh-slots-table td.tabular { font-variant-numeric: tabular-nums; }
.bh-slots-table td.muted { color: rgba(255,255,255,.3); }
.bh-slot-row.is-opened {
  background: linear-gradient(90deg, rgba(255,216,74,.025), transparent 70%);
}
.bh-slot-row.is-next {
  background: linear-gradient(90deg, rgba(255,216,74,.10), rgba(255,216,74,.02) 70%);
  box-shadow: inset 3px 0 0 var(--fr-yellow-br);
}
.bh-slot-row:hover { background: rgba(255,255,255,.025); }
.bh-slot-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.bh-slot-row.is-opened .bh-slot-rank {
  background: rgba(255,216,74,.10);
  border-color: rgba(255,216,74,.28);
  color: var(--fr-yellow-soft);
}
.bh-slot-row.is-next .bh-slot-rank {
  background: var(--fr-yellow-br);
  border-color: var(--fr-yellow-br);
  color: #11130a;
  box-shadow: 0 0 8px 1px rgba(255,216,74,.5);
}
.bh-slot-name {
  font-weight: 600;
  color: #fff;
}
.bh-slot-provider {
  font-size: 10.5px;
  color: rgba(255,255,255,.4);
  margin-top: 1px;
}

/* Multi pills */
.bh-multi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.06);
  font-variant-numeric: tabular-nums;
}
.bh-multi.is-good  { background: rgba(255,216,74,.08);  color: #d8ff7a; border-color: rgba(205,255,92,.30); }
.bh-multi.is-great { background: rgba(255,216,74,.16);  color: #e0ffa0; border-color: rgba(205,255,92,.55); }
.bh-multi.is-huge  { background: linear-gradient(135deg, #9be91e, #c0ff3e); color: #0a1500; border-color: transparent; box-shadow: 0 0 14px rgba(192,255,62,.45); }
.bh-multi.is-zero  { background: rgba(244,63,94,.10);   color: #fda4af; border-color: rgba(244,63,94,.25); }
.bh-multi-next {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 80px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--fr-yellow-br);
  color: #11130a;
  border: 1px solid var(--fr-yellow-br);
  gap: .35rem;
  box-shadow: 0 0 12px rgba(255,216,74,.45);
}

/* ═══════════════════════════════════════════════════════════════════
   SIDE: GUESS + RANKINGS
   ═══════════════════════════════════════════════════════════════════ */
.bh-side { display: flex; flex-direction: column; gap: 1.25rem; }
.bh-side-card { padding: 0; }
.bh-side-card > p,
.bh-side-card > form,
.bh-side-card > ul,
.bh-side-card > .bh-guess-done {
  padding: 0 1.1rem 1.1rem;
}

/* Guess intro + empty */
.bh-guess-intro {
  margin: .8rem 0 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  padding: 0 1.1rem;
}
.bh-guess-empty {
  margin: .8rem 1.1rem 1.1rem;
  padding: .85rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.025);
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 10px;
  text-align: center;
}
.bh-guess-empty i { color: rgba(255,255,255,.4); margin-right: .35rem; }

/* Guess done state */
.bh-guess-done {
  padding: 1.2rem 1.1rem 1.1rem !important;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,216,74,.05), transparent 60%);
  border-top: 1px solid rgba(255,216,74,.1);
  margin-top: 0;
}
.bh-guess-done-label {
  display: block;
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .35rem;
}
.bh-guess-done-val {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--fr-yellow-soft);
  letter-spacing: -.02em;
  text-shadow: 0 0 18px rgba(255,216,74,.35);
  font-variant-numeric: tabular-nums;
}
.bh-guess-done-note {
  display: block;
  margin-top: .55rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

/* Form */
.bh-form { display: flex; flex-direction: column; gap: .85rem; padding-top: .25rem !important; }
.bh-field { display: flex; flex-direction: column; gap: .35rem; }
.bh-field label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 700;
}
.bh-field-input {
  position: relative;
  display: flex;
  align-items: center;
}
.bh-field-input i {
  position: absolute;
  left: .85rem;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  pointer-events: none;
}
.bh-field-input input {
  width: 100%;
  padding: .7rem .9rem .7rem 2.3rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .2s ease, background .2s ease;
}
.bh-field-input input:focus {
  outline: none;
  border-color: rgba(255,216,74,.45);
  background: rgba(255,255,255,.05);
}
.bh-field-input:focus-within i { color: var(--fr-yellow-br); }

.bh-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .03em;
  color: #11130a;
  background: linear-gradient(180deg, var(--fr-yellow-soft) 0%, var(--fr-yellow) 100%);
  border: 1px solid rgba(0,0,0,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 8px 22px -10px rgba(255,216,74,.6);
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
  margin-top: .3rem;
}
.bh-submit:hover { transform: translateY(-1px); filter: brightness(1.05); }
.bh-submit i { transition: transform .25s ease; }
.bh-submit:hover i { transform: translateX(4px); }

/* Sort buttons (Tipps) */
.bh-sort { display: inline-flex; gap: .3rem; }
.bh-sort button {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .65rem;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.45);
  background: transparent;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 7px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.bh-sort button:hover { color: #fff; border-color: rgba(255,255,255,.18); }
.bh-sort button.is-active {
  background: rgba(255,216,74,.12);
  color: var(--fr-yellow-soft);
  border-color: rgba(255,216,74,.4);
}
.bh-sort button i { font-size: .65rem; }

/* Ranking list */
.bh-rank-list {
  list-style: none;
  margin: 0;
  padding: .5rem .5rem 1rem !important;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  max-height: 460px;
  overflow-y: auto;
}
.bh-rank-list::-webkit-scrollbar { width: 6px; }
.bh-rank-list::-webkit-scrollbar-thumb { background: rgba(255,216,74,.25); border-radius: 6px; }
.bh-rank-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: .6rem;
  padding: .45rem .65rem;
  border-radius: 8px;
  transition: background .15s ease;
}
.bh-rank-row:hover { background: rgba(255,255,255,.025); }
.bh-rank-row.is-user {
  background: linear-gradient(90deg, rgba(255,216,74,.10), rgba(255,216,74,.02) 80%);
  border: 1px solid rgba(255,216,74,.3);
}
.bh-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  font-size: .76rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.bh-rank.is-gold {
  background: linear-gradient(180deg, #ffd84a, #ffcb1f);
  border-color: transparent;
  color: #2a1908;
  box-shadow: 0 0 10px rgba(255,203,31,.45);
}
.bh-rank.is-silver {
  background: linear-gradient(180deg, #d6d9e0, #9aa0ad);
  border-color: transparent;
  color: #1a1c20;
}
.bh-rank.is-bronze {
  background: linear-gradient(180deg, #e0a878, #b9763f);
  border-color: transparent;
  color: #1a1208;
}
.bh-rank-name {
  font-size: .85rem;
  color: rgba(243,244,238,.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bh-rank-row.is-user .bh-rank-name { color: var(--fr-yellow-soft); font-weight: 700; }
.bh-rank-val {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  font-variant-numeric: tabular-nums;
}
.bh-rank-row.is-user .bh-rank-val { color: var(--fr-yellow-soft); }
.tabular { font-variant-numeric: tabular-nums; }

/* ═══════════════════════════════════════════════════════════════════
   PAST HUNTS
   ═══════════════════════════════════════════════════════════════════ */
.bh-past { margin-top: 3rem; }
.bh-past-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
}
.bh-past-head h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0;
  color: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
}
.bh-past-head h2 i { color: var(--fr-yellow-br); font-size: 1rem; }
.bh-past-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255,216,74,.12);
  border: 1px solid rgba(255,216,74,.3);
  color: var(--fr-yellow-soft);
  font-size: 10.5px; font-weight: 800;
}
.bh-past-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .bh-past-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bh-past-grid { grid-template-columns: repeat(4, 1fr); } }

.bh-past-card {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #14171c 0%, #0c0e12 100%);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .25s ease, transform .25s ease;
}
.bh-past-card:hover {
  border-color: rgba(255,216,74,.32);
  transform: translateY(-2px);
}
.bh-past-card.is-great { border-color: rgba(255,216,74,.18); }
.bh-past-card.is-low   { border-color: rgba(244,63,94,.18); }

.bh-past-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
}
.bh-past-card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  line-height: 1.25;
  flex: 1; min-width: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.bh-past-card-date {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  margin-top: 2px;
}
.bh-past-card-meta {
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bh-past-card-stats {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .65rem .75rem;
  border-radius: 9px;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.04);
}
.bh-past-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bh-past-stat-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bh-past-stat-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  font-variant-numeric: tabular-nums;
}
.bh-past-stat-val.is-positive { color: #d8ff7a; }
.bh-past-stat-val.is-negative { color: #fda4af; }
.bh-past-stat-val.accent      { color: var(--fr-yellow-soft); }

.bh-past-card-winner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .65rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.bh-past-card-winner > i {
  color: #ffd84a;
  font-size: .9rem;
}
.bh-past-card-winner-body { display: flex; flex-direction: column; min-width: 0; }
.bh-past-card-winner-body strong {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bh-past-card-winner-guess { display: flex; flex-direction: column; text-align: right; }
.bh-past-card-winner-guess span:last-child {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  font-variant-numeric: tabular-nums;
}

/* ═══ Toast ════════════════════════════════════════════════════════ */
.bh-toast {
  position: fixed;
  left: 50%;
  top: 80px;
  transform: translateX(-50%) translateY(-8px);
  padding: .75rem 1.15rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  background: linear-gradient(180deg, #1a1d23, #14171b);
  border: 1px solid rgba(255,216,74,.4);
  color: #fff;
  z-index: 9999;
  box-shadow: 0 22px 50px -16px rgba(0,0,0,.7);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.bh-toast.open { opacity: 1; transform: translateX(-50%) translateY(0); }
.bh-toast-error   { border-color: rgba(244,63,94,.5); }
.bh-toast-success { border-color: rgba(110,231,183,.5); }

/* ═══════════════════════════════════════════════════════════════════
   BONUSHUNT v3 — "Big Balance + Integrated Tip" Layout
   Eigener Namespace .bh3-* — kollidiert mit nichts.
   ═══════════════════════════════════════════════════════════════════ */
.bh3-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 4rem;
}
@media (min-width: 768px)  { .bh3-main { padding: 1.5rem 2rem 4rem; } }
@media (min-width: 1024px) { .bh3-main { padding: 1.75rem 2.5rem 5rem; } }

.bh3-state {
  background: linear-gradient(180deg, #16191f 0%, #0e1014 100%);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: rgba(255,255,255,.5);
}
.bh3-state i { color: var(--fr-yellow-br); font-size: 1.6rem; }
.bh3-state p { margin-top: .85rem; font-size: .9rem; }

/* ═══ HERO ═══════════════════════════════════════════════════════ */
.bh3-hero {
  margin-bottom: 1.75rem;
  border-radius: 22px;
  background:
    radial-gradient(70% 100% at 0% 0%, rgba(255,216,74,.08) 0%, transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(255,216,74,.05) 0%, transparent 60%),
    linear-gradient(180deg, #16191f 0%, #0a0c10 100%);
  border: 1px solid rgba(255,216,74,.16);
  box-shadow: 0 24px 60px -26px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
  position: relative;
}
.bh3-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--fr-yellow-br), transparent);
  opacity: .6;
  pointer-events: none;
}
.bh3-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .bh3-hero-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: stretch;
  }
}

/* ── LEFT: Balance Panel ─────────────────────────────────────── */
.bh3-balance-panel {
  padding: 2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .bh3-balance-panel { padding: 2.25rem 2.5rem 2rem; }
}
.bh3-balance-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.bh3-live {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(255,216,74,.10);
  border: 1px solid rgba(255,216,74,.4);
  color: var(--fr-yellow-soft);
  font-size: 10px; font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.bh3-live-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--fr-yellow-br);
  box-shadow: 0 0 8px 1px rgba(255,216,74,.7);
  animation: bh-pulse 1.4s ease-in-out infinite;
}
.bh3-meta-slots {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.bh3-balance-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bh3-balance-cur {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.035em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(100deg, #f4f7f1 0%, #ffffff 50%, #ffe066 110%);
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(255,216,74,.18);
  animation: fr-shine 6s linear infinite;
}
.bh3-balance-cur-tag {
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-weight: 700;
  margin-top: .35rem;
}

.bh3-balance-meter {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  overflow: hidden;
  margin-top: .25rem;
}
.bh3-balance-meter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--fr-yellow) 0%, var(--fr-yellow-soft) 100%);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255,216,74,.5);
  transition: width .8s cubic-bezier(.2,.8,.2,1);
}
.bh3-balance-meter-fill.is-target {
  background: linear-gradient(90deg, #6ee7b7, #34d399);
  box-shadow: 0 0 14px rgba(52,211,153,.55);
}
.bh3-balance-meter-pct {
  position: absolute;
  right: -1px; top: -22px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--fr-yellow-soft);
}

.bh3-balance-foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .6rem;
}
.bh3-balance-foot-cell {
  display: flex;
  flex-direction: column;
  padding: .65rem .8rem;
  border-radius: 10px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.06);
}
.bh3-balance-foot-label {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bh3-balance-foot-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-top: .1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.bh3-balance-foot-val.pos { color: #6ee7b7; }
.bh3-balance-foot-val.neg { color: #fda4af; }

/* ── RIGHT: Tipp Panel ─────────────────────────────────────── */
.bh3-tip-panel {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255,216,74,.04) 0%, transparent 100%),
    rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,216,74,.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) {
  .bh3-tip-panel {
    padding: 2.25rem 2.25rem;
    border-top: 0;
    border-left: 1px solid rgba(255,216,74,.12);
  }
}

/* ── Tipp Form ─── */
.bh3-tip-form { display: flex; flex-direction: column; gap: 1rem; }
.bh3-tip-form-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: center;
}
.bh3-tip-badge {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,216,74,.22), rgba(255,216,74,.06));
  border: 1px solid rgba(255,216,74,.4);
  color: var(--fr-yellow-br);
  font-size: 1.05rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 6px 18px -8px rgba(255,216,74,.45);
}
.bh3-tip-form-head h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0;
  color: #fff;
  letter-spacing: -.005em;
}
.bh3-tip-form-head p {
  margin: .15rem 0 0;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.bh3-tip-form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
@media (min-width: 520px) {
  .bh3-tip-form-fields { grid-template-columns: 1fr 1fr; }
}
.bh3-tip-field { display: flex; flex-direction: column; gap: .3rem; }
.bh3-tip-field label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 700;
}
.bh3-tip-input {
  position: relative;
  display: flex;
  align-items: center;
}
.bh3-tip-input i {
  position: absolute;
  left: .85rem;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  pointer-events: none;
}
.bh3-tip-input input {
  width: 100%;
  padding: .7rem .9rem .7rem 2.3rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .2s ease, background .2s ease;
}
.bh3-tip-input input:focus {
  outline: none;
  border-color: rgba(255,216,74,.45);
  background: rgba(255,255,255,.05);
}
.bh3-tip-input:focus-within i { color: var(--fr-yellow-br); }

.bh3-tip-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.1rem;
  border-radius: 11px;
  font-family: inherit;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .03em;
  color: #11130a;
  background: linear-gradient(180deg, var(--fr-yellow-soft) 0%, var(--fr-yellow) 100%);
  border: 1px solid rgba(0,0,0,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 24px -10px rgba(255,216,74,.7);
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
  margin-top: .35rem;
}
.bh3-tip-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.bh3-tip-cta i { transition: transform .25s ease; }
.bh3-tip-cta:hover i { transform: translateX(5px); }

/* ── Tipp Done (nach Abgabe) ─── */
.bh3-tip-done {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(255,216,74,.10) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255,216,74,.05), rgba(255,216,74,.01));
  border: 1px solid rgba(255,216,74,.32);
  text-align: center;
}
.bh3-tip-done-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.bh3-tip-done-label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 700;
}
.bh3-tip-done-rank {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--fr-yellow-soft);
  background: rgba(255,216,74,.14);
  border: 1px solid rgba(255,216,74,.3);
  padding: .2rem .55rem;
  border-radius: 7px;
}
.bh3-tip-done-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--fr-yellow-soft);
  letter-spacing: -.02em;
  text-shadow: 0 0 18px rgba(255,216,74,.35);
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  margin: .3rem 0;
}
.bh3-tip-done-note {
  margin: 0;
  font-size: .76rem;
  color: rgba(255,255,255,.45);
}

/* ── Tipp Closed ─── */
.bh3-tip-closed {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(255,255,255,.1);
}
.bh3-tip-closed i {
  font-size: 1.6rem;
  color: rgba(255,255,255,.35);
}
.bh3-tip-closed h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: .65rem 0 .25rem;
  color: rgba(255,255,255,.75);
}
.bh3-tip-closed p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ═══ TABS ════════════════════════════════════════════════════════ */
.bh3-tabs-section { margin-bottom: 2rem; }
.bh3-tabs {
  display: inline-flex;
  gap: .25rem;
  padding: .3rem;
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.05);
  margin-bottom: 1.25rem;
}
.bh3-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  letter-spacing: .015em;
  transition: color .2s ease, background .2s ease;
}
.bh3-tab i { font-size: .82rem; color: rgba(255,255,255,.4); }
.bh3-tab:hover { color: #fff; }
.bh3-tab:hover i { color: var(--fr-yellow-br); }
.bh3-tab.is-active {
  background: linear-gradient(180deg, rgba(255,216,74,.14), rgba(255,216,74,.05));
  color: var(--fr-yellow-soft);
  box-shadow: inset 0 0 0 1px rgba(255,216,74,.32);
}
.bh3-tab.is-active i { color: var(--fr-yellow-br); }
.bh3-tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
.bh3-tab.is-active .bh3-tab-count {
  background: rgba(255,216,74,.2);
  color: var(--fr-yellow-soft);
}

/* ═══ SLOT-LIST (Row-Layout) ════════════════════════════════════ */
.bh3-slot-grid {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.bh3-slot {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: .6rem .9rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #14171c 0%, #0c0e12 100%);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.bh3-slot.is-opened {
  background: linear-gradient(180deg, rgba(255,216,74,.04) 0%, #0c0e12 100%);
}
.bh3-slot.is-next {
  border-color: rgba(255,216,74,.5);
  background: linear-gradient(180deg, rgba(255,216,74,.10) 0%, #0c0e12 100%);
  box-shadow: 0 0 28px -10px rgba(255,216,74,.6);
}
.bh3-slot.is-huge {
  border-color: rgba(255,216,74,.45);
  background:
    radial-gradient(70% 100% at 100% 0%, rgba(255,216,74,.10) 0%, transparent 60%),
    linear-gradient(180deg, #14171c 0%, #0c0e12 100%);
}
.bh3-slot:hover {
  border-color: rgba(255,216,74,.3);
  background: linear-gradient(180deg, #181c22 0%, #0c0e12 100%);
}

.bh3-slot-rank {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}
.bh3-slot.is-opened .bh3-slot-rank {
  background: rgba(255,216,74,.10);
  border-color: rgba(255,216,74,.28);
  color: var(--fr-yellow-soft);
}
.bh3-slot.is-next .bh3-slot-rank {
  background: var(--fr-yellow-br);
  border-color: var(--fr-yellow-br);
  color: #11130a;
  box-shadow: 0 0 12px 1px rgba(255,216,74,.5);
}

.bh3-slot-body { min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.bh3-slot-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bh3-slot-provider {
  align-self: flex-start;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  margin-top: 1px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--fr-yellow-soft);
  background: rgba(255,216,74,.08);
  border: 1px solid rgba(255,216,74,.16);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bh3-slot-numbers {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: .6rem;
  align-items: center;
}
.bh3-slot-bet, .bh3-slot-win {
  display: flex; flex-direction: column; gap: 1px;
  min-width: 58px;
}
.bh3-slot-win { align-items: flex-end; text-align: right; }
.bh3-slot-num-label {
  font-size: 8.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.bh3-slot-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  font-variant-numeric: tabular-nums;
}
.bh3-slot-num.muted { color: rgba(255,255,255,.25); }
.bh3-slot-arrow {
  color: rgba(255,216,74,.4);
  font-size: .7rem;
}

.bh3-slot-tail {
  display: flex;
  justify-content: flex-end;
  min-width: 72px;
}

/* Mobile: Zahlen + Multi unter den Namen stapeln statt quetschen */
@media (max-width: 560px) {
  .bh3-slot {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: .55rem .75rem;
  }
  .bh3-slot-numbers {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-content: start;
    margin-top: .4rem;
    padding-top: .4rem;
    border-top: 1px solid rgba(255,255,255,.05);
  }
  .bh3-slot-tail { grid-column: 3; grid-row: 1; }
}
.bh3-slot-multi {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 64px;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 12px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.07);
  font-variant-numeric: tabular-nums;
}
.bh3-slot-multi.is-good  { background: rgba(255,216,74,.10); color: var(--fr-yellow-soft); border-color: rgba(255,216,74,.28); }
.bh3-slot-multi.is-great { background: rgba(255,216,74,.18); color: #ffe48a; border-color: rgba(255,216,74,.48); }
.bh3-slot-multi.is-huge  { background: linear-gradient(135deg, #ffcb1f, #ffe066); color: #1a1400; border-color: transparent; box-shadow: 0 0 14px rgba(255,216,74,.55); }
.bh3-slot-multi.is-zero  { background: rgba(244,63,94,.12); color: #fda4af; border-color: rgba(244,63,94,.30); }
.bh3-slot-next {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 72px;
  gap: .4rem;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--fr-yellow-br);
  color: #11130a;
  border: 1px solid var(--fr-yellow-br);
  box-shadow: 0 0 12px rgba(255,216,74,.5);
}
.bh3-slot-pending {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px;
  padding: 5px 0;
  color: rgba(255,255,255,.25);
  font-size: .8rem;
}

/* ═══ WORK AREA: Slots links, Info-Sidebar rechts ══════════════ */
.bh3-work {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
.bh3-work .bh3-tabs-section { margin-bottom: 0; }
.bh3-side {
  display: grid;
  gap: .9rem;
  position: sticky;
  top: 1rem;
}
@media (max-width: 960px) {
  .bh3-work { grid-template-columns: 1fr; }
  .bh3-side { position: static; }
}

/* ═══ STATS-KARTEN + PROVIDER-CHART (shadcn-Look) ══════════════ */
.bh3-stat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}
/* Bei schmaler Sidebar (Mobile-Stack) die Karten zweispaltig auslegen */
@media (max-width: 960px) and (min-width: 560px) {
  .bh3-stat-cards { grid-template-columns: repeat(2, 1fr); }
}

.bh3-stat-card {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-height: 92px;
  padding: .8rem .95rem;
  border-radius: 14px;
  background: #14161a;
  border: 1px solid #262a31;
}
.bh3-stat-card.is-best {
  border-color: rgba(255,216,74,.35);
  background: linear-gradient(180deg, rgba(255,216,74,.06) 0%, #14161a 60%);
}
.bh3-stat-card.is-worst { border-color: rgba(244,63,94,.26); }
.bh3-stat-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8b9099;
}
.bh3-stat-label i { color: var(--fr-yellow-br); font-size: 11px; }
.bh3-stat-card.is-worst .bh3-stat-label i { color: #fb7185; }
.bh3-stat-slot {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bh3-stat-slot.muted { color: rgba(255,255,255,.3); font-weight: 500; font-size: .85rem; margin-top: .25rem; }
.bh3-stat-prov {
  font-size: 11px;
  color: #8b9099;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bh3-stat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
  padding-top: .4rem;
}
.bh3-stat-big {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.bh3-stat-sub {
  font-size: 11px;
  color: #8b9099;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bh3-prov-card {
  padding: 1.1rem 1.2rem 1.2rem;
  border-radius: 16px;
  background: #14161a;
  border: 1px solid #262a31;
}
.bh3-prov-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}
.bh3-prov-head h3 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
}
.bh3-prov-head h3 i { color: var(--fr-yellow-br); }
.bh3-prov-sub { font-size: 11px; color: #8b9099; white-space: nowrap; }
.bh3-prov-bars { display: flex; flex-direction: column; gap: .55rem; }
.bh3-prov-row {
  display: grid;
  grid-template-columns: 140px 1fr 32px;
  align-items: center;
  gap: .75rem;
}
.bh3-prov-name {
  font-size: 12.5px;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bh3-prov-track {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  overflow: hidden;
}
.bh3-prov-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcb1f, #ffe066);
  box-shadow: 0 0 10px rgba(255,216,74,.35);
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.bh3-prov-count {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: #fff;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.bh3-prov-empty { font-size: 12.5px; color: #8b9099; }
/* In der Sidebar Name-Spalte schmaler → längerer Balken */
.bh3-side .bh3-prov-row { grid-template-columns: 100px 1fr 26px; gap: .6rem; }
@media (max-width: 460px) { .bh3-prov-row, .bh3-side .bh3-prov-row { grid-template-columns: 92px 1fr 28px; gap: .5rem; } }

/* ═══ TIPPS PANE ════════════════════════════════════════════════ */
.bh3-tip-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: .75rem;
}
.bh3-sort { display: inline-flex; gap: .3rem; }
.bh3-sort button {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .75rem;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  cursor: pointer;
  transition: color .15s, background .15s, border-color .15s;
}
.bh3-sort button:hover { color: #fff; border-color: rgba(255,255,255,.18); }
.bh3-sort button.is-active {
  background: rgba(255,216,74,.12);
  color: var(--fr-yellow-soft);
  border-color: rgba(255,216,74,.4);
}
.bh3-sort button i { font-size: .68rem; }

.bh3-tip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .3rem;
}
@media (min-width: 768px) {
  .bh3-tip-list { grid-template-columns: 1fr 1fr; gap: .35rem .6rem; }
}
.bh3-tip-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: .65rem;
  padding: .55rem .8rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #14171c 0%, #0c0e12 100%);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .15s ease, transform .15s ease;
}
.bh3-tip-row:hover { border-color: rgba(255,255,255,.1); transform: translateY(-1px); }
.bh3-tip-row.is-user {
  background: linear-gradient(90deg, rgba(255,216,74,.08), rgba(255,216,74,.02));
  border-color: rgba(255,216,74,.35);
}
.bh3-tip-rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  font-variant-numeric: tabular-nums;
}
.bh3-tip-rank.is-gold   { background: linear-gradient(180deg, #ffd84a, #ffcb1f); border-color: transparent; color: #2a1908; box-shadow: 0 0 10px rgba(255,203,31,.45); }
.bh3-tip-rank.is-silver { background: linear-gradient(180deg, #d6d9e0, #9aa0ad); border-color: transparent; color: #1a1c20; }
.bh3-tip-rank.is-bronze { background: linear-gradient(180deg, #e0a878, #b9763f); border-color: transparent; color: #1a1208; }
.bh3-tip-name {
  font-size: .9rem;
  color: rgba(243,244,238,.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bh3-tip-row.is-user .bh3-tip-name { color: var(--fr-yellow-soft); font-weight: 700; }
.bh3-tip-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  font-variant-numeric: tabular-nums;
}
.bh3-tip-row.is-user .bh3-tip-val { color: var(--fr-yellow-soft); }
.bh3-tip-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 12px;
}

/* ═══ PAST HUNTS ════════════════════════════════════════════════ */
.bh3-past { margin-top: 3rem; }
.bh3-past-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 1.1rem;
  display: inline-flex; align-items: center; gap: .65rem;
  color: #fff;
}
.bh3-past-title i { color: var(--fr-yellow-br); font-size: 1rem; }
.bh3-past-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255,216,74,.12);
  border: 1px solid rgba(255,216,74,.3);
  color: var(--fr-yellow-soft);
  font-size: 10.5px; font-weight: 800;
}
.bh3-past-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .bh3-past-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bh3-past-grid { grid-template-columns: repeat(4, 1fr); } }

.bh3-past-card {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1rem 1.1rem;
  border-radius: 13px;
  background: linear-gradient(180deg, #14171c 0%, #0c0e12 100%);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .25s ease, transform .25s ease;
}
.bh3-past-card:hover { border-color: rgba(255,216,74,.3); transform: translateY(-2px); }
.bh3-past-card.is-great { border-color: rgba(255,216,74,.18); }
.bh3-past-card.is-low   { border-color: rgba(244,63,94,.18); }

.bh3-past-card-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem;
}
.bh3-past-card-head h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  margin: 0;
  color: #fff;
  line-height: 1.25;
  flex: 1; min-width: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.bh3-past-card-date {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  margin-top: 2px;
}
.bh3-past-card-meta {
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bh3-past-card-stats {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .6rem .75rem;
  border-radius: 9px;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.04);
}
.bh3-past-card-stats > div {
  display: flex; justify-content: space-between; align-items: center;
}
.bh3-past-card-stats span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bh3-past-card-stats strong {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-variant-numeric: tabular-nums;
}
.bh3-past-card-stats strong.pos     { color: #d8ff7a; }
.bh3-past-card-stats strong.neg     { color: #fda4af; }
.bh3-past-card-stats strong.accent  { color: var(--fr-yellow-soft); }

.bh3-past-card-winner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .6rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.bh3-past-card-winner > i { color: #ffd84a; font-size: .85rem; }
.bh3-past-card-winner-name {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bh3-past-card-winner-val {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  font-variant-numeric: tabular-nums;
}

/* ═══ Toast ═══════════════════════════════════════════════════════ */
.bh3-toast {
  position: fixed;
  left: 50%;
  top: 80px;
  transform: translateX(-50%) translateY(-8px);
  padding: .75rem 1.15rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  background: linear-gradient(180deg, #1a1d23, #14171b);
  border: 1px solid rgba(255,216,74,.4);
  color: #fff;
  z-index: 9999;
  box-shadow: 0 22px 50px -16px rgba(0,0,0,.7);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.bh3-toast.open { opacity: 1; transform: translateX(-50%) translateY(0); }
.bh3-toast-error   { border-color: rgba(244,63,94,.5); }
.bh3-toast-success { border-color: rgba(110,231,183,.5); }

/* ═══════════════════════════════════════════════════════════════════
   Header-Logo (neue Bilddatei JF_Logo_Header.png 354x112 → 3.16:1)
   ═══════════════════════════════════════════════════════════════════ */
.fr-h2-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,216,74,.25));
  transition: transform .25s cubic-bezier(.2,.8,.2,1), filter .25s ease;
}
.fr-h2-brand:hover .fr-h2-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(255,216,74,.45));
}
/* Mobile-Sidebar Variante */
.fr-h2-logo--sm {
  height: 34px;
}

/* Auf sehr schmalen Screens etwas kleiner */
@media (max-width: 480px) {
  .fr-h2-logo { height: 36px; max-width: 190px; }
}

/* Footer-Logo (gleiche PNG wie Header) */
.fr-ftr-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 14px rgba(255,216,74,.22));
  transition: transform .25s cubic-bezier(.2,.8,.2,1), filter .25s ease;
}
.fr-ftr-brand-link:hover .fr-ftr-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 0 18px rgba(255,216,74,.4));
}
.fr-ftr-brand-link {
  display: inline-block;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   RAFFLES v2 — eigener Namespace .rf-*
   ═══════════════════════════════════════════════════════════════════ */
.rf-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 4rem;
}
@media (min-width: 768px)  { .rf-main { padding: 1.5rem 2rem 4rem; } }
@media (min-width: 1024px) { .rf-main { padding: 1.75rem 2.5rem 5rem; } }

/* ═══ HERO ═══ */
.rf-hero {
  margin-bottom: 1.5rem;
  padding: 1.6rem 1.7rem;
  border-radius: 20px;
  position: relative;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(255,216,74,.08) 0%, transparent 60%),
    linear-gradient(180deg, #16191f 0%, #0a0c10 100%);
  border: 1px solid rgba(255,216,74,.16);
  box-shadow: 0 22px 60px -28px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.rf-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--fr-yellow-br), transparent);
  opacity: .55;
}
.rf-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .rf-hero-grid { grid-template-columns: 1.5fr 1fr; gap: 2rem; }
}
.rf-hero-l { min-width: 0; }
.rf-live {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(255,216,74,.10);
  border: 1px solid rgba(255,216,74,.4);
  color: var(--fr-yellow-soft);
  font-size: 10px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.rf-live-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--fr-yellow-br);
  box-shadow: 0 0 8px 1px rgba(255,216,74,.7);
  animation: bh-pulse 1.4s ease-in-out infinite;
}
.rf-hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 .55rem;
}
.rf-hero-accent {
  background: linear-gradient(100deg, #ffcb1f 0%, #ffe066 45%, #ffcb1f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: fr-shine 5s linear infinite;
}
.rf-hero-sub {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(243,244,238,.55);
  max-width: 36rem;
}

/* Hero-Right: Stat */
.rf-hero-r {
  display: flex;
  justify-content: flex-end;
}
.rf-hero-stat {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  background:
    radial-gradient(80% 50% at 0% 0%, rgba(255,216,74,.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,216,74,.06) 0%, rgba(0,0,0,.3) 100%);
  border: 1px solid rgba(255,216,74,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 30px -14px rgba(255,216,74,.35);
  min-width: 240px;
}
.rf-hero-stat-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  margin-bottom: .35rem;
}
.rf-hero-stat-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -.015em;
  color: var(--fr-yellow-soft);
  text-shadow: 0 0 18px rgba(255,216,74,.35);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.rf-hero-stat-meta {
  margin-top: .5rem;
  font-size: 10.5px;
  letter-spacing: .03em;
  color: rgba(255,255,255,.4);
}

/* ═══ WINNERS MARQUEE ═══ */
.rf-marquee {
  margin-bottom: 1.75rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #14171c 0%, #0c0e12 100%);
  border: 1px solid rgba(255,255,255,.05);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
.rf-marquee-head {
  display: inline-flex; align-items: center; gap: .55rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,.06);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fr-yellow-soft);
  white-space: nowrap;
}
.rf-marquee-head i { color: #ffd84a; font-size: .85rem; }
.rf-marquee-track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rf-marquee-track {
  display: flex;
  align-items: center;
  gap: .8rem;
  width: max-content;
  animation: rf-marquee-scroll 60s linear infinite;
}
.rf-marquee:hover .rf-marquee-track { animation-play-state: paused; }
@keyframes rf-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rf-marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  font-size: .8rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.rf-marquee-pill i { color: #ffd84a; font-size: .72rem; }
.rf-marquee-name {
  color: rgba(255,255,255,.85);
  font-weight: 700;
  letter-spacing: .02em;
}
.rf-marquee-sep { color: rgba(255,255,255,.3); font-size: .75rem; }
.rf-marquee-amt {
  color: var(--fr-yellow-soft);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ═══ SECTION HEAD (Aktive / Vergangene) ═══ */
.rf-section-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.1rem;
}
.rf-section-head h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0;
  color: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
}
.rf-section-head h2 i { color: var(--fr-yellow-br); font-size: 1rem; }
.rf-section-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,216,74,.12);
  border: 1px solid rgba(255,216,74,.3);
  color: var(--fr-yellow-soft);
  font-size: 10.5px; font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ═══ EMPTY ═══ */
.rf-empty {
  padding: 3rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #16191f 0%, #0e1014 100%);
  border: 1px dashed rgba(255,255,255,.08);
  text-align: center;
  color: rgba(255,255,255,.5);
}
.rf-empty i { font-size: 1.7rem; color: rgba(255,216,74,.4); }
.rf-empty p { margin: .9rem 0 0; font-size: .9rem; max-width: 30rem; margin-left: auto; margin-right: auto; }

/* ═══ RAFFLE CARD GRID ═══ */
.rf-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) { .rf-card-grid { grid-template-columns: repeat(2, 1fr); } }

.rf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-radius: 18px;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(255,216,74,.08) 0%, transparent 65%),
    linear-gradient(180deg, #16191f 0%, #0a0c10 100%);
  border: 1px solid rgba(255,216,74,.22);
  box-shadow: 0 20px 50px -22px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .3s ease;
}
.rf-card:hover {
  border-color: rgba(255,216,74,.42);
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.85), 0 0 36px -12px rgba(255,216,74,.35);
}
.rf-card.is-entered { border-color: rgba(110,231,183,.32); }
.rf-card.is-entered:hover { border-color: rgba(110,231,183,.5); }

.rf-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.rf-card-status {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: 10px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: #fda4af;
}
.rf-card-status-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: #f43f5e;
  box-shadow: 0 0 6px 1px rgba(244,63,94,.55);
  animation: bh-pulse 1.4s ease-in-out infinite;
}
.rf-card-meta {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  font-variant-numeric: tabular-nums;
}

/* Prize Block — Hero des Cards */
.rf-prize {
  position: relative;
  text-align: center;
  padding: 1.4rem 1rem 1.2rem;
  border-radius: 14px;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(255,216,74,.14) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255,216,74,.06) 0%, rgba(255,216,74,.01) 100%);
  border: 1px solid rgba(255,216,74,.28);
  overflow: hidden;
}
.rf-prize::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--fr-yellow-br), transparent);
  opacity: .6;
}
.rf-prize-label {
  display: block;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  margin-bottom: .35rem;
}
.rf-prize-val {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  letter-spacing: -.03em;
  line-height: .95;
  color: transparent;
  background: linear-gradient(180deg, #ffd84a 0%, #ffcb1f 100%);
  -webkit-background-clip: text;
          background-clip: text;
  text-shadow: 0 0 28px rgba(255,193,7,.25);
  font-variant-numeric: tabular-nums;
}
.rf-prize-title {
  display: block;
  margin-top: .65rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fr-yellow-soft);
}

/* Countdown */
.rf-countdown {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  padding: .85rem 1rem;
}
.rf-cd-label {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  margin-bottom: .5rem;
}
.rf-cd-label i { color: var(--fr-yellow-br); font-size: .72rem; }
.rf-cd-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .3rem;
}
.rf-cd-cell {
  flex: 1 1 0;
  display: flex; flex-direction: column;
  align-items: center;
  padding: .4rem 0;
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  min-width: 0;
}
.rf-cd-val {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fr-yellow-soft);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
  line-height: 1;
}
.rf-cd-unit {
  font-size: 8.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .2rem;
  font-weight: 700;
}
.rf-cd-sep {
  color: rgba(255,255,255,.2);
  font-weight: 800;
  font-size: 1rem;
  user-select: none;
}

/* Cost */
.rf-cost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 9px;
  background: rgba(255,170,0,.08);
  border: 1px solid rgba(255,170,0,.25);
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.rf-cost i { color: #ffc34a; font-size: .78rem; }
.rf-cost strong { color: #ffd84a; font-weight: 800; }

/* CTA */
.rf-cta { margin-top: auto; }
.rf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .03em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease, box-shadow .2s ease;
}
.rf-btn-enter {
  color: #11130a;
  background: linear-gradient(180deg, var(--fr-yellow-soft) 0%, var(--fr-yellow) 100%);
  border-color: rgba(0,0,0,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 24px -10px rgba(255,216,74,.65);
}
.rf-btn-enter:hover { transform: translateY(-1px); filter: brightness(1.05); }
.rf-btn-enter:disabled { opacity: .6; cursor: not-allowed; }
.rf-btn-arrow { transition: transform .25s ease; font-size: .82rem !important; }
.rf-btn-enter:hover .rf-btn-arrow { transform: translateX(4px); }

.rf-btn-twitch {
  color: #fff;
  background: linear-gradient(180deg, #9146ff 0%, #7d2bff 100%);
  border-color: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 20px -10px rgba(145,70,255,.65);
}
.rf-btn-twitch:hover { transform: translateY(-1px); filter: brightness(1.08); }

.rf-btn-entered {
  color: #6ee7b7;
  background: rgba(110,231,183,.08);
  border-color: rgba(110,231,183,.32);
  cursor: default;
}

/* ═══ PAST WINNERS GRID ═══ */
.rf-past { margin-top: 3rem; }
.rf-past-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
@media (min-width: 520px)  { .rf-past-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .rf-past-grid { grid-template-columns: repeat(4, 1fr); } }

.rf-past-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1rem 1.1rem;
  border-radius: 13px;
  background: linear-gradient(180deg, #14171c 0%, #0c0e12 100%);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .25s ease, transform .25s ease;
}
.rf-past-card:hover { border-color: rgba(255,216,74,.3); transform: translateY(-2px); }

.rf-past-kind {
  position: absolute;
  top: .65rem; right: .65rem;
  padding: .15rem .55rem;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.rf-past-kind-weekly {
  background: rgba(255,216,74,.12);
  color: var(--fr-yellow-soft);
  border: 1px solid rgba(255,216,74,.3);
}
.rf-past-kind-daily {
  background: rgba(56,189,248,.12);
  color: #7dd3fc;
  border: 1px solid rgba(56,189,248,.3);
}

.rf-past-prize {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: transparent;
  background: linear-gradient(180deg, #ffd84a 0%, #ffcb1f 100%);
  -webkit-background-clip: text; background-clip: text;
  font-variant-numeric: tabular-nums;
  margin-top: .3rem;
}
.rf-past-title {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 700;
  margin-bottom: .35rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rf-past-winner {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: .15rem;
  font-size: .9rem;
  color: #fff;
  font-weight: 700;
}
.rf-past-winner i { color: #ffd84a; font-size: .8rem; }
.rf-past-date {
  font-size: 10.5px;
  color: rgba(255,255,255,.4);
  margin-top: .3rem;
  font-variant-numeric: tabular-nums;
}
