/* ═══════════════════════════════════════════════════════════════════════════
   HASHIUTR — Purple Casino Theme
   Sleek dark violet design with vivid accents.
   Class names (mint, ink, surface, …) are preserved so JS + EJS still work,
   only colors/styling are remapped to purple.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg-0:        #22091a;          /* page background, near-black with subtle warm violet */
  --bg-1:        #2c0d1d;
  --bg-2:        #2f0f1f;
  --bg-3:        #371224;
  --surf-1:      #371224;          /* card surface — dark charcoal grey */
  --surf-2:      #43172d;          /* slightly lighter surface */
  --surf-3:      #22091a;          /* darker surface (sidebar bg) */
  --line:        rgba(255,255,255,.06);
  --line-strong: rgba(255,255,255,.12);

  --purple-50:   #fff1f6;
  --purple-100:  #ffe1ec;
  --purple-200:  #ffbdd4;
  --purple-300:  #ff94ba;
  --purple-400:  #ff6fa2;
  --purple-500:  #ff4f8b;   /* primary */
  --purple-600:  #e0336f;
  --purple-700:  #bb2359;
  --purple-800:  #9a1a48;
  --purple-900:  #7a123a;

  --accent-amber:#fbbf24;
  --accent-red:  #ef4444;
  --text:        #ffffff;
  --text-soft:   rgba(255,255,255,.72);
  --text-mute:   rgba(255,255,255,.55);
  --text-faint:  rgba(255,255,255,.4);
}

html, body {
  background: #22091a;
  color: var(--text);
  font-family: 'Sora', 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}
html { scroll-behavior: smooth; }

/* Clean-Tech-Grund (Hashi): ruhiges neutrales Dunkelgrau, ein sehr dezenter
   Mint-Schimmer oben — das geblurte Lila-Foto (bg.png) ist Geschichte. */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255,79,139,.05), transparent 70%),
    #22091a;
}
body::after { content: none; }
main, header, footer, section { position: relative; z-index: 1; }

/* ─── Surface (cards, panels) — neutral charcoal ───────────────────────── */
.surface {
  background: linear-gradient(180deg, #371224 0%, #2c0d1d 100%);
}

/* ─── Brand wordmark "hashi" with crown ─────────────────────────────── */
.brand-wordmark {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: lowercase;
  background: none;
  text-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: .1em;
}
.brand-light { color: #ffffff; }
.brand-accent { color: var(--purple-400); }
.brand-wordmark::after {
  content: '\f521'; /* fa-crown */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--purple-400);
  font-size: .55em;
  margin-left: .1em;
  margin-top: -.95em;
  transform: rotate(15deg);
  text-shadow: 0 0 12px rgba(62, 214, 163,.6);
}
.vt-logo:hover .brand-wordmark { opacity: .92; }

/* ─── Top nav links + active state ─────────────────────────────────────── */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .25rem;
  color: rgba(255,255,255,.7);
  position: relative;
  transition: color .15s ease;
}
.nav-link:hover { color: #fff; }
.nav-icon { color: rgba(255,255,255,.45); transition: color .15s ease; font-size: .85em; }
.nav-link:hover .nav-icon { color: var(--purple-300); }
.nav-link.nav-active { color: var(--purple-300); }
.nav-link.nav-active .nav-icon {
  color: var(--purple-400);
  text-shadow: 0 0 10px rgba(62, 214, 163,.6);
}
.nav-link.nav-active::after {
  content: '';
  position: absolute;
  left: .25rem; right: .25rem;
  bottom: -.5rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--purple-500) 50%, transparent 100%);
  box-shadow: 0 0 10px rgba(34, 192, 141,.7);
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn-mint {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem 1.1rem;
  border-radius: .7rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-700) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 4px 14px -4px rgba(23, 165, 120,.55),
    0 8px 24px -8px rgba(23, 165, 120,.45);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-mint:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,.22) inset,
    0 6px 18px -4px rgba(34, 192, 141,.7),
    0 12px 30px -10px rgba(34, 192, 141,.55);
}
.btn-mint:active { transform: translateY(0); filter: brightness(.97); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .55rem .95rem;
  border-radius: .7rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(62, 214, 163,.45); background: rgba(62, 214, 163,.08); }
.btn-ghost:active { background: rgba(62, 214, 163,.14); }

.btn-twitch {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .55rem .95rem;
  border-radius: .7rem;
  font-weight: 600;
  background: var(--purple-500);
  color: #0b1512;
  border: 1px solid rgba(255,255,255,.08);
  transition: background .15s ease, transform .15s ease;
}
.btn-twitch:hover { background: var(--purple-400); transform: translateY(-1px); color: #0b1512; }

.btn-red {
  background: linear-gradient(180deg, #f87171 0%, #dc2626 100%);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
}

/* ─── Topbar ───────────────────────────────────────────────────────────── */
header.sticky {
  background: rgba(13,14,16,.88) !important;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line) !important;
}

/* New site-header: glassy bg + gradient hairline + pill nav */
.site-header {
  background:
    linear-gradient(180deg, rgba(16,17,19,.94) 0%, rgba(13,14,16,.82) 100%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
          backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent !important;
  position: relative;
}
.site-header::after {
  /* gradient hairline beneath the header */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(34, 192, 141,.45) 20%, rgba(34, 192, 141,.55) 50%, rgba(34, 192, 141,.45) 80%, transparent 100%);
  pointer-events: none;
}

/* Logo image (HashiLogo.png — 550×199 transparent PNG) */
.brand-logo-img {
  display: block;
  height: 2.6rem;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(34, 192, 141,.35));
  transition: transform .2s ease, filter .2s ease;
}
@media (min-width: 768px) {
  .brand-logo-img { height: 3.15rem; }
}
.vt-logo:hover .brand-logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 18px rgba(34, 192, 141,.55));
}

/* Pill-style navigation */
.nav-pill-group { padding: .25rem; border-radius: 999px; }
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  background: transparent;
  border: 1px solid transparent;
  transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
  position: relative;
}
.nav-pill:hover {
  color: #fff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.05);
}
.nav-pill-icon {
  font-size: .78em;
  color: rgba(255,255,255,.45);
  transition: color .15s ease;
}
.nav-pill:hover .nav-pill-icon { color: var(--purple-300); }

.nav-pill.nav-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(34, 192, 141,.22) 0%, rgba(18, 138, 101,.16) 100%);
  border-color: rgba(34, 192, 141,.45);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 6px 18px -8px rgba(34, 192, 141,.6),
    0 0 0 1px rgba(34, 192, 141,.05);
}
.nav-pill.nav-active .nav-pill-icon {
  color: var(--purple-300);
  text-shadow: 0 0 10px rgba(62, 214, 163,.6);
}
.nav-pill.nav-active::after { display: none; }

/* ─── Hero stage (full-width banner with decorations + marble frame) ───── */
.top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-deck {
  width: 100%;
  padding: 2.5rem 0 .5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-deck { padding: 3rem 0 .75rem; }
}

.hero-stage {
  position: relative;
  isolation: isolate;
  padding: 1rem .5rem;
  max-width: 80rem;
  margin: 0 auto;
}

/* Floating dollar bills around the edges */
.hero-bill {
  position: absolute;
  width: 64px; height: 30px;
  background: linear-gradient(180deg, #a7f3d0, #15803d);
  border: 1px solid rgba(20,83,45,.7);
  border-radius: 3px;
  opacity: .8;
  z-index: 1;
  pointer-events: none;
}
.hero-bill::after {
  content: '$';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif;
  font-size: 14px; font-weight: 800;
  color: #14532d;
}
.hero-bill-1 { top: 8px;    left: 10%;  transform: rotate(-18deg); }
.hero-bill-2 { top: 12%;    left: 2%;   transform: rotate(10deg); width: 56px; height: 26px; }
.hero-bill-3 { top: 8px;    right: 12%; transform: rotate(15deg); }
.hero-bill-4 { bottom: 6%;  right: 4%;  transform: rotate(-10deg); width: 56px; height: 26px; }
.hero-bill-5 { bottom: 20%; right: 38%; transform: rotate(-25deg); width: 48px; height: 22px; opacity: .55; }

/* Left & right SVG decoration columns — sit on the dark background and overlap the cream frame */
.hero-left, .hero-right {
  position: absolute;
  top: 50%;
  width: 22%;
  max-width: 280px;
  aspect-ratio: 240/280;
  transform: translateY(-30%);
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.55));
}
.hero-left  { left: -3rem;  width: 36%; max-width: 460px; aspect-ratio: 3/2; }
.hero-right { right: -3rem; width: 36%; max-width: 460px; aspect-ratio: 3/2; }

