html, body { background:#15171a; color:#e6edf3; font-family:'Space Grotesk', system-ui, sans-serif; -webkit-font-smoothing:antialiased; }
html { scroll-behavior:smooth; }
body { min-height: 100vh; }

.surface { background: linear-gradient(160deg, #23262b 0%, #1c1e22 60%, #15171a 100%); }
.text-mint-grad { background: linear-gradient(90deg, #45BE85 0%, #94E2BA 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* Legacy hero gradient — kept for non-index pages (404 etc.) */
.hero-bg { position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(70% 80% at 90% 20%, rgba(41,163,106,.22) 0%, transparent 60%),
    radial-gradient(60% 70% at 10% 80%, rgba(69,190,133,.14) 0%, transparent 60%),
    linear-gradient(180deg, #1c1e22 0%, #15171a 100%);
}

/* Page-hero — used on /bonushunt, /shop, /guides. No own background color,
   no hard edge. Just a soft mint glow above the same page background as the
   main content, so the hero flows seamlessly into the body below. */
.page-hero {
  position: relative;
  isolation: isolate;
}
.page-hero .page-hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 70% at 80% 25%, rgba(41,163,106,.16) 0%, transparent 60%),
    radial-gradient(50% 60% at 15% 75%, rgba(69,190,133,.08) 0%, transparent 60%);
}
.page-hero > div { position: relative; z-index: 1; }

/* ── Modern hero (index) ─────────────────────────────────────
   No background-color of its own — the canvas + radial glows sit on top
   of the global #15171a so the hero flows seamlessly into <main>.
*/
.hero-modern {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: center;
  text-align: center;
  isolation: isolate;
}
.hero-modern .hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(50% 60% at 50% 35%, rgba(41,163,106,.10) 0%, transparent 70%);
}
.hero-modern #hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; display: block; pointer-events: none;
}
.hero-modern .hero-content { position: relative; z-index: 2; }

/* Hero logo + headline */
.hero-logo {
  height: clamp(72px, 9vw, 120px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter:
    drop-shadow(0 10px 0px rgba(0, 0, 0, -0.15))
    drop-shadow(0 7px 0px rgba(0, 0, 0, 0.25));
  animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero-headline {
  font-weight: 300; letter-spacing: -0.01em; line-height: 1;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  position: relative;
  padding-bottom: 1.2em;   /* leave room for the Satisfy descenders below */
}
.hero-headline .accent {
  position: absolute; left: 0; right: 0;
  top: .55em;              /* slides up and into the "Find the best" line */
  font-family: 'Satisfy', cursive;
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1;
  padding: .1em .15em .35em;   /* descender room (e.g. the "f" tails) */
  background: linear-gradient(90deg, #29A36A 0%, #6BD3A1 60%, #29A36A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* text-shadow can't be used together with background-clip:text (would shadow
     the transparent text), so we layer drop-shadows to match the logo style. */
  filter:
    drop-shadow(0 6px 0 rgba(0, 0, 0, .85))
    drop-shadow(0 4px 2px rgba(0, 0, 0, .35));
  transform: rotate(356deg);
  transform-origin: 50% 50%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(41,163,106,.10); border: 1px solid rgba(69,190,133,.35);
  color: #BFEFD2;
  backdrop-filter: blur(8px);
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #29A36A;
  box-shadow: 0 0 0 0 rgba(41,163,106,.6);
  animation: hero-pulse 2s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(41,163,106,.55); }
  50%      { box-shadow: 0 0 0 10px rgba(41,163,106,0); }
}
.hero-sub { color: rgba(255,255,255,.6); font-size: clamp(.95rem, 1.4vw, 1.15rem); max-width: 36rem; margin-left: auto; margin-right: auto; }

/* Mobile: drop the absolute-positioned overlap, let the script "Casino Offers"
   flow inline within the sentence — no rotate, no overlap with the CTA row. */
@media (max-width: 767px) {
  .hero-headline {
    padding-bottom: 0;
    font-size: 2rem;
    line-height: 1.1;
  }
  .hero-headline .accent {
    position: static;
    display: inline;
    font-size: 1.25em;
    padding: 0 .1em;
    transform: none;
    line-height: inherit;
    filter: drop-shadow(0 3px 0 rgba(0,0,0,.85));
  }
}

/* Soft fade so the hero blends into the main content (no hard edge) */
.hero-modern::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(180deg, transparent 0%, #15171a 100%);
  pointer-events: none; z-index: 2;
}

/* ── App shell with left nav-sidebar + topbar ───────────────────── */
.app-shell { display: flex; min-height: 100vh; }
.nav-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 240px;
  background: #15171a;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column;
  padding: 1rem .85rem;
  z-index: 60;
  overflow-x: hidden;
  overflow-y: auto;
  transition: width .22s ease, transform .25s ease;
}
.nav-sidebar::-webkit-scrollbar { width: 6px; }
.nav-sidebar::-webkit-scrollbar-thumb { background: rgba(69,190,133,.2); border-radius: 999px; }
.nav-brand { display:flex; align-items:center; gap:.6rem; padding:.4rem .5rem 1.2rem; text-decoration: none; }
.brand-logo-full { display: block; height: 44px; width: auto; max-width: 100%; }
.brand-logo-mark { display: none; height: 44px; width: 44px; }
.nav-sidebar.collapsed .brand-logo-full { display: none; }
.nav-sidebar.collapsed .brand-logo-mark { display: block; }
.nav-link  {
  display:flex; align-items:center; gap:.7rem;
  padding:.6rem .7rem; border-radius:.55rem;
  color: rgba(255,255,255,.65); font-size:.92rem;
  transition: background .15s, color .15s;
  text-decoration: none;
  width: 100%; background: transparent; border: 1px solid transparent; cursor: pointer;
}
.nav-link:hover { color:#fff; background: rgba(255,255,255,.04); }
.nav-link.active {
  color:#BFEFD2; background: rgba(41,163,106,.10);
  border-color: rgba(69,190,133,.25);
}
.nav-link i { width: 18px; text-align: center; color:#45BE85; flex-shrink: 0; }
.nav-link .nav-label { transition: opacity .15s; white-space: nowrap; overflow: hidden; }
.nav-section-title {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.35); padding: 1rem .7rem .4rem;
  transition: opacity .15s;
}
.nav-divider { height: 1px; background: rgba(255,255,255,.06); margin: .6rem 0; }

/* Collapse toggle — fixed to the viewport so it sits on the sidebar's right
   edge without forcing horizontal overflow inside the sidebar's scroll area. */
.nav-collapse-btn {
  position: fixed; top: 14px; left: 228px;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #23262b; border: 1px solid rgba(69,190,133,.4);
  color: #45BE85; cursor: pointer; z-index: 65;
  transition: left .22s ease, transform .2s ease, color .15s, background .15s;
}
.nav-collapse-btn:hover { color: #fff; background: #2c2f35; }
body.nav-collapsed .nav-collapse-btn { left: 52px; transform: rotate(180deg); }

/* Collapsed state — narrow rail, icon-only */
.nav-sidebar.collapsed { width: 64px; padding-left: .4rem; padding-right: .4rem; }
.nav-sidebar.collapsed .nav-label,
.nav-sidebar.collapsed .nav-section-title,
.nav-sidebar.collapsed .brand-text,
.nav-sidebar.collapsed .nav-user-info,
.nav-sidebar.collapsed .nav-footer-text,
.nav-sidebar.collapsed .nav-collapsed-hide { opacity: 0; pointer-events: none; width: 0; height: 0; overflow: hidden; padding: 0; margin: 0; }
.nav-sidebar.collapsed .nav-link { justify-content: center; padding: .6rem .35rem; }
.nav-sidebar.collapsed .nav-brand { justify-content: center; padding: .4rem 0 1.2rem; }

.app-main {
  flex: 1; min-width: 0;
  margin-left: 240px;
  transition: margin-left .22s ease;
}
body.nav-collapsed .app-main { margin-left: 64px; }

@media (max-width: 1023px) {
  .nav-sidebar { transform: translateX(-100%); box-shadow: 24px 0 60px -16px rgba(0,0,0,.7); }
  .nav-sidebar.open { transform: translateX(0); }
  .app-main, body.nav-collapsed .app-main { margin-left: 0; }
  .nav-collapse-btn { display: none; }
}

/* topbar (oben, sitzt innerhalb der app-main) */
.topbar {
  position: sticky; top: 0; z-index: 40;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem;
  backdrop-filter: blur(14px);
  background: rgba(11,13,16,.78);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* live status pill in topbar */
.live-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .7rem; border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
}
.live-pill.live  { background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.4); color:#fca5a5; }
.live-pill .dot  { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.4); }
.live-pill.live .dot { background:#ef4444; animation: livepulse 1.8s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.55); }
  50%      { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

/* 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(69,190,133,.4); box-shadow: 0 8px 30px -10px rgba(41,163,106,.25); }

/* Casino-row inner grid. Mobile shows the headline strip (name+pills | bonus)
   in row 1 next to the logo, then a secondary stats row (MaxBet | Wager) and
   the CTA row. Desktop flattens everything onto a single horizontal line. */
.row-grid {
  display: grid;
  gap: .8rem .9rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "bonus  maxbet  wager"
    "cta    cta     cta";
  align-items: start;
}
.rg-bonus  { grid-area: bonus; text-align: left; }
.rg-maxbet { grid-area: maxbet; text-align: left; }
.rg-wager  { grid-area: wager; text-align: right; }
.rg-cta    { grid-area: cta; display: flex; gap: .5rem; margin-top: .15rem; }
.rg-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.4); margin-bottom: .25rem;
  font-weight: 600;
}
.rg-label-hl { color: #6BD3A1; }

/* Compact mobile bonus headline — keep readable but allow it to share the
   header row without forcing the name column to wrap awkwardly. */
.rg-bonus .bonus-headline {
  justify-content: flex-start;
  min-height: 0;
  gap: .2rem;
}
.rg-bonus .bonus-headline .bonus-pct { font-size: 1.15rem; }
.rg-bonus .bonus-headline .bonus-amt { font-size: 1rem; }
.rg-bonus .bonus-headline .bonus-up  { margin: 0 .1rem; }
.rg-bonus .bonus-extras { justify-content: flex-start; min-height: 0; margin-top: .35rem; }
.rg-bonus .bonus-headline.dual {
  align-items: flex-start;
  justify-content: center;
}
/* Mobile dual-bonus: stack the two pairs vertically so the bonus column
   stays narrow. */
.rg-bonus .bonus-headline.dual .bh-line {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.rg-bonus .bonus-headline.dual .bh-pair { line-height: 1.25; }
.rg-bonus .bonus-headline.dual .bonus-pct { font-size: 1.05rem; }
.rg-bonus .bonus-headline.dual .bonus-amt { font-size: .95rem; }

@media (min-width: 768px) {
  .row-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) 11rem;
    grid-template-areas: "bonus maxbet wager cta";
    align-items: start;
    gap: 1rem 1.25rem;
  }
  .rg-bonus, .rg-wager { text-align: left; }
  .rg-bonus .bonus-headline { justify-content: flex-start; min-height: 2.6rem; gap: .25rem; }
  .rg-bonus .bonus-headline .bonus-pct { font-size: 1.7rem; }
  .rg-bonus .bonus-headline .bonus-amt { font-size: 1.55rem; }
  .rg-bonus .bonus-headline .bonus-up  { margin: 0 .15rem; }
  .rg-bonus .bonus-extras { justify-content: flex-start; min-height: 1.85rem; margin-top: .5rem; }
  .rg-bonus .bonus-headline.dual .bh-line {
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
  }
  .rg-bonus .bonus-headline.dual .bonus-pct { font-size: 1.55rem; }
  .rg-bonus .bonus-headline.dual .bonus-amt { font-size: 1.4rem; }
  .rg-bonus .bonus-headline.dual .bh-pair   { line-height: 1.15; }
  .rg-label { font-size: 11px; margin-bottom: .25rem; }
  .rg-cta { flex-direction: column; gap: .5rem; margin-top: 0; }
}

/* filter sidebar (the right-hand FILTER inside content, distinct from nav-sidebar) */
.filter-sidebar-shell { border-radius: 1rem; border: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.filter-sidebar-scroll { overflow-y: auto; padding: 1.25rem; }
@media (min-width: 1024px) { .filter-sidebar-scroll { max-height: calc(100vh - 6rem); } }
.filter-sidebar-scroll::-webkit-scrollbar { width: 6px; }
.filter-sidebar-scroll::-webkit-scrollbar-thumb { background: rgba(69,190,133,.25); border-radius: 999px; }

/* buttons */
.btn-mint { display:inline-flex; align-items:center; justify-content:center; gap:.4rem; padding:.6rem 1rem; border-radius:.6rem; font-weight:600; background:#29A36A; color:#fff; border:1px solid rgba(255,255,255,.06); transition: background .15s, transform .15s; cursor:pointer; }
.btn-mint:hover { background:#45BE85; 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, color .15s; cursor: pointer; }
.btn-ghost:hover { border-color: rgba(69,190,133,.5); color:#fff; }
.btn-twitch { display:inline-flex; align-items:center; justify-content:center; gap:.45rem; padding:.55rem .9rem; border-radius:.6rem; font-weight:600; background:#29A36A; color:#fff; border:1px solid rgba(255,255,255,.08); transition: background .15s, transform .15s; text-decoration: none; }
.btn-twitch:hover { background:#45BE85; transform: translateY(-1px); color:#fff; }
.btn-red { display:inline-flex; align-items:center; gap:.4rem; padding:.55rem .9rem; border-radius:.6rem; background: rgba(239,68,68,.1); color:#f87171; border:1px solid rgba(239,68,68,.3); font-size:.82rem; cursor:pointer; transition: all .15s; }
.btn-red:hover { background: rgba(239,68,68,.18); border-color: rgba(239,68,68,.5); color:#fca5a5; }

/* 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; user-select:none; }
.chip:hover { color:#fff; border-color: rgba(69,190,133,.4); }
.chip.active { background: rgba(41,163,106,.14); border-color: rgba(69,190,133,.5); color:#BFEFD2; }
.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; user-select:none; width:100%; text-align:left; background: transparent; border: none; }
.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; }
.check.active .box { background:#29A36A; border-color:#29A36A; }
.check.active .box::after { content:'\f00c'; font-family:'Font Awesome 6 Free'; font-weight:900; color:#fff; 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:#fde68a; }

/* sticky / non-sticky pill (admin/list rows, inline use) */
.sticky-badge {
  display:inline-flex; align-items:center; gap:.25rem;
  padding:.15rem .5rem; border-radius:.35rem;
  font-size:.62rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  border:1px solid transparent;
}
.sticky-badge.non-sticky { background: rgba(41,163,106,.14); border-color: rgba(69,190,133,.45); color:#BFEFD2; }
.sticky-badge.sticky     { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.4); color:#fcd34d; }

/* sticky / non-sticky pill — clean badge under the casino name. Both variants
   share identical structure + weight so they read as siblings, only colour
   distinguishes them. Subtle, restrained, no shadows. */
.sticky-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid transparent;
  line-height: 1.4;
  white-space: nowrap;
}
.sticky-pill i { font-size: 9px; opacity: .9; }
.sticky-pill.non-sticky {
  background: rgba(41,163,106,.10);
  border-color: rgba(69,190,133,.45);
  color: #6BD3A1;
}
.sticky-pill.sticky {
  background: rgba(245,158,11,.10);
  border-color: rgba(245,158,11,.45);
  color: #fbbf24;
}

/* bonus headline ("200% bis zu 500€") */
.bonus-headline { line-height: 1.1; min-height: 2.6rem; display: flex; align-items: center; flex-wrap: wrap; gap: .25rem; }
/* On the play-page sidebar both variants must be centered. */
.bonus-headline.play-bonus        { justify-content: center; }
.bonus-headline.play-bonus.dual   { align-items: center; }
.bonus-headline.play-bonus.dual .bh-line { justify-content: center; }
.bonus-headline.play-bonus.dual .bh-hint { text-align: center; width: 100%; }
.bonus-headline .bonus-pct {
  font-family:'Space Grotesk', sans-serif; font-weight:800;
  font-size: 1.5rem; color:#6BD3A1;
}
.bonus-headline .bonus-up { font-size:.7rem; color: rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:.06em; margin: 0 .15rem; }
.bonus-headline .bonus-amt {
  font-family:'Space Grotesk', sans-serif; font-weight:800;
  font-size: 1.35rem;
  background: linear-gradient(90deg, #29A36A, #6BD3A1);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
@media (min-width: 768px) {
  .bonus-headline .bonus-pct { font-size: 1.7rem; }
  .bonus-headline .bonus-amt { font-size: 1.55rem; }
}

/* Reserved row for the bonus code chip. Same min-height whether empty or
   filled, so cards stay uniform in height. */
.bonus-extras {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: .5rem;
  min-height: 1.85rem;
}

/* Dual-bonus headline: fiat + crypto inline on one line, separated by a
   mint-tinted dot. Bitcoin icon prefixes the crypto pair; the € in the fiat
   amount is enough to identify the fiat side — no redundant word-labels.
   A subtle hint line below clarifies the "inkl. Crypto-Bonus" status. */
.bonus-headline.dual {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .15rem;
}
.bonus-headline.dual .bh-line {
  display: inline-flex; align-items: baseline; flex-wrap: wrap;
  gap: .45rem; line-height: 1.1;
}
.bonus-headline.dual .bh-pair {
  display: inline-flex; align-items: baseline; gap: .25rem;
  white-space: nowrap;
}
.bonus-headline.dual .bh-hint {
  font-size: .58rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(107,211,161,.7);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}
.bonus-headline.dual .bonus-pct { font-size: 1.15rem; }
.bonus-headline.dual .bonus-amt { font-size: 1.05rem; }
.bonus-headline.dual .bh-coin {
  align-self: center; color: #6BD3A1;
  font-size: .95rem; margin-right: .05rem;
  filter: drop-shadow(0 0 6px rgba(107,211,161,.35));
}
@media (min-width: 768px) {
  .bonus-headline.dual .bonus-pct { font-size: 1.25rem; }
  .bonus-headline.dual .bonus-amt { font-size: 1.15rem; }
  .bonus-headline.dual .bh-coin   { font-size: 1.05rem; }
}

/* bonus code chip — click to copy */
.bonus-code {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .6rem; border-radius: .4rem;
  background: rgba(41,163,106,.10); border: 1px dashed rgba(69,190,133,.5);
  color: #BFEFD2; font-size: .72rem; letter-spacing: .05em;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.bonus-code:hover {
  background: rgba(41,163,106,.18);
  border-color: rgba(69,190,133,.85);
  border-style: solid;
  transform: translateY(-1px);
}
.bonus-code strong { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #fff; letter-spacing: .08em; }
.bonus-code .code-icon { font-size: .7rem; }
.bonus-code .code-copy { font-size: .7rem; color: rgba(255,255,255,.45); transition: color .15s; }
.bonus-code:hover .code-copy { color: #fff; }
.bonus-code.copied   { background: rgba(41,163,106,.25); border-color: #29A36A; border-style: solid; }
.bonus-code.copied strong { color: #fff; }
.bonus-code.copy-fail { background: rgba(239,68,68,.15); border-color: rgba(239,68,68,.5); }

/* category pill (Gamomat, PlaynGo, Fast Payout, Favoriten) — kept small,
   pinned beneath the casino name on the card. */
.cat-pill-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 4px;
  min-height: 1.55rem;
}
.cat-pill-row-cats { margin-top: .55rem; }
.cat-pill {
  display:inline-flex; align-items:center; gap:3px;
  padding: 2px 7px; border-radius: 4px;
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.55); font-size: 10px; font-weight: 500;
  letter-spacing: .01em; line-height: 1.2;
  white-space: nowrap;
}
.cat-pill i { color:#45BE85; font-size: 9px; }
.cat-pill:hover { color: rgba(255,255,255,.85); border-color: rgba(69,190,133,.35); }

/* The "initial" inside the rounded tile (gradient text) */
.logo-block .logo-initial {
  font-family:'Space Grotesk', sans-serif; font-weight: 800;
  font-size: 1.85rem;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}
.logo-block .logo-initial > span {
  background: linear-gradient(135deg, #29A36A 0%, #6BD3A1 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* rank flag */
.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);
}
.rank-1 { background: linear-gradient(135deg, #29A36A 0%, #45BE85 100%); color:#fff; border-color: transparent; box-shadow: 0 3px 0 0 #166F45, 0 10px 22px -6px rgba(41,163,106,.55); }
.rank-2 { background: linear-gradient(135deg, rgba(41,163,106,.32) 0%, rgba(69,190,133,.22) 100%); color:#6BD3A1; border-color: rgba(69,190,133,.4); box-shadow: 0 3px 0 0 rgba(22,111,69,.65), 0 6px 16px -4px rgba(0,0,0,.4); }
.rank-3 { background: linear-gradient(135deg, rgba(41,163,106,.20) 0%, rgba(69,190,133,.14) 100%); color:#6BD3A1; border-color: rgba(69,190,133,.28); box-shadow: 0 3px 0 0 rgba(22,111,69,.45), 0 6px 16px -4px rgba(0,0,0,.4); }

/* logo block — neutral wrapper. The mint-gradient background lives on the
   rounded logo tile itself, not the full card column, so each row looks like
   a logo "sticker" floating in the card rather than a coloured stripe. */
.logo-block {
  background: transparent;
  display:flex; align-items:flex-start; justify-content:center;
  flex-shrink: 0;
  width: 7rem;
  align-self: stretch;
  padding: .7rem .55rem;
  border-right: 1px solid rgba(255,255,255,.04);
}
@media (min-width: 768px) {
  .logo-block {
    width: 7.5rem;
    padding: .9rem;
    align-items: center;
  }
}

/* When the logo block is an <a>, give it a hint that the whole tile is
   clickable and let the inner tile scale slightly on hover. */
.logo-link { text-decoration: none; cursor: pointer; transition: transform .15s ease; }
.logo-link:hover .logo-img,
.logo-link:hover .logo-initial { transform: scale(1.03); box-shadow: 0 8px 22px -8px rgba(41,163,106,.6); }
.logo-link .logo-img,
.logo-link .logo-initial { transition: transform .18s ease, box-shadow .18s ease; }

/* Rounded logo tile — no border, no inner padding. The border-radius clips
   the image itself, so the logo extends all the way to the rounded edge. */
.logo-block .logo-img,
.logo-block .logo-initial {
  width: 100%;
  max-width: 7rem;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(41,163,106,.22) 0%, rgba(69,190,133,.10) 55%, rgba(41,163,106,.04) 100%);
  box-shadow: 0 6px 16px -8px rgba(41,163,106,.4);
  overflow: hidden;
}
.logo-block img.logo-img {
  object-fit: cover;
  object-position: center;
}

.logo-icon { color:#45BE85; font-size: 2rem; filter: drop-shadow(0 4px 10px rgba(41,163,106,.32)); }
@media (min-width: 768px) { .logo-icon { font-size: 2.25rem; } }

/* stars */
.stars i { color:#45BE85; font-size:.78rem; }
.stars i.empty { color: rgba(255,255,255,.15); }

/* payment chip — icon + name side by side, with hover tooltip kept as a
   subtle "always there" affordance (e.g. when names get truncated). */
.pay-icon {
  position: relative;
  display:inline-flex; align-items:center; gap: 5px;
  height: 28px; padding: 0 .55rem;
  border-radius: .4rem;
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
  color:#cfd6dd; font-size: .78rem;
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}
.pay-icon i { font-size: .9rem; color: #45BE85; }
.pay-icon .pay-label { font-weight: 500; letter-spacing: .01em; }
.pay-icon:hover {
  border-color: rgba(69,190,133,.45);
  background: rgba(69,190,133,.06);
  color: #fff;
}
.pay-icon:hover i { color: #6BD3A1; }
.pay-icon.text { font-size:.7rem; font-weight:600; letter-spacing:.03em; padding:0 .55rem; }
.pay-icon[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: #23262b; color: #fff;
  padding: 5px 10px; border-radius: 5px;
  font-size: 11px; font-weight: 500; letter-spacing: 0;
  /* Allow the "+N weitere" tooltip to break across lines when long. */
  max-width: 260px; white-space: normal; text-align: center; line-height: 1.4;
  z-index: 30; pointer-events: none;
  border: 1px solid rgba(69,190,133,.4);
  box-shadow: 0 8px 20px -4px rgba(0,0,0,.5);
}
.pay-icon[data-tip]:hover::before {
  content: ''; position: absolute; bottom: calc(100% + 1px); left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: rgba(69,190,133,.4);
  z-index: 30; pointer-events: none;
}

/* "+N weitere" pill — visually distinct from the regular payment chips */
.pay-icon.pay-more {
  background: rgba(69,190,133,.08);
  border-color: rgba(69,190,133,.35);
  color: #BFEFD2;
  cursor: help;
}
.pay-icon.pay-more:hover {
  background: rgba(69,190,133,.18);
  border-color: rgba(69,190,133,.6);
  color: #fff;
}
.pay-icon.pay-more .pay-label { font-weight: 600; }

/* ── Toolbar row + Anfänger/Experten mode switch ─────────── */
.toolbar-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.toolbar-left, .toolbar-right { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }

.mode-switch {
  display: inline-flex; padding: 3px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}
.mode-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: .35rem .75rem; border-radius: 999px;
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,.6); font-size: .76rem; font-weight: 500;
  transition: all .15s;
}
.mode-btn:hover { color: #fff; }
.mode-btn.is-active {
  background: linear-gradient(135deg, #29A36A, #45BE85);
  color: #fff;
  box-shadow: 0 3px 10px -3px rgba(41,163,106,.55);
  font-weight: 600;
}
.mode-btn i { color: inherit; }

/* Beginner deposit bar — appears only in beginner mode */
.beginner-bar {
  display: none;
  align-items: center; gap: .75rem; flex-wrap: wrap;
  padding: .75rem 1rem;
  background: linear-gradient(135deg, rgba(41,163,106,.08), rgba(69,190,133,.02));
  border: 1px solid rgba(69,190,133,.25);
  border-radius: .75rem;
}
body.mode-beginner .beginner-bar { display: flex; }
.beginner-label { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 500; }
.beginner-input-wrap { position: relative; }
.beginner-input-wrap input {
  width: 130px; padding: .45rem 2rem .45rem .8rem;
  background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.1);
  color: #fff; border-radius: .5rem; font-family: 'Space Grotesk',sans-serif; font-size: .9rem;
  appearance: textfield; -moz-appearance: textfield;
}
.beginner-input-wrap input::-webkit-outer-spin-button,
.beginner-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.beginner-input-wrap input:focus { outline: none; border-color: rgba(69,190,133,.55); }
.beginner-input-wrap > span { position: absolute; right: .8rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.45); }
.beginner-quick { display: flex; gap: 4px; flex-wrap: wrap; }
.beginner-quick button {
  padding: .25rem .6rem; border-radius: .35rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6); font-size: .72rem; cursor: pointer; transition: all .12s;
}
.beginner-quick button:hover { background: rgba(41,163,106,.12); border-color: rgba(69,190,133,.4); color: #fff; }

/* Notice shown when the entered deposit exceeds the max bonus on one or
   more casinos. Only visible in beginner mode + when at least one casino
   is capped, so it stays unobtrusive when the amount is sensible. */
.over-max-notice {
  display: none;
  align-items: center; gap: .55rem;
  margin: -.5rem 0 1rem;
  padding: .55rem .8rem;
  border-radius: .55rem;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.3);
  color: #fbbf24;
  font-size: .78rem; line-height: 1.25;
}
.over-max-notice strong { color: #fff; font-weight: 700; }
.over-max-notice i { font-size: .85rem; flex-shrink: 0; }
body.mode-beginner .over-max-notice:not(.hidden) { display: flex; }

/* Beginner calculation box on each casino card */
.bonus-calc {
  display: none;
  margin-top: .85rem; padding: .65rem .85rem;
  background: rgba(41,163,106,.06);
  border: 1px solid rgba(69,190,133,.22);
  border-radius: .55rem;
  gap: 1rem;
  flex-wrap: wrap;
}
body.mode-beginner .card .bonus-calc { display: flex; }
.bonus-calc .calc-item { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bonus-calc .calc-label { font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.45); }
.bonus-calc .calc-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #fff; font-size: .92rem; }
.bonus-calc .calc-value.is-highlight { background: linear-gradient(90deg, #29A36A, #6BD3A1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bonus-calc .calc-sep { color: rgba(255,255,255,.15); align-self: center; font-size: 1.1rem; }

/* Skeleton state while the deposit changes — gives the calc a snappy
   "thinking" feel even though it's just arithmetic. */
.bonus-calc.is-loading .calc-value {
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.12), rgba(255,255,255,.04));
  background-size: 200% 100%;
  animation: calc-skel 1.1s infinite;
  color: transparent !important; -webkit-text-fill-color: transparent;
  border-radius: 4px;
  min-width: 60px; min-height: 16px;
}
@keyframes calc-skel {
  from { background-position: 200% 0; } to { background-position: -200% 0; }
}

/* Empty-state hint until the user types an amount */
.bonus-calc.is-empty {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
  justify-content: center;
}
.bonus-calc.is-empty .calc-empty {
  font-size: .78rem; color: rgba(255,255,255,.45);
  font-style: italic; text-align: center;
}

/* 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='%2345BE85' d='M6 8L2 4h8z'/></svg>");
  background-repeat:no-repeat; background-position: right .6rem center; cursor:pointer;
}
.sort-select:focus { outline:none; border-color: rgba(69,190,133,.5); }
.sort-select option { background:#1c1e22; color:#e6edf3; }

/* 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; color:#45BE85; }
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; }

/* mobile filter sidebar */
@media (max-width: 1023px) {
  .filter-sidebar { display:none; }
  .filter-sidebar.open { display:block; }
}

/* mobile overlay for nav-sidebar */
#mobile-overlay.open { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }

/* ── Twitch floating player (bottom-right) ───────────────────── */
.twitch-widget {
  position: fixed; right: 1.1rem; bottom: 1.1rem;
  width: 340px; max-width: calc(100vw - 2rem);
  z-index: 70;
  border-radius: .85rem;
  overflow: hidden;
  background: #15171a;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.7);
  transition: transform .25s ease, opacity .2s ease;
}
.twitch-widget.minimized {
  width: 200px;
}
.twitch-widget.minimized .twitch-body { display: none; }
.twitch-widget-bar {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .75rem;
  background: linear-gradient(160deg, #2c2f35 0%, #23262b 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.twitch-widget-bar .channel-name { font-size: .82rem; font-weight: 600; flex: 1; min-width: 0; }
.twitch-widget-bar .small-pill {
  font-size: .58rem; padding: .15rem .45rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .06em; font-weight: 700;
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.6);
}
.twitch-widget-bar .small-pill.live { background:#ef4444; color:#fff; }
.twitch-widget-bar .x-btn {
  width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; color: rgba(255,255,255,.55); cursor: pointer; border-radius: 4px;
}
.twitch-widget-bar .x-btn:hover { background: rgba(255,255,255,.08); color:#fff; }
.twitch-body { aspect-ratio: 16 / 9; width: 100%; background:#000; }
.twitch-body iframe { width: 100%; height: 100%; border: 0; display: block; }
.twitch-offline-state {
  position: relative;
  width: 100%; aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #23262b 0%, #15171a 100%);
  overflow: hidden;
}
.twitch-offline-state img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .85; display: block;
}
.twitch-offline-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,8,19,.10) 0%, rgba(11,8,19,.78) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: .7rem 1rem 1rem; text-align: center; gap: .15rem;
}
.twitch-offline-overlay i { color: #45BE85; font-size: 1.4rem; margin-bottom: .25rem; filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
.twitch-offline-state .label { font-size: .82rem; color: #fff; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,.7); }
.twitch-offline-state .sub   { font-size: .68rem; color: rgba(255,255,255,.78); text-shadow: 0 1px 3px rgba(0,0,0,.6); }

/* fab to reopen widget */
.twitch-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: #29A36A; color: #fff;
  display: none; align-items: center; justify-content: center;
  z-index: 70; cursor: pointer; border: none;
  box-shadow: 0 12px 30px -8px rgba(41,163,106,.5);
}
.twitch-fab.show { display: inline-flex; }

/* Points pill next to the user name in the topbar */
.user-points {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .7rem; border-radius: 999px;
  background: linear-gradient(135deg, rgba(41,163,106,.18), rgba(69,190,133,.06));
  border: 1px solid rgba(69,190,133,.4);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: .8rem; line-height: 1;
  color: #fff;
  transition: transform .15s, box-shadow .15s;
}
.user-points i { color: #fbbf24; font-size: .75rem; }
.user-points:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -6px rgba(41,163,106,.55);
}
/* On narrow screens the user-name span next to the avatar already collapses
   (Tailwind 'hidden sm:inline'), which frees enough room for the full points
   pill to stay visible on phones too. */

/* user menu in topbar */
.user-pop {
  position: absolute; right: 0; top: calc(100% + .4rem);
  min-width: 200px;
  background: linear-gradient(160deg, #1a2129 0%, #1c1e22 100%);
  border: 1px solid rgba(255,255,255,.08); border-radius: .65rem;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,.7);
  padding: .35rem; z-index: 50;
}
.user-pop button, .user-pop a {
  display:flex; width:100%; align-items:center; gap:.55rem;
  padding:.5rem .65rem; border-radius:.4rem; font-size:.85rem;
  color: rgba(255,255,255,.85); background: transparent; border: none; cursor: pointer; text-align: left;
}
.user-pop button:hover, .user-pop a:hover { background: rgba(255,255,255,.05); color:#fff; }

/* ── Play (single-casino) page — compact 2-column layout ─── */
.play-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .play-grid { grid-template-columns: minmax(220px, 280px) 1fr; align-items: start; }
}
.play-aside-inner { position: relative; }
@media (min-width: 768px) {
  .play-aside-inner { position: sticky; top: 5rem; }
}

.play-logo-img {
  width: 96px; height: 96px;
  border-radius: 18px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(41,163,106,.22), rgba(69,190,133,.05));
  box-shadow: 0 12px 28px -10px rgba(41,163,106,.5);
  object-fit: cover;
}
.play-logo-link { display: inline-block; transition: transform .15s; }
.play-logo-link:hover .play-logo-img { transform: scale(1.04); }
.play-logo-fallback {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
}
.play-logo-fallback span {
  background: linear-gradient(135deg, #29A36A 0%, #6BD3A1 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-size: 2.5rem; line-height: 1;
}

.play-stat {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .55rem;
  padding: .55rem .7rem;
  min-width: 0;
}
.play-stat-label { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); }
.play-stat-value { font-weight: 600; font-size: .82rem; margin-top: .15rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pay-icon-pill {
  display: inline-flex; align-items: center;
  padding: .28rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: #cfd6dd; font-size: .72rem;
}

/* ── Guides index + article ──────────────────────────────── */
.guide-card {
  display: flex; flex-direction: column;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: border-color .15s, transform .15s;
}
.guide-card:hover { border-color: rgba(69,190,133,.45); transform: translateY(-2px); }
.guide-card-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(41,163,106,.22), rgba(69,190,133,.08));
  border: 1px solid rgba(69,190,133,.3);
  color: #6BD3A1; font-size: 1.05rem;
  margin-bottom: .9rem;
}
.guide-card-title { font-weight: 700; font-size: 1.05rem; line-height: 1.25; color: #fff; margin-bottom: .45rem; }
.guide-card-teaser { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; flex: 1; margin-bottom: 1rem; }
.guide-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .72rem; color: rgba(255,255,255,.45);
}
.guide-card-meta i { color: #45BE85; margin-right: 4px; }
.guide-card-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(41,163,106,.12); color: #6BD3A1;
  transition: transform .15s;
}
.guide-card:hover .guide-card-arrow { transform: translateX(3px); }

.guide-article-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(41,163,106,.25), rgba(69,190,133,.10));
  border: 1px solid rgba(69,190,133,.35);
  color: #6BD3A1; font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px -8px rgba(41,163,106,.5);
}

/* Steps list — numbered green circles */
.guide-steps { counter-reset: step; list-style: none; padding: 0; }
.guide-steps li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .85rem; }
.guide-step-num {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #29A36A, #45BE85);
  color: #fff; font-weight: 700; font-size: .8rem;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 10px -3px rgba(41,163,106,.5);
}
.guide-step-text { color: rgba(255,255,255,.85); line-height: 1.55; padding-top: 2px; }
.guide-step-text strong { color: #fff; }

/* Callout — info box */
.guide-callout {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.2rem; margin: 1.5rem 0;
  background: linear-gradient(135deg, rgba(41,163,106,.10), rgba(69,190,133,.02));
  border: 1px solid rgba(69,190,133,.3);
  border-radius: .75rem;
}
.guide-callout-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(41,163,106,.2); color: #6BD3A1; font-size: 1rem;
}
.guide-callout-title { font-weight: 700; color: #fff; margin-bottom: .25rem; }
.guide-callout-body  { color: rgba(255,255,255,.75); line-height: 1.55; font-size: .92rem; }

/* Tip / warn — single-line accent boxes */
.guide-tip, .guide-warn {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .75rem 1rem; margin: 1.25rem 0;
  border-radius: .55rem; font-size: .9rem; line-height: 1.5;
}
.guide-tip { background: rgba(41,163,106,.08); border: 1px solid rgba(69,190,133,.25); color: rgba(255,255,255,.85); }
.guide-tip i { color: #6BD3A1; margin-top: .15rem; }
.guide-warn { background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.3); color: rgba(255,255,255,.85); }
.guide-warn i { color: #fbbf24; margin-top: .15rem; }

.guide-code {
  background: #0d1115; border: 1px solid rgba(255,255,255,.06);
  padding: .85rem 1rem; border-radius: .55rem;
  font-family: ui-monospace, monospace; font-size: .82rem;
  color: #BFEFD2; overflow-x: auto; margin: 1.25rem 0;
}

/* Inline diagrams + image figures */
.guide-figure {
  margin: 1.75rem 0; text-align: center;
}
.guide-figure-svg {
  background: linear-gradient(160deg, rgba(41,163,106,.06), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  overflow: hidden;
}
.guide-figure-svg svg { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.guide-figure img { max-width: 100%; border-radius: .75rem; border: 1px solid rgba(255,255,255,.08); }
.guide-figure figcaption {
  margin-top: .55rem; font-size: .78rem;
  color: rgba(255,255,255,.5); font-style: italic;
}

/* Related guides at the bottom of an article */
.guide-related {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1rem; border-radius: .65rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none; transition: border-color .15s;
}
.guide-related:hover { border-color: rgba(69,190,133,.4); }
.guide-related-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(41,163,106,.15); color: #6BD3A1; flex-shrink: 0;
}
.guide-related-title  { font-weight: 600; color: #fff; font-size: .9rem; }
.guide-related-teaser { font-size: .75rem; color: rgba(255,255,255,.55); line-height: 1.4; margin-top: .15rem; }

/* ── Bonus Finder modal ───────────────────────────────────── */
.bf-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(7, 5, 14, .80); backdrop-filter: blur(10px);
  z-index: 200;
  align-items: center; justify-content: center;
  padding: 1rem;
  animation: bf-fade .25s ease;
}
.bf-overlay.show { display: flex; }
@keyframes bf-fade { from { opacity:0; } to { opacity:1; } }
.bf-card {
  width: 100%; max-width: 580px; max-height: 92vh;
  border-radius: 1.25rem;
  border: 1px solid rgba(69,190,133,.25);
  box-shadow: 0 30px 60px -10px rgba(0,0,0,.6);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.bf-header {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.bf-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #29A36A 0%, #6BD3A1 100%);
  color: #fff; font-size: .95rem;
  box-shadow: 0 6px 16px -4px rgba(41,163,106,.55);
}
.bf-close {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65); border-radius: 8px; cursor: pointer;
  transition: background .15s, color .15s;
}
.bf-close:hover { background: rgba(255,255,255,.08); color: #fff; }

.bf-body { padding: 1.2rem; overflow-y: auto; flex: 1; }

.bf-q { margin-bottom: 1rem; }
.bf-q-label {
  display: flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85);
  margin-bottom: .55rem;
}
.bf-q-label i { color: #45BE85; font-size: .75rem; }

.bf-input-eur {
  position: relative; display: flex; align-items: center;
}
.bf-input-eur input {
  width: 100%; padding: .6rem 2rem .6rem .85rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff; border-radius: .55rem;
  font-size: .95rem; font-family: 'Space Grotesk', sans-serif;
  appearance: textfield; -moz-appearance: textfield;
}
.bf-input-eur input::-webkit-outer-spin-button,
.bf-input-eur input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bf-input-eur input:focus { outline: none; border-color: rgba(69,190,133,.55); }
.bf-input-eur > span { position: absolute; right: .85rem; color: rgba(255,255,255,.45); font-size: .9rem; pointer-events: none; }

.bf-quick-amounts { display: flex; gap: 5px; flex-wrap: wrap; margin-top: .5rem; }
.bf-quick-amounts button {
  padding: .25rem .7rem; border-radius: .35rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6); font-size: .72rem; cursor: pointer;
  transition: all .12s;
}
.bf-quick-amounts button:hover { background: rgba(41,163,106,.12); border-color: rgba(69,190,133,.4); color: #fff; }

.bf-pick-row { display: flex; flex-wrap: wrap; gap: 6px; }
.bf-pick {
  display: inline-flex; align-items: center; gap: 5px;
  padding: .35rem .7rem; border-radius: .4rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7); font-size: .78rem; cursor: pointer;
  transition: all .12s;
}
.bf-pick i { font-size: .72rem; color: #45BE85; }
.bf-pick:hover { color: #fff; border-color: rgba(69,190,133,.4); }
.bf-pick.is-active {
  background: linear-gradient(135deg, rgba(41,163,106,.25), rgba(69,190,133,.10));
  border-color: #29A36A; color: #fff;
}

.bf-actions {
  display: flex; gap: .5rem; justify-content: flex-end;
  padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.06);
  margin-top: .5rem;
}

/* Result rows */
.bf-result {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem .8rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .65rem;
  transition: border-color .15s;
}
.bf-result:hover { border-color: rgba(69,190,133,.35); }
.bf-result-logo-wrap, .bf-result-logo { flex-shrink: 0; }
.bf-result-logo {
  width: 48px; height: 48px; border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(41,163,106,.22), rgba(69,190,133,.08));
  display: inline-flex; align-items: center; justify-content: center;
}
.bf-result-logo-fallback span {
  font-family:'Space Grotesk',sans-serif; font-weight:800;
  background: linear-gradient(135deg, #29A36A 0%, #6BD3A1 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color: transparent; color: transparent;
  font-size: 1.4rem;
}
.bf-result-info { flex: 1; min-width: 0; }
.bf-result-head { display: flex; align-items: center; gap: .5rem; min-width: 0; }
.bf-result-name { font-weight: 700; color: #fff; text-decoration: none; font-size: .92rem; }
.bf-result-name:hover { color: #6BD3A1; }
.bf-result-bonus { margin-top: .1rem; line-height: 1.15; }
.bf-result-cta { padding: .45rem .85rem !important; flex-shrink: 0; }
.bf-you-get {
  margin-top: .25rem; font-size: .72rem;
  color: rgba(255,255,255,.7);
}
.bf-you-get strong { color: #6BD3A1; font-weight: 700; }
.bf-cap { color: rgba(255,255,255,.4); font-style: italic; }

/* ── Age gate ─────────────────────────────────────────────── */
html.age-gate-on, html.age-gate-on body { overflow: hidden !important; }
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  animation: agegate-fade .25s ease;
}
.age-gate.closing { animation: agegate-fadeout .2s ease forwards; }
@keyframes agegate-fade    { from { opacity: 0; } to { opacity: 1; } }
@keyframes agegate-fadeout { from { opacity: 1; } to { opacity: 0; } }
.age-gate-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 70% 30%, rgba(41,163,106,.28) 0%, transparent 60%),
    radial-gradient(60% 70% at 20% 80%, rgba(69,190,133,.18) 0%, transparent 60%),
    rgba(7, 5, 14, .85);
  backdrop-filter: blur(12px);
}
.age-gate-card {
  position: relative;
  width: 100%; max-width: 460px;
  padding: 2rem 1.85rem 1.85rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(69,190,133,.25);
  box-shadow: 0 35px 70px -16px rgba(0,0,0,.65), 0 0 0 1px rgba(41,163,106,.10);
  text-align: center;
  animation: agegate-pop .35s cubic-bezier(.2,1.2,.4,1);
}
@keyframes agegate-pop {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.age-gate-logo { display:flex; justify-content:center; margin-bottom: 1.1rem; }
.age-gate-eyebrow {
  display: inline-block; padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #6BD3A1; background: rgba(41,163,106,.14); border: 1px solid rgba(69,190,133,.35);
  margin-bottom: 1rem;
}
.age-gate-title {
  font-size: 1.6rem; font-weight: 700; line-height: 1.15;
  margin: 0 0 .8rem;
}
@media (min-width: 480px) { .age-gate-title { font-size: 1.85rem; } }
.age-gate-text {
  font-size: .9rem; color: rgba(255,255,255,.66);
  line-height: 1.55; margin: 0 0 1.5rem;
}
.age-gate-actions {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 480px) { .age-gate-actions { flex-direction: row; } .age-gate-actions > * { flex: 1; } }
.age-gate-help {
  font-size: .68rem; color: rgba(255,255,255,.4);
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.06);
}
.age-gate-help a { color: rgba(255,255,255,.65); text-decoration: underline; text-decoration-color: rgba(69,190,133,.4); }

/* global page scrollbar */
::-webkit-scrollbar { width:10px; height:10px; }
::-webkit-scrollbar-track { background:#15171a; }
::-webkit-scrollbar-thumb { background:#262d38; border-radius:999px; }
::-webkit-scrollbar-thumb:hover { background:#3a4250; }