/* Centered background image at the bottom of the hero — behind left/right and frame */
.hero-centerbg {
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%) translateY(173px);
  width: 120%;
  max-width: none;
  height: auto;
  pointer-events: none;
  z-index: 3;
  display: block;
  user-select: none;
}
@media (max-width: 767px) {
  .hero-centerbg { display: none; }
}
.hero-left svg, .hero-right svg { width: 100%; height: 100%; display: block; }
.hero-right-img,
.hero-left-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 767px) {
  .hero-left, .hero-right { display: none; }
  .hero-bill { display: none; }
}

/* The marble frame card itself */
.hero-frame {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 880px;
  padding: 1.4rem 1.5rem 1.6rem;
  text-align: center;
  color: #1a0e2f;
  background:
    /* dark fine veins */
    repeating-linear-gradient(118deg, transparent 0 38px, rgba(80,60,110,.08) 38px 39px, transparent 39px 76px),
    repeating-linear-gradient(28deg, transparent 0 54px, rgba(120,90,160,.06) 54px 55px, transparent 55px 110px),
    repeating-linear-gradient(72deg, transparent 0 90px, rgba(60,40,90,.05) 90px 91px, transparent 91px 180px),
    /* soft purple blooms */
    radial-gradient(ellipse 55% 38% at 18% 20%, rgba(168,85,247,.14) 0%, transparent 60%),
    radial-gradient(ellipse 48% 32% at 82% 78%, rgba(23, 165, 120,.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(62, 214, 163,.10) 0%, transparent 55%),
    /* base marble gradient */
    linear-gradient(180deg, #fbfaff 0%, #f1ecfa 55%, #e7dff5 100%);
  /* Chamfered top-left & top-right corners */
  clip-path: polygon(
    32px 0,
    calc(100% - 32px) 0,
    100% 32px,
    100% 100%,
    0 100%,
    0 32px
  );
  filter:
    drop-shadow(0 0 12px rgba(244,215,122,1))
    drop-shadow(0 0 28px rgba(212,175,55,.95))
    drop-shadow(0 0 60px rgba(244,215,122,.7))
    drop-shadow(0 26px 60px rgba(23, 165, 120,.45))
    drop-shadow(0 10px 30px rgba(0,0,0,.5));
  animation: hero-rise .6s cubic-bezier(.34,1.56,.64,1) backwards;
}
.hero-frame::before {
  /* Solid gold layer — visible as a chamfered ring once ::after is laid on top */
  content: '';
  position: absolute;
  inset: 14px;
  pointer-events: none;
  background: linear-gradient(135deg, #f4d77a 0%, #c79a31 45%, #a87c1c 65%, #d4af37 90%, #f0cf6a 100%);
  clip-path: polygon(
    20px 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    0 100%,
    0 20px
  );
  z-index: 0;
}
.hero-frame::after {
  /* Inner marble layer — 2px inside gold on top/left/right, flush at bottom (no bottom border) */
  content: '';
  position: absolute;
  inset: 16px 16px 14px 16px;
  pointer-events: none;
  background:
    repeating-linear-gradient(118deg, transparent 0 38px, rgba(80,60,110,.08) 38px 39px, transparent 39px 76px),
    repeating-linear-gradient(28deg, transparent 0 54px, rgba(120,90,160,.06) 54px 55px, transparent 55px 110px),
    radial-gradient(ellipse 55% 38% at 18% 20%, rgba(168,85,247,.10) 0%, transparent 60%),
    radial-gradient(ellipse 48% 32% at 82% 78%, rgba(23, 165, 120,.10) 0%, transparent 60%),
    linear-gradient(180deg, #fbfaff 0%, #f1ecfa 55%, #e7dff5 100%);
  clip-path: polygon(
    18px 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    0 100%,
    0 18px
  );
  z-index: 0;
}
.hero-frame > * { position: relative; z-index: 1; }
@media (min-width: 768px) {
  .hero-frame { padding: 1.65rem 3.5rem 1.85rem; }
}
@keyframes hero-rise {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Ornate corner accents — removed (replaced by gold inner border on .hero-frame) */
.hero-corner { display: none; }

.hero-stars {
  font-size: .9rem;
  letter-spacing: .55em;
  color: var(--purple-600);
  margin: 0 0 .5rem;
}
.hero-eyebrow {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 2rem);
  line-height: 1;
  color: #0e0820;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-top: 21px;
}
h1.hero-headline {
  font-family: 'Cinzel', 'Times New Roman', Times, serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: .95;
  letter-spacing: .01em;
  margin: .05em 0 .35em;
  background: linear-gradient(180deg, #c4b5fd 0%, #ff4f8b 35%, #bb2359 65%, #2e1065 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-transform: uppercase;
  filter: drop-shadow(0 2px 0 rgba(255,255,255,.6));
}

.hero-doa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: .15rem auto .85rem;
}
.hero-doa-dash {
  flex: 1 1 0;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(76,29,149,.7) 50%, transparent 100%);
  position: relative;
}
.hero-doa-dash::before, .hero-doa-dash::after {
  content: '◆';
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--purple-600);
  font-size: .55rem;
}
.hero-doa-dash::before { left: -10px; }
.hero-doa-dash::after  { right: -10px; }
.hero-doa-text {
  font-family: 'Cinzel', 'Sora', serif;
  font-weight: 700;
  font-size: clamp(.85rem, 1.5vw, 1.05rem);
  letter-spacing: .42em;
  color: #1a0e2f;
  text-transform: uppercase;
}

.hero-sub {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(.7rem, 1.05vw, .8rem);
  color: rgba(26,14,47,.78);
  margin: 0 auto 1.2rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}
.hero-actions .btn-mint {
  padding: .85rem 1.6rem;
  font-size: .95rem;
  border-radius: .6rem;
  font-weight: 700;
}
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem;
  font-size: .95rem;
  border-radius: .6rem;
  font-weight: 700;
  background: #0e0820;
  color: #fff;
  border: 1px solid #0e0820;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,.55);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-dark:hover { background: #1a0e2f; border-color: var(--purple-500); transform: translateY(-1px); }

/* ─── Mobile hero polish ─── */
@media (max-width: 640px) {
  .hero-stage  { padding: .75rem .25rem; position: relative; }
  .hero-frame  { padding: 1rem .9rem 1.2rem; }
  h1.hero-headline { font-size: clamp(2.4rem, 13vw, 3.6rem); letter-spacing: .005em; }
  .hero-eyebrow    { font-size: clamp(.95rem, 4.2vw, 1.4rem); }
  .hero-doa        { gap: .5rem; margin: .1rem auto .7rem; }
  .hero-doa-dash   { max-width: 48px; }
  .hero-doa-text   { font-size: .78rem; letter-spacing: .35em; }
  .hero-sub        { font-size: .7rem; letter-spacing: .14em; padding: 0 .25rem; margin-bottom: 1rem; }

  /* Buttons stacked, narrower column so left/right images stay visible */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 200px;
    margin: 0 auto;
    gap: .5rem;
    position: relative;
    z-index: 4;
  }
  .hero-actions .btn-mint,
  .hero-actions .btn-dark { padding: .75rem 1rem; font-size: .88rem; width: 100%; }

  /* Re-enable left/right hero images — flank the stacked buttons */
  .hero-left, .hero-right {
    display: block;
    top: auto;
    bottom: -1rem;
    width: 57%;
    max-width: 220px;
    aspect-ratio: 3/2;
    z-index: 3;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.45));
  }
  .hero-left  { left: -1rem; bottom: -2.5rem; transform: translateX(-75px); }
  .hero-right { right: -1rem; bottom: -2.5rem; transform: translateX(54px); }
}

/* Disable any legacy hero artifacts */
.hero-bg, .hero-bg::before, .hero-bg::after { display: none !important; }
.nail { display: none !important; }
.wanted, .wanted-title, .wanted-doa, .wanted-sub, .wanted-actions { all: unset; }

/* ─── Slim FILTER BAR — sits above the casino list, full container width ── */
.filter-bar {
  margin: 0 0 1.1rem;
  padding: .65rem .85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28,26,37,.78) 0%, rgba(22,20,29,.78) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  position: relative;
  z-index: 5;
}
.filter-bar-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.filter-bar-actions {
  gap: .4rem;
}
.filter-bar-spacer { flex: 1 1 auto; }

/* Chips inside the Kategorie popover */
.filter-pop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.filter-pop-chips .chip {
  padding: .42rem .7rem;
  font-size: .78rem;
  border-radius: 999px;
}

.filter-count {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 0 .25rem;
}
.filter-count #result-count { color: #fff; font-size: .85rem; }
.filter-count-label { color: var(--text-mute); }

/* Popover trigger button */
.filter-pop-wrap { position: relative; }
.filter-pop-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
}
.filter-pop-btn:hover {
  color: #fff;
  border-color: rgba(62, 214, 163,.35);
  background: rgba(34, 192, 141,.06);
}
.filter-pop-wrap.open > .filter-pop-btn {
  color: #fff;
  border-color: var(--purple-500);
  background: rgba(34, 192, 141,.12);
}
.filter-pop-wrap.open > .filter-pop-btn i.fa-chevron-down {
  transform: rotate(180deg);
}
.filter-pop-btn i { transition: transform .15s ease; color: var(--text-mute); }
.filter-pop-wrap.open > .filter-pop-btn i { color: var(--purple-300); }

/* Active-count badge */
.filter-pop-count {
  display: none;
  min-width: 1.1rem; height: 1.1rem;
  padding: 0 .35rem;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  background: var(--purple-500);
  color: #fff;
  align-items: center; justify-content: center;
  line-height: 1;
}
.filter-pop-count.on { display: inline-flex; }

/* Popover panel */
.filter-pop {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 220px;
  padding: .8rem .85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #371224 0%, #2c0d1d 100%);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.65), 0 2px 8px rgba(0,0,0,.35);
  z-index: 30;
  opacity: 0;
  transform: translateY(-4px) scale(.98);
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
}
.filter-pop-wrap.open > .filter-pop {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.filter-pop-wide { min-width: 360px; }
.filter-pop-title {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 .55rem;
  padding: 0 .2rem;
}
.filter-pop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .15rem .65rem;
}
.filter-pop .check { padding: .35rem .25rem; font-size: .82rem; }
.filter-pop .pay-row { font-size: .78rem; }

/* Filter bar Sort + Reset */
.sort-select-bar {
  padding: .4rem 1.85rem .4rem .7rem;
  font-size: .78rem;
  border-radius: 999px;
}
.filter-reset {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .65rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-mute);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.filter-reset:hover {
  color: var(--purple-200);
  border-color: rgba(62, 214, 163,.25);
  background: rgba(34, 192, 141,.06);
}

/* Mobile tweaks for filter bar */
@media (max-width: 767px) {
  .filter-bar { padding: .65rem .55rem; }
  .filter-bar-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: .15rem;
    margin: 0 -.25rem;
    padding-left: .25rem;
    padding-right: .25rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .filter-bar-chips::-webkit-scrollbar { display: none; }
  .filter-bar-chips .chip { flex-shrink: 0; }
  .filter-bar-actions {
    gap: .35rem;
    justify-content: space-between;
  }
  .filter-pop { left: auto; right: 0; min-width: 240px; }
  .filter-pop-wide { min-width: min(360px, calc(100vw - 2rem)); }
}

/* ─── Filter sidebar shell (legacy — kept for safety, no longer used) ──── */
.sidebar-shell {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28,26,37,.85) 0%, rgba(22,20,29,.85) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: hidden;
}

/* ─── Results shell (legacy — no longer used in new layout) ────────────── */
.results-shell {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28,26,37,.85) 0%, rgba(22,20,29,.85) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1.25rem 1.1rem;
}
.sidebar-scroll {
  overflow-y: auto;
  padding: 1.25rem 1.1rem;
}
.filter-group + .filter-group { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.filter-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 .75rem;
}
.pay-more-btn {
  margin-top: .35rem;
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem;
  color: var(--purple-300);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: .3rem .55rem;
}
.pay-more-btn:hover { color: var(--purple-200); }
/* Kleine Logo-Chips in den Filter-Popover-Reihen (dunkler Hintergrund → weißer Chip) */
.pay-brand-img {
  height: 20px; width: 34px; flex-shrink: 0;
  object-fit: contain;
  background: #fff; border-radius: 5px;
  padding: 1px 2px;
}
.pay-brand-img[src$=".svg"],
.pay-brand-img[src$=".png"] { padding: 5px 5px; }
.pay-row { padding: .35rem .25rem; font-size: .82rem; }
@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(34, 192, 141,.35); border-radius: 999px; }
.sidebar-scroll::-webkit-scrollbar-thumb:hover { background: rgba(34, 192, 141,.6); }
.sidebar-scroll { scrollbar-width: thin; scrollbar-color: rgba(34, 192, 141,.35) transparent; }

/* sidebar headlines */
.sidebar-shell summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 0;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.sidebar-shell summary::-webkit-details-marker { display: none; }
.sidebar-shell summary .chev { transition: transform .2s ease; color: var(--purple-400); }
.sidebar-shell details[open] summary .chev { transform: rotate(90deg); }

/* ─── Chips (quick filters) ────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .75rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-soft);
  transition: all .15s ease;
  user-select: none;
}
.chip i { font-size: .85rem; color: var(--text-mute); }
.chip:hover {
  color: #fff;
  border-color: rgba(62, 214, 163,.35);
  background: rgba(34, 192, 141,.06);
}
.chip.active {
  background: rgba(34, 192, 141,.12);
  border-color: var(--purple-500);
  color: #fff;
}
.chip.active i { color: var(--purple-300); }

/* ─── Checkboxes (classic square) ──────────────────────────────────────── */
.check {
  display: flex; align-items: center; gap: .65rem;
  padding: .4rem .3rem;
  border-radius: .5rem;
  cursor: pointer;
  font-size: .85rem;
  color: var(--text-soft);
  transition: color .15s ease;
  user-select: none;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
}
.check:hover { color: #fff; }
.check .box {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .15s ease;
}
.check:hover .box { border-color: var(--purple-400); }
.check.active .box {
  background: var(--purple-500);
  border-color: var(--purple-500);
}
.check.active .box::after {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: #fff;
  font-size: .65rem;
}
.check.active { color: #fff; }

/* ─── Sort select ──────────────────────────────────────────────────────── */
.sort-select {
  appearance: none;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: #fff;
  padding: .55rem 2rem .55rem .85rem;
  border-radius: .55rem;
  font-size: .875rem;
  cursor: pointer;
  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='%233ed6a3' d='M6 8L2 4h8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right .65rem center;
}
.sort-select:focus { outline: none; border-color: var(--purple-500); }
.sort-select option { background: var(--bg-2); color: #fff; }
.sort-select option:checked { background: var(--purple-600); color: #fff; }

/* ─── Casino card ──────────────────────────────────────────────────────── */
.casino-row { position: relative; display: block; width: 100%; }
.casino-row + .casino-row { margin-top: 1rem; }

.card {
  position: relative;
  background:
    linear-gradient(180deg, #1e1b29 0%, #16131e 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 1px 2px rgba(0,0,0,.4);
}
.card::before {
  /* subtle top hairline */
  content: '';
  position: absolute; left: 56px; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.10) 30%, rgba(255,255,255,.10) 70%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.card:hover {
  border-color: rgba(34, 192, 141,.4);
  box-shadow:
    0 0 0 1px rgba(34, 192, 141,.12),
    0 18px 40px -14px rgba(0,0,0,.7),
    0 28px 70px -28px rgba(23, 165, 120,.32);
  transform: translateY(-2px);
}

/* soft purple wash behind the logo area only — subtle accent */
.card-glow {
  position: absolute;
  top: 0; left: 0;
  width: 38%; height: 100%;
  background:
    radial-gradient(ellipse 60% 90% at 0% 50%, rgba(34, 192, 141,.22) 0%, rgba(23, 165, 120,.06) 45%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}

/* Card main flex layout */
.card-main {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.25rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
@media (min-width: 768px) {
  .card-main { padding: 1.25rem 1.65rem 1.3rem; gap: 1.5rem; }
}
.card-logo { flex-shrink: 0; align-self: center; }
.card-cta  { align-self: center; }

.card-center {
  flex: 1 1 0;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: 0;
  justify-content: center;
}
.card-pills { flex-shrink: 0; }
.card-stats {
  margin-top: 0;
  margin-bottom: 0;
}
.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center;
  height: 24px;
  padding: 0 .7rem;
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.pill-sticky {
  background: linear-gradient(180deg, #e0336f 0%, #9a1a48 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 4px 10px -2px rgba(0,0,0,.55),
    0 8px 18px -6px rgba(0,0,0,.45);
}
.pill-nodep {
  background: #ffe1ec;
  color: #7a123a;
  border: 1px solid #ffbdd4;
  box-shadow:
    0 1px 0 rgba(255,255,255,.65) inset,
    0 4px 14px -2px rgba(34, 192, 141,.55),
    0 10px 24px -6px rgba(34, 192, 141,.45);
}

.card-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(.75rem, 2.5vw, 1.6rem);
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  /* subtle vertical dividers between stats */
  .card-stats .stat + .stat {
    padding-left: clamp(.75rem, 2.5vw, 1.6rem);
    border-left: 1px solid rgba(255,255,255,.06);
  }
}
.stat { text-align: left; min-width: 0; }
.stat-bonus {
  display: flex; align-items: baseline; gap: .55rem;
}
.stat-bonus .stat-value { font-size: clamp(1.5rem, 2.9vw, 2.05rem); }
.stat-bis {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.stat-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: .25rem;
}
.stat-value {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1;
  color: var(--purple-300);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(34, 192, 141,.25);
  white-space: nowrap; /* mehrteilige Werte ("40x B") nicht umbrechen — hält die Stats in einer Linie */
}
.stat-bonus .stat-value {
  background: linear-gradient(180deg, #d6c1ff 0%, var(--purple-300) 55%, var(--purple-500) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.25));
}
.stat-value-dark {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap; /* mehrteilige Werte ("40x B") nicht umbrechen — hält die Stats in einer Linie */
}

.card-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: stretch;
  width: 9.5rem;
  min-width: 9.5rem;
}
.btn-play {
  padding: .65rem .9rem;
  font-size: .88rem;
  border-radius: .65rem;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* Favorite heart button top-right */
.fav-btn {
  position: absolute;
  top: .8rem; right: .9rem;
  z-index: 4;
  width: 2rem; height: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
  font-size: 1.05rem;
}
.fav-btn:hover { color: var(--purple-200); transform: scale(1.1); }
.fav-btn.active { color: #f472b6; }
.fav-btn.active i::before { content: '\f004'; font-weight: 900; }

/* Card footer */
.card-foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.012);
  padding: .7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .card-foot { padding: .75rem 1.65rem; }
}
.pay-row-foot {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  min-width: 0;
}
.pay-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* Mobile tweaks */
@media (max-width: 767px) {
  .card-main { flex-direction: column; align-items: stretch; }
  .card-logo { display: flex; justify-content: center; }
  .fav-btn { top: .6rem; right: .6rem; }
  .card-glow { display: none; }

  /* Gestapelt statt gequetscht: Badges → Bonus → Freispiele/Max.Bet/Wager.
     Kein translateY (verdeckte die Stat-Labels mit den Badges). */
  .card-center { gap: .85rem; }
  .card-stats {
    transform: none;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: .9rem;
    column-gap: .6rem;
  }
  /* Bonus alleine in Zeile 1, zentriert & größer (schlägt Desktop-Leak) */
  .stat-bonus { flex: 1 1 100% !important; justify-content: center; }
  .stat-bonus .stat-value { font-size: clamp(1.8rem, 8vw, 2.4rem) !important; }
  .stat-bonus .stat-bis { font-size: .78rem; }
  .card-stats .stat:not(.stat-bonus) { flex: 1 1 0; text-align: center; padding: 0 .35rem; }
  .card-stats .stat:not(.stat-bonus) + .stat:not(.stat-bonus) {
    border-left: 1px solid rgba(255,255,255,.06);
  }

  /* Buttons full width auf Mobile (User-Wunsch) */
  .card-cta { width: 100%; min-width: 0; }
  .btn-play, .code-box { width: 100%; box-sizing: border-box; }
  .btn-play { justify-content: center; }
}

/* ─── Rank flag ─ SVG ribbon ────────────────────────────────────────────── */
.rank-flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 64px;
  height: 50px;
  pointer-events: none;
  display: block;
  padding: 0;
  background: linear-gradient(160deg, #ff94ba 0%, #ff4f8b 38%, #e0336f 72%, #9a1a48 100%);
  -webkit-mask: url(/img/ribbon.svg) no-repeat top left / 100% 100%;
          mask: url(/img/ribbon.svg) no-repeat top left / 100% 100%;
  filter: drop-shadow(0 4px 10px rgba(15, 110, 81, .45));
}
.rank-flag-text {
  position: absolute;
  top: 7px;
  left: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
  letter-spacing: -.02em;
}
.rank-flag::before, .rank-flag::after { display: none !important; content: none; }

/* ─── Logo block (casino logos) ────────────────────────────────────────── */
.logo-block {
  width: 6rem; height: 6rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(34, 192, 141,.08) 100%);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04);
}
@media (min-width: 768px) {
  .logo-block { width: 7.5rem; height: 7.5rem; border-radius: 1.1rem; }
}
.logo-icon {
  color: var(--purple-300);
  font-size: 2.4rem;
  filter: drop-shadow(0 2px 6px rgba(34, 192, 141,.32));
}
@media (min-width: 768px) { .logo-icon { font-size: 3rem; } }
.logo-block img.logo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* ─── Stars (rating) ───────────────────────────────────────────────────── */
.stars { display: inline-flex; align-items: center; gap: 1px; vertical-align: middle; }
.stars i, .stars svg { color: var(--purple-300); font-size: .62rem; width: .62rem; height: .62rem; }
.stars i.empty, .stars svg.empty { color: rgba(255,255,255,.18); }

/* ─── Bonus / casino number colors (text-mint-* utilities) ─────────────── */
.text-mint-300, .text-mint-400, .text-mint-500 { color: var(--purple-300) !important; }
.text-mint-600, .text-mint-700                 { color: var(--purple-400) !important; }
.bg-mint-500                                   { background-color: var(--purple-500) !important; }
.bg-mint-400                                   { background-color: var(--purple-400) !important; }
.border-mint-500, .border-mint-400, .border-mint-300 { border-color: var(--purple-500) !important; }
.ring-mint-500\/40                             { --tw-ring-color: rgba(34, 192, 141,.4) !important; }

.bg-mint-500\/10  { background-color: rgba(34, 192, 141,.10) !important; }
.bg-mint-500\/15  { background-color: rgba(34, 192, 141,.15) !important; }
.bg-mint-500\/5   { background-color: rgba(34, 192, 141,.05) !important; }
.bg-mint-500\/20  { background-color: rgba(34, 192, 141,.20) !important; }
.bg-mint-500\/\[.04\] { background-color: rgba(34, 192, 141,.04) !important; }

.border-mint-500\/15  { border-color: rgba(34, 192, 141,.15) !important; }
.border-mint-500\/20  { border-color: rgba(34, 192, 141,.20) !important; }
.border-mint-500\/25  { border-color: rgba(34, 192, 141,.25) !important; }
.border-mint-500\/30  { border-color: rgba(34, 192, 141,.30) !important; }
.border-mint-500\/40  { border-color: rgba(34, 192, 141,.40) !important; }
.border-mint-500\/45  { border-color: rgba(34, 192, 141,.45) !important; }
.border-mint-500\/50  { border-color: rgba(34, 192, 141,.50) !important; }
.border-mint-500\/60  { border-color: rgba(34, 192, 141,.60) !important; }

.hover\:text-mint-300:hover, .hover\:text-mint-400:hover, .hover\:text-mint-500:hover {
  color: var(--purple-300) !important;
}
.hover\:border-mint-500\/40:hover, .hover\:border-mint-500\/50:hover {
  border-color: var(--purple-500) !important;
}

/* Mint shimmer gradient on hero (kept class names) */
.text-shimmer, .text-mint-grad {
  background: linear-gradient(135deg, var(--purple-300) 0%, var(--purple-600) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ─── Sticky/Non-Sticky pill, no-deposit pill — color overrides ────────── */
/* Sticky-Bonus chip — bright purple solid */
[title*="Sticky"], .chip[data-value="sticky"] {}
.card .text-amber-200,
.card .text-amber-300 { color: var(--purple-200) !important; }

/* Chip-like badge in cards: keep purple theme */
.card .border-amber-400\/45,
.card .border-amber-500\/40 { border-color: rgba(192,132,252,.45) !important; }
.card .bg-amber-400\/10,
.card .bg-amber-500\/15 { background-color: rgba(192,132,252,.10) !important; }

/* ─── Bonus-Code box — pulsing purple glow ─────────────────────────────── */
@keyframes code-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(34, 192, 141,.45), 0 0 14px -2px rgba(34, 192, 141,.3); border-color: rgba(34, 192, 141,.55); }
  50%      { box-shadow: 0 0 0 1px rgba(34, 192, 141,.75), 0 0 22px -2px rgba(34, 192, 141,.6);  border-color: rgba(34, 192, 141,.85); }
}
/* Bonus-Code tag — horizontal, sits under the Play button */
.code-box {
  position: relative;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  padding: 0 .55rem;
  border-radius: .5rem;
  background: rgba(34, 192, 141,.08);
  border: 1px dashed rgba(34, 192, 141,.5);
  color: var(--purple-200);
  font-family: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
button.code-box { font: inherit; }
.code-box:hover {
  background: rgba(34, 192, 141,.14);
  border-color: rgba(34, 192, 141,.75);
  color: #fff;
}
.code-box-tag {
  font-size: .65rem;
  color: var(--purple-300);
  transition: color .15s ease;
}
.code-box:hover .code-box-tag { color: var(--purple-200); }
.code-box-value {
  font-size: .82rem;
  font-weight: 800;
  color: var(--purple-200);
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 1 auto;
  min-width: 0;
}
.code-box:hover .code-box-value { color: #fff; }
.code-box-copy-ico {
  font-size: .7rem;
  color: rgba(62, 214, 163,.7);
  margin-left: .15rem;
  transition: color .15s ease;
}
.code-box:hover .code-box-copy-ico { color: var(--purple-200); }

/* Empty placeholder — same height, neutral styling, no hover */
.code-box-empty {
  background: rgba(255,255,255,.02);
  border-style: dashed;
  border-color: rgba(255,255,255,.08);
  cursor: default;
}
.code-box-empty .code-box-value {
  color: rgba(255,255,255,.3);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: none;
}
.code-box-empty:hover {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.08);
  color: inherit;
}

/* ─── Details toggle (text link, no background) ───────────────────────── */
.details-toggle {
  background: transparent;
  border: none;
  color: var(--purple-300) !important;
  font-weight: 600;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  cursor: pointer;
  padding: .25rem .35rem;
  transition: color .15s ease, transform .15s ease;
}
.details-toggle:hover {
  color: var(--purple-200) !important;
  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; }

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

/* ─── Casino Detail-Dropdown (Hashi redesign) ───────────────────────────── */
.rd-shell {
  position: relative;
  padding: 1.1rem 1.25rem 1.25rem;
  background:
    radial-gradient(ellipse 60% 70% at 0% 0%, rgba(34, 192, 141,.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15,12,22,.6) 0%, rgba(11,9,17,.6) 100%);
  border-top: 1px solid rgba(255,255,255,.05);
}
@media (min-width: 768px) {
  .rd-shell { padding: 1.4rem 1.65rem 1.55rem; }
}
.rd-shell::before {
  /* purple accent strip on the left edge */
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--purple-400) 0%, var(--purple-700) 100%);
  box-shadow: 0 0 14px rgba(34, 192, 141,.55);
}

/* Info strip — one horizontal row, dividers between cells */
.rd-info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .4rem .8rem;
  padding: .75rem 0 1rem;
  border-bottom: 1px dashed rgba(255,255,255,.07);
  margin-bottom: 1rem;
}
.rd-info {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .65rem;
  row-gap: .1rem;
  align-items: center;
  min-width: 0;
}
@media (min-width: 768px) {
  .rd-info-strip {
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 0;
    padding: 0 0 1.1rem;
    margin-bottom: 1.1rem;
  }
  .rd-info + .rd-info {
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,.07);
  }
  .rd-info-strip > .rd-info {
    padding-right: 1rem;
  }
  /* Wager (mobile-only marker) stays hidden on desktop — already in stats row */
  .rd-info-strip > .rd-info-mobile { display: none; }
}
.rd-info-ico {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 2rem; height: 2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34, 192, 141,.18) 0%, rgba(23, 165, 120,.06) 100%);
  border: 1px solid rgba(34, 192, 141,.3);
  color: var(--purple-300);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.rd-info-label {
  grid-row: 1; grid-column: 2;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1;
}
.rd-info-value {
  grid-row: 2; grid-column: 2;
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.rd-info-value.tabular { font-variant-numeric: tabular-nums; }

/* Two-column grid: Vorteile / Zahlungsanbieter */
.rd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
@media (min-width: 768px) {
  .rd-grid { grid-template-columns: 1.4fr 1fr; gap: 1.1rem; }
}

.rd-block {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,.01) 100%);
  padding: .9rem 1rem 1rem;
}
.rd-pros {
  border-color: rgba(34, 192, 141,.18);
  background:
    radial-gradient(ellipse 80% 100% at 0% 0%, rgba(34, 192, 141,.07) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,.01) 100%);
}
.rd-block-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .7rem;
}
.rd-block-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--purple-400);
  box-shadow: 0 0 10px rgba(34, 192, 141,.7);
}

.rd-pros-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem .8rem;
  font-size: .85rem;
  color: rgba(255,255,255,.88);
  list-style: none;
  padding: 0; margin: 0;
}
@media (min-width: 640px) {
  .rd-pros-list { grid-template-columns: 1fr 1fr; }
}
.rd-pros-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  line-height: 1.35;
}
.rd-pros-check {
  width: 1.05rem; height: 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-700) 100%);
  color: #fff;
  font-size: .58rem;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
  box-shadow: 0 0 10px rgba(34, 192, 141,.35);
}

.rd-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

/* ─── Payment icons (rounded white tiles like a wallet) ────────────────── */
.pay-icon {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px; min-width: 44px;
  padding: 0 .55rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.85);
  color: #1f2937;
  font-size: 1.05rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  transition: transform .15s ease;
}
.pay-icon:hover { transform: translateY(-1px); }
/* Echte Zahlungsanbieter-Logos im weißen Tile.
   .webp-Logos (aus iskonew) haben eingebauten Weißrand → größer rendern;
   SVG/PNG-Logos sind randlos beschnitten → kleiner, damit sie optisch gleich wirken. */
.pay-icon.img { padding: 0 .4rem; }
.pay-icon.img img {
  height: 26px; width: auto; max-width: 64px;
  object-fit: contain; display: block;
}
.pay-icon.img img[src$=".svg"],
.pay-icon.img img[src$=".png"] { height: 13px; max-width: 56px; margin: 0 3px; }
.pay-icon.text {
  font-size: .65rem; font-weight: 700; letter-spacing: .03em;
  padding: 0 .5rem;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid var(--line);
}
.pay-icon.text[title="Klarna"]            { color: #ffa8cd; border-color: rgba(255,168,205,.5); background: rgba(255,168,205,.10); }
.pay-icon.text[title="Sofort"],
.pay-icon.text[title="Sofortüberweisung"] { color: #ff8a3d; border-color: rgba(255,138,61,.5); background: rgba(255,138,61,.10); }
.pay-icon.text[title="Trustly"]           { color: #4ade80; border-color: rgba(74,222,128,.5); background: rgba(74,222,128,.10); }
.pay-icon.text[title="Skrill"]            { color: #c084fc; border-color: rgba(192,132,252,.5); background: rgba(192,132,252,.10); }
.pay-icon.text[title="Neteller"]          { color: #4ade80; border-color: rgba(74,222,128,.5); background: rgba(74,222,128,.10); }

/* ─── Notification / user / mobile menu panels ─────────────────────────── */
#notif-panel, #user-menu, #mobile-sidebar {
  background: linear-gradient(180deg, #371224 0%, #2c0d1d 100%) !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.7) !important;
}

/* ─── Mobile nav links ─────────────────────────────────────────────────── */
.mobile-nav-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem .8rem;
  border-radius: .55rem;
  font-size: .95rem;
  color: var(--text-soft);
  transition: background .15s ease, color .15s ease;
}
.mobile-nav-link:hover { background: rgba(34, 192, 141,.08); color: #fff; }
.mobile-nav-link i { color: var(--purple-400) !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) */
#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; }

/* ─── Footer ───────────────────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, #2c0d1d 0%, #0b0a10 100%) !important;
  border-top: 1px solid var(--line) !important;
}

/* ─── Skeleton loaders ─────────────────────────────────────────────────── */
.skel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #371224 0%, #2c0d1d 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.skel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 192, 141,.08), 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,.05); border-radius: .35rem; height: 12px; }
.skel-bar.lg { height: 18px; }
.skel-bar.xl { height: 28px; }

/* ─── Empty state ──────────────────────────────────────────────────────── */
#empty-state {
  background: linear-gradient(180deg, #371224 0%, #2c0d1d 100%);
  border: 1px solid var(--line);
  color: var(--text-soft);
}
#empty-state i { color: var(--purple-400) !important; }

/* ─── Scrollbar (page) ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: rgba(34, 192, 141,.35); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(34, 192, 141,.6); }

/* ─── Typography ───────────────────────────────────────────────────────── */
.font-display, .font-display * { font-family: 'Sora', 'Space Grotesk', system-ui, sans-serif; }
h1, h2, h3, .h-display { font-family: 'Sora', system-ui, sans-serif; letter-spacing: -.02em; color: #fff; }
h1 { font-weight: 800; }
h2, h3 { font-weight: 700; }

.tabular, .row-bonus, .row-meta, .stars + span { font-variant-numeric: tabular-nums; }

.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, var(--purple-400) 0%, var(--purple-700) 100%);
  box-shadow: 0 0 12px rgba(34, 192, 141,.5);
}

/* selection / focus */
::selection { background: rgba(34, 192, 141,.4); color: #fff; }
:focus-visible { outline: 2px solid var(--purple-500); outline-offset: 2px; border-radius: 4px; }
button:focus-visible, a:focus-visible { outline-offset: 3px; }

/* View transitions */
@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; } }
.vt-logo { view-transition-name: logo; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  .wanted, .card { animation: none; }
}

/* micro-polish */
a, button, [role="button"], input[type="submit"], .btn-mint, .btn-ghost, .btn-twitch, .btn-red {
  touch-action: manipulation;
}

/* ─── Race podium fallback (still uses podium-* classes) ───────────────── */
.podium-card {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: .85rem; 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,.08) 50%, transparent 65%);
  transform: translateX(-110%);
  animation: rank-shine 4.5s ease-in-out infinite;
}
@keyframes rank-shine {
  0%        { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}
.podium-1 {
  background:
    linear-gradient(180deg, rgba(245,158,11,.18) 0%, rgba(217,119,6,.06) 55%, rgba(217,119,6,.02) 100%),
    linear-gradient(135deg, #1f1238, #110823);
  border: 1px solid rgba(245,158,11,.5);
  box-shadow: 0 12px 32px -10px rgba(245,158,11,.3), inset 0 1px 0 rgba(255,255,255,.06);
}
.podium-rank-1 { color: #fde68a; }
.podium-prize-1 {
  background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(217,119,6,.08));
  border: 1px solid rgba(245,158,11,.55); color: #fde68a;
}
.podium-2 {
  background:
    linear-gradient(180deg, rgba(220,228,236,.14) 0%, rgba(150,162,176,.04) 55%, rgba(150,162,176,.02) 100%),
    linear-gradient(135deg, #1f1238, #110823);
  border: 1px solid rgba(220,225,232,.4);
  box-shadow: 0 12px 32px -10px rgba(200,210,220,.2), inset 0 1px 0 rgba(255,255,255,.06);
}
.podium-rank-2 { color: #eaf0f5; }
.podium-prize-2 {
  background: linear-gradient(135deg, rgba(220,228,236,.18), rgba(150,162,176,.06));
  border: 1px solid rgba(220,228,236,.5); color: #eaf0f5;
}
.podium-3 {
  background:
    linear-gradient(180deg, rgba(217,119,6,.16) 0%, rgba(120,53,15,.06) 55%, rgba(120,53,15,.02) 100%),
    linear-gradient(135deg, #1f1238, #110823);
  border: 1px solid rgba(217,119,6,.45);
  box-shadow: 0 12px 32px -10px rgba(180,120,60,.22), inset 0 1px 0 rgba(255,255,255,.05);
}
.podium-rank-3 { color: #fcd9b8; }
.podium-prize-3 {
  background: linear-gradient(135deg, rgba(217,119,6,.2), rgba(120,53,15,.08));
  border: 1px solid rgba(217,119,6,.5); color: #fcd9b8;
}

/* ─── Trust dock (below casino list, collapsible) ───────────────────────── */
.trust-dock {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 2rem));
  z-index: 50;
  padding-bottom: 1rem;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none; /* let children opt in */
}
.trust-dock > * { pointer-events: auto; }
.trust-dock.collapsed {
  /* Slide bar fully out of view; only the toggle handle remains visible above */
  transform: translateX(-50%) translateY(calc(100% - 1rem));
}

.trust-toggle {
  position: absolute;
  top: -.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.4rem; height: 1.6rem;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(28,26,37,.95) 0%, rgba(22,20,29,.95) 100%);
  border: 1px solid var(--line);
  border-bottom-color: transparent;
  color: var(--text-soft);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 -6px 18px -8px rgba(0,0,0,.55);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
  z-index: 1;
}
.trust-toggle:hover {
  color: var(--purple-200);
  border-color: rgba(62, 214, 163,.35);
  background: linear-gradient(180deg, rgba(34,30,46,.95) 0%, rgba(26,22,34,.95) 100%);
}
.trust-toggle-ico { transition: transform .35s cubic-bezier(.4,0,.2,1); }
.trust-dock.collapsed .trust-toggle-ico { transform: rotate(180deg); }

.trust-bar {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .75rem 1.1rem;
  padding: .95rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28,26,37,.92) 0%, rgba(22,20,29,.92) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
@media (min-width: 768px) {
  .trust-bar { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; padding: .85rem 1.25rem; }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
}
.trust-item .ico {
  flex-shrink: 0;
  width: 2.1rem; height: 2.1rem;
  border-radius: .55rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(34, 192, 141,.18) 0%, rgba(23, 165, 120,.08) 100%);
  border: 1px solid rgba(34, 192, 141,.35);
  color: var(--purple-300);
  font-size: .85rem;
}
.trust-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.trust-item .title {
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  height: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-item .sub {
  font-size: .68rem;
  color: var(--text-mute);
  margin-top: .3rem;
  line-height: 1;
  height: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* row hidden helper (used by JS) */
.row-hidden { display: none !important; }

/* badge fallback */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .55rem;
  border-radius: .35rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255,255,255,.04);
  color: var(--text-soft);
  border: 1px solid var(--line);
}
.badge-no-dep {
  background: rgba(34, 192, 141,.12);
  border-color: rgba(34, 192, 141,.45);
  color: var(--purple-200);
}

/* ─── Mobile filter-bar popovers — placed at EOF so source-order beats base rules ─── */
@media (max-width: 767px) {
  .filter-bar .filter-pop-wrap { position: static; }
  .filter-bar .filter-pop {
    left: .5rem;
    right: .5rem;
    top: 100%;
    margin-top: .5rem;
    min-width: 0;
    max-width: none;
    width: auto;
  }
  .filter-bar .filter-pop-wide { min-width: 0; }
}

/* ─── Mobile: hide sticky bottom trust-bar ─── */
@media (max-width: 767px) {
  .trust-dock { display: none; }
}

/* ─── Mobile: soft fade-out at the bottom of the hero frame ─── */
@media (max-width: 640px) {
  .hero-frame {
    -webkit-mask-image: linear-gradient(180deg, #000 72%, rgba(0,0,0,.4) 90%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 72%, rgba(0,0,0,.4) 90%, transparent 100%);
  }
}

/* ════════════════════════════════════════════════════════════════════
   KATALOG: linke Filter-Sidebar + Casino-Liste  (Redesign 2026-06)
   ════════════════════════════════════════════════════════════════════ */
.catalog { position: relative; }
.catalog-main { min-width: 0; }
@media (min-width: 1024px) {
  .sidebar { width: 274px; flex: 0 0 274px; }
}

/* Slim-Topbar über der Casino-Liste */
.catalog-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem; padding: .6rem .9rem;
  border: 1px solid var(--line); border-radius: 12px;
  background: linear-gradient(180deg, rgba(33,31,43,.7), rgba(21,19,28,.7));
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.catalog-bar .filter-count { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .98rem; }
.catalog-bar .filter-count-label { color: var(--text-mute); font-weight: 500; font-size: .85rem; }
.catalog-bar-right { display: inline-flex; align-items: center; gap: .6rem; }
.catalog-sort-label { font-size: .8rem; color: var(--text-mute); }
@media (max-width: 520px) { .catalog-sort-label { display: none; } }

/* Mobile Filter-Button (öffnet den Drawer) */
.filter-fab {
  align-items: center; gap: .55rem;
  margin-bottom: 1rem; padding: .65rem 1.05rem;
  border-radius: 11px; font-weight: 700; font-size: .9rem; color: #fff;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 22px -8px rgba(23, 165, 120,.6);
}
.filter-fab i { color: var(--accent-amber); }

/* ── Sidebar: coolerer Look (Gold→Violett-Akzent + Glow) ── */
.sidebar-shell {
  position: relative;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(33,31,43,.95), rgba(20,18,27,.95));
  box-shadow: 0 16px 48px -16px rgba(23, 165, 120,.4), inset 0 1px 0 rgba(255,255,255,.05);
}
.sidebar-shell::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #f5b942, var(--purple-400), var(--purple-600));
}
.filter-title {
  display: flex; align-items: center; gap: .45rem;
}
.filter-title::before {
  content: ''; width: 4px; height: 12px; border-radius: 2px;
  background: linear-gradient(180deg, var(--accent-amber), var(--purple-500));
}

/* ── Payment-Kacheln ── */
.pay-tiles {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem;
}
.pay-tile {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .32rem;
  width: auto; padding: .6rem .25rem; min-height: 60px;
  border-radius: 11px; cursor: pointer; text-align: center;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .14s ease, border-color .14s ease, background .14s ease, box-shadow .14s ease;
}
.pay-tile i { font-size: 1.2rem; line-height: 1; color: var(--text-soft); transition: color .14s ease; }
/* Logo-Chips in den Zahlungs-Kacheln der Sidebar (dunkler Hintergrund → weißer Chip) */
.pay-tile img {
  height: 26px; width: 48px;
  object-fit: contain;
  background: #fff; border-radius: 7px;
  padding: 1px 3px;
}
.pay-tile img[src$=".svg"],
.pay-tile img[src$=".png"] { padding: 7px 7px; }
.pay-tile span { font-size: .62rem; font-weight: 600; letter-spacing: .01em; color: var(--text-mute); white-space: nowrap; }
.pay-tile:hover { transform: translateY(-2px); border-color: rgba(62, 214, 163,.45); background: rgba(34, 192, 141,.09); }
.pay-tile:hover i { color: #fff; }
.pay-tile:hover span { color: rgba(255,255,255,.85); }
.pay-tile.active {
  background: linear-gradient(180deg, rgba(34, 192, 141,.24), rgba(23, 165, 120,.12));
  border-color: var(--purple-400);
  box-shadow: 0 0 0 1px rgba(245,185,66,.4), 0 8px 18px -10px rgba(23, 165, 120,.7);
}
.pay-tile.active i, .pay-tile.active span { color: #fff; }
.pay-tile.active::after {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 4px; right: 4px; font-size: .5rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent-amber); color: #1a1206;
  display: flex; align-items: center; justify-content: center;
}

/* ── Mobile: Sidebar als Off-Canvas-Drawer ── */
@media (max-width: 1023px) {
  .sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 70;
    width: 86%; max-width: 332px; margin: 0;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  }
  .sidebar .sidebar-shell { height: 100%; border-radius: 0; border-left: none; border-top: none; border-bottom: none; }
  .sidebar.open { transform: none; box-shadow: 0 0 70px rgba(0,0,0,.7); }
  .sidebar-scroll { max-height: 100vh; height: 100%; }
}
.sidebar-backdrop {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(6,5,12,.66);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.sidebar-backdrop.show { opacity: 1; visibility: visible; }

/* ════════════════════════════════════════════════════════════════════
   Filter-Feinschliff: flach statt Verlauf, Scrollbar weg, einklappbar
   ════════════════════════════════════════════════════════════════════ */
/* Verläufe raus → flache Flächen */
.sidebar-shell { background: var(--surf-1); }
.sidebar-shell::before { background: var(--purple-500); }
.catalog-bar { background: rgba(26,24,34,.72); }
.filter-fab { background: var(--purple-600); }
.pay-tile.active {
  background: rgba(34, 192, 141,.18);
  box-shadow: 0 0 0 1px rgba(245,185,66,.4);
}

/* Scrollleiste der Sidebar ausblenden */
.sidebar-scroll { scrollbar-width: none; -ms-overflow-style: none; }
.sidebar-scroll::-webkit-scrollbar { width: 0; height: 0; display: none; }

/* Einklappbare Filter-Gruppen (details/summary) */
.filter-group { }
.filter-group > summary {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 0;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-mute);
  transition: color .15s ease;
}
.filter-group > summary::-webkit-details-marker { display: none; }
.filter-group > summary:hover { color: #fff; }
.filter-group > summary .chev { color: var(--purple-400); font-size: .72rem; transition: transform .2s ease; }
.filter-group[open] > summary .chev { transform: rotate(180deg); }
.filter-body { padding-top: .2rem; padding-bottom: .15rem; }

/* Casino-Karte: Bonus NICHT umbrechen, dafür kleiner — "150% BIS 500€" bleibt
   in einer Zeile zusammen mit Freispiele/Max.Bet/Wager.
   Nur Desktop: das translateY schob auf Mobile die Stats unter die Badges. */
@media (min-width: 768px) {
  .card-stats { align-items: flex-end; justify-content: flex-start; margin-top: auto; margin-bottom: auto; transform: translateY(-0.9rem); }
  /* NUR Desktop: Bonus schmal neben den Stats. Auf Mobile bleibt .stat-bonus
     flex:1 1 100% (eigene Zeile) — sonst quetschen sich Bonus + Stats + Labels. */
  .stat-bonus { flex: 0 0 auto; }
}
.stat-bonus .stat-value { font-size: clamp(1.2rem, 2.1vw, 1.55rem); }
/* Pills oben, Bonus+Werte vertikal zentriert im Restraum darunter */
.card-center { justify-content: flex-start; }

/* ════════════════════════════════════════════════════════════════════
   FIX: ".font-display *" (Sora) überschrieb die Font-Awesome-Icon-Fonts.
   Höhere Specificity (.font-display .fa-*) stellt die Icon-Fonts wieder her.
   ════════════════════════════════════════════════════════════════════ */
.font-display .fa,
.font-display .fas,  .font-display .fa-solid,
.font-display .far,  .font-display .fa-regular { font-family: "Font Awesome 6 Free" !important; }
.font-display .fab,  .font-display .fa-brands  { font-family: "Font Awesome 6 Brands" !important; }

/* Desktop: Freispiele/Max.Bet/Wager zusammen in einer Zeile neben dem Bonus */
@media (min-width: 768px) {
  .card-stats { flex-wrap: nowrap; column-gap: clamp(.6rem, 1.6vw, 1.15rem); }
}
.stat-label { white-space: nowrap; }

/* ─── SC-Pill (Steinchen Anzeige im Header, sitewide) ─────────────────── */
.lc-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 192, 141,.18), rgba(34, 192, 141,.06));
  border: 1px solid rgba(62, 214, 163,.35);
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: .8rem;
  color: #ffbdd4;
  white-space: nowrap;
}
.lc-pill i { color: #fbbf24; font-size: .7rem; }

/* ─── Nav-Badge (z.B. ungelesene Support-Antworten) ─────────────────────── */
.nav-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 10px; font-weight: 800; line-height: 1;
  box-shadow: 0 0 0 2px #22091a, 0 0 10px rgba(239,68,68,.7);
  animation: nav-badge-pop .3s ease;
}
@keyframes nav-badge-pop { from { transform: scale(0); } to { transform: scale(1); } }
/* Mobile-Sidebar: Badge sitzt inline am Zeilenende statt absolut */
.nav-badge-inline { position: static; margin-left: auto; box-shadow: 0 0 10px rgba(239,68,68,.7); }

/* ══════════════════════════════════════════════════════════════════════
   HASHI HERO — Clean-Tech-Split (Rebranding 17.08.2026)
   Links: Statement-Typo mit Mint-Tick · Rechts: massiver Mint-Block
   ══════════════════════════════════════════════════════════════════════ */
.st-hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(52% 68% at 18% 0%, rgba(255,79,139,.07), transparent 62%),
    var(--bg-0);
  overflow: hidden;
}
.st-hero-inner {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem clamp(2.6rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.st-kicker {
  display: flex; align-items: center; gap: .7rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-soft);
}
.st-tick { width: 22px; height: 3px; border-radius: 2px; background: var(--purple-500); flex: 0 0 auto; }
.st-headline {
  margin: 1rem 0 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -.03em;
  color: var(--text);
}
.st-headline-dim { color: var(--purple-400); }
.st-sub {
  margin: 1.2rem 0 0; max-width: 34rem;
  font-size: 1.02rem; line-height: 1.65; color: var(--text-soft);
}
.st-cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.st-cta {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 12px;
  background: var(--purple-500); color: #0b1512;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  box-shadow: 0 8px 24px -8px rgba(255,79,139,.5);
  transition: transform .15s ease, filter .15s ease;
}
.st-cta:hover { transform: translateY(-2px); filter: brightness(1.06); }
.st-cta:active { transform: translateY(0); }
.st-cta-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 12px;
  background: rgba(255,255,255,.03); color: var(--text);
  border: 1px solid var(--line-strong);
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.st-cta-ghost:hover { border-color: rgba(255,79,139,.5); background: rgba(255,255,255,.06); }

/* Der Mint-Block: Vollfarbe, dunkler Text — Signatur-Moment der Seite */
.st-heropanel {
  background: linear-gradient(160deg, #ff6fa2, #ff4f8b 55%, #e0336f);
  color: #0b1512;
  border-radius: 18px;
  padding: 1.6rem 1.7rem 1.4rem;
  box-shadow: 0 24px 60px -20px rgba(255,79,139,.45);
}
.st-heropanel-head {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  opacity: .75; margin-bottom: 1rem;
}
.st-heropanel-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.st-heropanel-list li {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .8rem 0;
  border-top: 1px solid rgba(11,21,18,.16);
}
.st-hp-num {
  font-family: 'Sora', 'Space Grotesk', monospace;
  font-size: .72rem; font-weight: 800;
  padding-top: .15rem; opacity: .6; flex: 0 0 auto;
}
.st-heropanel-list b { display: block; font-size: .95rem; font-weight: 700; }
.st-heropanel-list span:not(.st-hp-num) { display: block; font-size: .82rem; line-height: 1.45; opacity: .78; margin-top: .15rem; }
.st-heropanel-live {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  margin-top: 1.1rem; padding: .75rem 1rem;
  border-radius: 11px;
  background: #0b1512; color: #ffe1ec;
  font-weight: 700; font-size: .88rem; text-decoration: none;
  transition: transform .15s ease;
}
.st-heropanel-live:hover { transform: translateY(-2px); color: #ffffff; }

@media (max-width: 900px) {
  .st-hero-inner { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.6rem; }
  .st-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .st-heropanel { border-radius: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .st-cta:hover, .st-cta-ghost:hover, .st-heropanel-live:hover { transform: none; }
}

/* ── Hero v2: kompakter, Twitch-Player statt Mint-Block ──
   v3 (20.08.): deutlich flacher — Casino-Liste soll above the fold anfangen. */
.st-hero-v2 {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.st-hero-v2 .st-headline { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-top: .7rem; }
.st-hero-v2 .st-sub { max-width: 32rem; margin-top: .85rem; font-size: .96rem; line-height: 1.55; }
.st-hero-v2 .st-cta-row { margin-top: 1.2rem; }
.st-hero-v2 .st-cta, .st-hero-v2 .st-cta-ghost { padding: .7rem 1.25rem; font-size: .9rem; }
.st-hero-v2 .st-social-row { margin-top: 1rem; }
.st-social-row {
  display: flex; align-items: center; gap: .9rem;
  margin-top: 1.4rem;
  font-size: .85rem; font-weight: 600;
}
.st-social-row a { color: var(--text-soft); text-decoration: none; transition: color .15s ease; display: inline-flex; align-items: center; gap: .45rem; }
.st-social-row a:hover { color: var(--purple-400); }
.st-social-row a i { color: var(--purple-400); font-size: 1rem; }
.st-social-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.25); }

.st-player {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  background: #2c0d1d;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.8), 0 0 0 1px rgba(255,79,139,.12), 0 0 44px -18px rgba(255,79,139,.35);
}
.st-player-head {
  display: flex; align-items: center; gap: .55rem;
  padding: .65rem .95rem;
  border-bottom: 1px solid var(--line);
  font-size: .8rem; font-weight: 700; color: var(--text-soft);
}
.st-player-head a {
  margin-left: auto;
  font-size: .72rem; font-weight: 600; color: var(--purple-400); text-decoration: none;
}
.st-player-head a:hover { color: var(--purple-300); }
.st-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f43f5e;
  box-shadow: 0 0 0 3px rgba(244,63,94,.2);
  animation: st-live-pulse 1.6s ease-in-out infinite;
}
@keyframes st-live-pulse { 50% { box-shadow: 0 0 0 6px rgba(244,63,94,.08); } }
.st-player-frame { aspect-ratio: 16 / 9; background: #000; }
.st-player-frame iframe { display: block; width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .st-hero-v2 { grid-template-columns: 1fr; gap: 1.4rem; padding-top: 1.6rem; }
  .st-hero-v2 .st-headline { font-size: clamp(2rem, 8vw, 2.6rem); }
  /* Mobile: kein Twitch-Player (Autoplay-Iframe kostet Daten/Platz) — CTA reicht */
  .st-player { display: none; }
}
@media (prefers-reduced-motion: reduce) { .st-live-dot { animation: none; } }

/* Schritt-Nummern + FAQ (Homepage-Textsektionen) */
.st-step-num {
  font-family: 'Sora', monospace;
  font-size: .78rem; font-weight: 800;
  color: var(--purple-400);
  margin-bottom: .7rem;
  letter-spacing: .12em;
}
.st-faq {
  background: linear-gradient(180deg, #371224 0%, #2c0d1d 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1.1rem;
}
.st-faq summary {
  cursor: pointer;
  font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.85);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.st-faq summary::after { content: '+'; color: var(--purple-400); font-weight: 700; font-size: 1.1rem; }
.st-faq[open] summary::after { content: '–'; }
.st-faq p { margin-top: .6rem; font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.st-faq p b { color: rgba(255,255,255,.8); }

/* Sektions-Abstand (kompiliertes tw.css hat kein mt-16) */
.st-sect { margin-top: 4.5rem; }
