/* ============================================================
   Spinbara Bonus — unabhängiges Stylesheet (DE)
   Palette: Hintergrund #150F1F / Violett #7C3AED / Braun #8A5A36 / Weiss
   System-Font-Stack (kein Webfont) fuer PageSpeed. Prefix: spb
   ============================================================ */

:root {
    --spb-bg:        #150F1F;
    --spb-bg-2:      #1D1529;
    --spb-card:      #241A33;
    --spb-bar:       #110B19;
    --spb-violet:    #7C3AED;
    --spb-violet-2:  #9d63ff;
    --spb-brown:     #8A5A36;
    --spb-brown-2:   #b9824f;
    --spb-white:     #ffffff;
    --spb-mute:      #b3a6c4;
    --spb-line:      rgba(255,255,255,.08);
    --spb-rad:       18px;
    --spb-rad-s:     11px;
    --spb-bar-h:     68px;
    --spb-font:      "Trebuchet MS","Gill Sans",system-ui,sans-serif;
    --spb-ease:      .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
    font-family: var(--spb-font);
    background: var(--spb-bg);
    color: #ece6f4;
    line-height: 1.64;
    font-size: 15.5px;
    overflow-x: clip;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}
body::before { content: ""; position: fixed; inset: 0; background: url('../img/body-bg.webp') center/cover no-repeat; opacity: .55; z-index: -1; pointer-events: none; }
h1, h2, h3 { font-family: var(--spb-font); font-weight: 800; line-height: 1.2; color: var(--spb-white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 700; color: #fff; }
hr { border: 0; border-top: 1px solid var(--spb-line); margin: 36px 0; }

/* ===== Buttons ===== */
.spb-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 800; letter-spacing: .3px;
    border: none; cursor: pointer; border-radius: 12px;
    padding: 14px 28px; font-size: 14.5px;
    transition: transform var(--spb-ease), box-shadow var(--spb-ease), background var(--spb-ease);
    white-space: nowrap;
}
.spb-btn-main {
    background: linear-gradient(135deg, var(--spb-violet), var(--spb-violet-2));
    color: #fff;
    box-shadow: 0 8px 26px rgba(124,58,237,.4);
}
.spb-btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124,58,237,.55); }
.spb-btn-brown { background: linear-gradient(135deg, var(--spb-brown), var(--spb-brown-2)); color: #fff; }
.spb-btn-brown:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(138,90,54,.45); }
.spb-btn-line { background: rgba(255,255,255,.05); color: #fff; border: 1px solid var(--spb-line); }
.spb-btn-line:hover { background: rgba(255,255,255,.11); }
.spb-btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 10px; }

/* ===== Top bar (desktop) ===== */
.spb-top {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    height: var(--spb-bar-h); padding: 0 32px;
    background: var(--spb-bar);
    border-bottom: 1px solid var(--spb-line);
    position: sticky; top: 0; z-index: 60;
}
.spb-logo { display: inline-flex; align-items: center; }
.spb-logo img { height: 47px; width: auto; display: block; }
.spb-nav { display: flex; gap: 4px; align-items: center; }
.spb-nav a {
    padding: 9px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; color: #cabfd9;
    transition: background var(--spb-ease), color var(--spb-ease);
}
.spb-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.spb-nav a.spb-on { color: var(--spb-violet-2); }
.spb-top-cta { display: flex; align-items: center; }

/* ===== Mobile header ===== */
.spb-mtop {
    display: none; align-items: center; justify-content: space-between; gap: 12px;
    height: 58px; padding: 0 16px; background: var(--spb-bar);
    border-bottom: 1px solid var(--spb-line); position: sticky; top: 0; z-index: 60;
}
.spb-burger { width: 42px; height: 42px; background: transparent; border: 1px solid var(--spb-line); border-radius: 11px; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; cursor: pointer; }
.spb-burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }
.spb-mlogo { display: inline-flex; align-items: center; }
.spb-mlogo img { height: 47px; width: auto; display: block; }
.spb-mnav {
    position: fixed; top: 0; right: -300px; width: 280px; height: 100%; z-index: 80;
    background: var(--spb-bg-2); border-left: 1px solid var(--spb-line);
    padding: 22px 16px; display: flex; flex-direction: column; gap: 4px;
    transition: right .28s ease;
}
.spb-mnav.spb-open { right: 0; }
.spb-mnav a { padding: 13px 12px; border-radius: 10px; font-weight: 600; color: #d8cee6; }
.spb-mnav a:hover, .spb-mnav a.spb-hot { background: rgba(124,58,237,.16); color: var(--spb-violet-2); }
.spb-ovl { position: fixed; inset: 0; background: rgba(8,5,13,.62); z-index: 70; opacity: 0; visibility: hidden; transition: opacity .28s; }
.spb-ovl.spb-show { opacity: 1; visibility: visible; }

/* ===== Hero ===== */
.spb-hero {
    position: relative;
    background:
        linear-gradient(180deg, rgba(21,15,31,.5) 0%, rgba(21,15,31,.88) 72%, var(--spb-bg) 100%),
        radial-gradient(1000px 520px at 28% 14%, rgba(124,58,237,.28), transparent 62%),
        radial-gradient(800px 480px at 88% 88%, rgba(138,90,54,.2), transparent 60%),
        var(--spb-bg);
    overflow: hidden;
}
.spb-hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .5;
}
.spb-hero-inner {
    position: relative; z-index: 2; max-width: 1180px; margin: 0 auto;
    padding: 88px 32px 80px; text-align: center;
}
.spb-hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(124,58,237,.18); border: 1px solid rgba(124,58,237,.5);
    color: var(--spb-violet-2); padding: 7px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px; margin-bottom: 22px;
}
.spb-hero h1 {
    font-size: clamp(42px, 8vw, 76px); letter-spacing: .3px; margin-bottom: 8px;
    text-shadow: 0 4px 22px rgba(0,0,0,.5);
}
.spb-hero h1 b { background: linear-gradient(120deg, var(--spb-violet-2), var(--spb-brown-2)); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 900; }
.spb-hero-off { font-size: clamp(21px, 4vw, 32px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.spb-hero-off b { color: var(--spb-violet-2); }
.spb-hero-sub { color: #ddd3ea; font-size: 16px; margin-bottom: 30px; }
.spb-hero-cta { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.spb-hero-trust { margin-top: 24px; color: var(--spb-mute); font-size: 13px; }
.spb-hero-trust b { color: #fff; }

/* ===== Section frame ===== */
.spb-sec { max-width: 1180px; margin: 0 auto; padding: 60px 32px; }
.spb-sec h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 14px; }
.spb-sec h3 { font-size: 20px; margin: 28px 0 9px; color: #fff; }
.spb-sec p { margin-bottom: 14px; color: #d6cce4; }
.spb-sec a.spb-link { color: var(--spb-violet-2); font-weight: 600; }
.spb-sec a.spb-link:hover { text-decoration: underline; }
.spb-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.spb-head h2 { margin: 0; }

/* ===== Bonus highlight banner (early, bonus-angle) ===== */
.spb-promo {   }
.spb-promo-box {
    max-width: 920px; margin: 0 auto; text-align: center;
    border: 2px solid var(--spb-violet); border-radius: var(--spb-rad);
    padding: 38px 28px; overflow: hidden;
    background: linear-gradient(to right, #150F1F 0%, #150F1F 35%, transparent 75%), url('../img/promo-hero.webp') right center/cover no-repeat, #150F1F;
    min-height: 340px; position: relative;
}
.spb-promo-box::after { content: ""; position: absolute; inset: 0; box-shadow: 0 0 70px rgba(124,58,237,.28) inset; pointer-events: none; }
.spb-promo-box .spb-pre { text-transform: uppercase; letter-spacing: 1px; color: var(--spb-violet-2); font-weight: 800; font-size: 13px; }
.spb-promo-box .spb-big { font-size: clamp(28px, 5vw, 42px); font-weight: 900; color: #fff; margin: 8px 0; }
.spb-promo-box .spb-min { color: var(--spb-mute); margin-bottom: 20px; }

/* ===== Bonus cards (welcome / freispiele / cashback) ===== */
.spb-bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin: 26px 0; }
.spb-bonus-c { background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad); padding: 22px; position: relative; }
.spb-bonus-c .spb-tag { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--spb-brown-2); margin-bottom: 10px; }
.spb-bonus-c h3 { font-size: 19px; margin: 0 0 6px; color: #fff; }
.spb-bonus-c .spb-amt { font-size: 26px; font-weight: 900; color: var(--spb-violet-2); margin-bottom: 6px; }
.spb-bonus-c p { font-size: 13.5px; color: var(--spb-mute); margin: 0; }

/* ===== Games grid (NOT a rail — antifootprint divergence) ===== */
.spb-games {    }
.spb-grid-games { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px,1fr)); gap: 16px; margin-top: 24px; }
.spb-tile {
    background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad);
    overflow: hidden; transition: transform var(--spb-ease), border-color var(--spb-ease);
}
.spb-tile:hover { transform: translateY(-5px); border-color: rgba(124,58,237,.55); }
.spb-tile-img { position: relative; aspect-ratio: 1/1; background: linear-gradient(135deg, var(--spb-bg-2), var(--spb-bar)); }
.spb-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.spb-tile-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--spb-ease); }
.spb-tile:hover .spb-tile-play { opacity: 1; }
.spb-tile-play span { width: 48px; height: 48px; border-radius: 50%; background: rgba(124,58,237,.94); display: flex; align-items: center; justify-content: center; }
.spb-tile-play svg { width: 20px; height: 20px; fill: #fff; }
.spb-tile-meta { padding: 12px 13px; }
.spb-tile-meta strong { display: block; font-size: 14px; color: #fff; }
.spb-tile-meta small { color: var(--spb-mute); font-size: 12px; }

/* ===== Review layout ===== */
.spb-grid { display: grid; grid-template-columns: 1fr 350px; gap: 36px; align-items: start; }
.spb-prose p { margin-bottom: 14px; color: #d6cce4; }
.spb-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.spb-stat { background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad-s); padding: 15px; display: flex; flex-direction: column; gap: 3px; }
.spb-stat .spb-k { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--spb-mute); font-weight: 700; }
.spb-stat .spb-v { font-size: 17px; font-weight: 800; color: var(--spb-violet-2); }

/* sidebar card */
.spb-aside { background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad); padding: 22px; position: sticky; top: 86px; }
.spb-aside-tag { display: inline-block; background: linear-gradient(135deg, var(--spb-violet), var(--spb-violet-2)); color: #fff; font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; padding: 6px 13px; border-radius: 999px; margin-bottom: 14px; }
.spb-aside-name { font-size: 25px; font-weight: 900; }
.spb-aside-name span { color: var(--spb-violet-2); }
.spb-aside-lic { color: var(--spb-mute); font-size: 13px; margin-bottom: 14px; }
.spb-score { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--spb-line); border-bottom: 1px solid var(--spb-line); margin-bottom: 14px; }
.spb-score .spb-num { font-size: 35px; font-weight: 900; color: var(--spb-violet-2); }
.spb-starline { color: var(--spb-brown-2); letter-spacing: 2px; }
.spb-score small { display: block; color: var(--spb-mute); font-size: 11.5px; }
.spb-facts { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.spb-facts li { display: flex; justify-content: space-between; font-size: 13.5px; border-bottom: 1px dashed var(--spb-line); padding-bottom: 8px; }
.spb-facts li span:first-child { color: var(--spb-mute); }
.spb-facts li span:last-child { color: #fff; font-weight: 700; }
.spb-pros { margin-bottom: 16px; }
.spb-pros .spb-k { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--spb-violet-2); margin-bottom: 8px; letter-spacing: .6px; }
.spb-pros ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.spb-pros li { font-size: 13.5px; padding-left: 22px; position: relative; color: #d6cce4; }
.spb-pros li::before { content: "✦"; position: absolute; left: 0; color: var(--spb-violet-2); font-weight: 800; }

/* ===== App split ===== */
.spb-app {  }
.spb-app-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; }
.spb-app ul.spb-feat { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 18px 0; }
.spb-app ul.spb-feat li { padding-left: 26px; position: relative; color: #d6cce4; }
.spb-app ul.spb-feat li::before { content: "›"; position: absolute; left: 6px; color: var(--spb-violet-2); font-weight: 900; }
.spb-os { display: flex; gap: 12px; flex-wrap: wrap; }
.spb-phone img { max-width: 420px; margin: 0 auto; }

/* ===== Steps ===== */
.spb-steps { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 26px 0; }
.spb-step { flex: 1 1 200px; max-width: 250px; background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad); padding: 22px; text-align: center; }
.spb-step .spb-n { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--spb-violet), var(--spb-brown)); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.spb-step strong { display: block; color: #fff; margin-bottom: 4px; }
.spb-step small { color: var(--spb-mute); font-size: 12.5px; }

/* ===== Withdrawal bars ===== */
.spb-pay { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.spb-pay-row { background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad-s); padding: 15px 17px; }
.spb-pay-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; font-size: 14px; }
.spb-pay-top strong { color: #fff; }
.spb-pill { font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 999px; }
.spb-pill-fast { background: #27c24c; color: var(--spb-violet-2); }
.spb-pill-mid { background: rgba(185,130,79,.2); color: var(--spb-brown-2); }
.spb-pill-slow { background: rgba(255,255,255,.07); color: var(--spb-mute); }
.spb-track { height: 8px; border-radius: 6px; background: rgba(255,255,255,.06); overflow: hidden; }
.spb-track i { display: block; height: 100%; border-radius: 6px; }
.spb-fill-fast { background: #27c24c; }
.spb-fill-mid { background: var(--spb-brown-2); }
.spb-fill-slow { background: #7a5a72; }

/* ===== Trust grid ===== */
.spb-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; margin: 26px 0; }
.spb-trust-c { background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad); padding: 20px; text-align: center; }
.spb-trust-c .spb-ic { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--spb-violet-2); }
.spb-trust-c .spb-ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; }
.spb-trust-c strong { display: block; color: #fff; margin-bottom: 5px; }
.spb-trust-c small { color: var(--spb-mute); font-size: 12.5px; }

/* ===== Reviews ===== */
.spb-revs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; margin-top: 24px; }
.spb-rev { background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad); padding: 20px; }
.spb-rev-h { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.spb-av { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--spb-violet), var(--spb-brown)); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.spb-rev-h .spb-who { font-weight: 700; color: #fff; }
.spb-rev-h .spb-when { font-size: 12px; color: var(--spb-mute); }
.spb-rev .spb-rs { color: var(--spb-brown-2); letter-spacing: 2px; margin-bottom: 8px; }
.spb-rev p { font-size: 13.5px; color: #d6cce4; }

/* ===== FAQ ===== */
.spb-faq { max-width:1180px; margin: 0 auto; padding: 60px 32px; }
.spb-faq h2 { font-size: clamp(26px,4vw,34px); margin-bottom: 22px; text-align: center; }
.spb-q { background: var(--spb-card); border: 1px solid var(--spb-line); border-radius: var(--spb-rad-s); margin-bottom: 11px; overflow: hidden; }
.spb-q summary { padding: 17px 19px; font-weight: 700; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.spb-q summary::-webkit-details-marker { display: none; }
.spb-q summary::after { content: "+"; color: var(--spb-violet-2); font-weight: 900; }
.spb-q[open] summary::after { content: "–"; }
.spb-q .spb-a { padding: 0 19px 17px; color: #d2c7e0; font-size: 14px; }

/* ===== Footer ===== */
.spb-foot { background: var(--spb-bar); border-top: 1px solid var(--spb-line); padding: 46px 32px 28px; }
.spb-foot-top { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.spb-foot-brand .spb-logo { margin-bottom: 12px; }
.spb-foot-brand .spb-logo img { height: 56px; width: auto; display: block; }
.spb-foot-brand p { color: var(--spb-mute); font-size: 12.5px; line-height: 1.7; }
.spb-foot-col span.spb-ct { display: block; font-weight: 800; color: #fff; text-transform: uppercase; font-size: 12px; letter-spacing: .8px; margin-bottom: 12px; }
.spb-foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.spb-foot-col a { color: var(--spb-mute); font-size: 13.5px; }
.spb-foot-col a:hover { color: var(--spb-violet-2); }
.spb-pays { max-width: 1180px; margin: 28px auto 0; padding-top: 22px; border-top: 1px solid var(--spb-line); display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.spb-pays span { background: rgba(255,255,255,.05); border: 1px solid var(--spb-line); border-radius: 8px; padding: 6px 13px; font-size: 12px; font-weight: 700; color: #cabfd9; }
.spb-foot-bottom { max-width: 1180px; margin: 22px auto 0; padding-top: 20px; border-top: 1px solid var(--spb-line); text-align: center; }
.spb-foot-bottom p { color: var(--spb-mute); font-size: 12px; line-height: 1.7; margin-bottom: 10px; }
.spb-foot-bottom .spb-cr { color: #8a7c9c; }

/* ===== Cookie banner ===== */
.spb-cookie {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
    max-width: 580px; margin: 0 auto;
    background: var(--spb-bg-2); border: 1px solid var(--spb-violet); border-radius: var(--spb-rad);
    padding: 19px 21px; box-shadow: 0 18px 44px rgba(0,0,0,.55);
    transform: translateY(150%); transition: transform .35s ease;
}
.spb-cookie.spb-vis { transform: translateY(0); }
.spb-cookie .spb-ct { font-weight: 800; color: #fff; margin-bottom: 6px; }
.spb-cookie .spb-cx { font-size: 13px; color: #d2c7e0; margin-bottom: 14px; }
.spb-cookie .spb-cx a { color: var(--spb-violet-2); }
.spb-cookie-btns { display: flex; gap: 10px; }

/* ===== Legal / generic pages ===== */
.spb-legal { max-width: 840px; margin: 0 auto; padding: 52px 32px 62px; }
.spb-legal h1 { font-size: 31px; margin-bottom: 8px; }
.spb-legal .spb-upd { color: var(--spb-mute); font-size: 13px; margin-bottom: 26px; }
.spb-legal h2 { font-size: 20px; margin: 28px 0 10px; color: var(--spb-violet-2); }
.spb-legal p, .spb-legal li { color: #d2c7e0; margin-bottom: 12px; font-size: 14.5px; }
.spb-legal ul { padding-left: 22px; margin-bottom: 12px; }
.spb-bc { font-size: 13px; color: var(--spb-mute); margin-bottom: 18px; }
.spb-bc a { color: var(--spb-violet-2); }

/* ===== 404 ===== */
.spb-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.spb-404 h1 { font-size: clamp(70px, 18vw, 140px); background: linear-gradient(120deg, var(--spb-violet-2), var(--spb-brown-2)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.spb-404 p { color: #d2c7e0; margin: 12px 0 24px; max-width: 460px; }

/* ===== Redirect interstitial ===== */
.spb-redir { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.spb-redir-box { max-width: 420px; }
.spb-spin { width: 54px; height: 54px; border: 5px solid rgba(124,58,237,.2); border-top-color: var(--spb-violet); border-radius: 50%; margin: 0 auto 22px; animation: spb-rot 1s linear infinite; }
@keyframes spb-rot { to { transform: rotate(360deg); } }
.spb-redir h1 { font-size: 26px; margin-bottom: 8px; }
.spb-redir p { color: var(--spb-mute); }
.spb-redir a { color: var(--spb-violet-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .spb-grid { grid-template-columns: 1fr; }
    .spb-aside { position: static; }
    .spb-app-grid { grid-template-columns: 1fr; }
    .spb-phone { order: -1; }
    .spb-foot-top { grid-template-columns: 1fr 1fr; }
    .spb-foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .spb-top { display: none; }
    .spb-mtop { display: flex; }
    .spb-hero-img { content: url('../img/hero-bg-mobile.webp'); }
    /* dvh-fit hero: whole block + button fit one screen */
    .spb-hero-inner {
        min-height: calc(100svh - 58px);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        padding: 30px 20px;
    }
    .spb-sec, .spb-faq { padding: 42px 18px; }
    .spb-stats { grid-template-columns: 1fr; }
    .spb-foot-top { grid-template-columns: 1fr; gap: 22px; text-align: center; }
    .spb-foot-col ul { align-items: center; }
}

@media (min-width: 761px) {
    .spb-foot-top { text-align: center; }
    .spb-foot-col ul { align-items: center; }
    .spb-foot-brand { text-align: left; }
}

/*HEROFIX*/
@media (min-width:761px){ .spb-hero{ min-height:940px; display:flex; align-items:center; } .spb-hero-inner{ width:100%; } }

/*HEROLEFT*/
@media (min-width:761px){ .spb-hero > div{ text-align:left; align-items:flex-start; } .spb-hero > div h1, .spb-hero > div p{ max-width:640px; } }

/*BONUSLEFT*/
@media (min-width:761px){ .spb-promo-box{ text-align:left; align-items:flex-start; justify-content:center; } .spb-promo-box > *{ max-width:62%; margin-left:0; margin-right:auto; } }

/*PAYBRAND*/
.spb-pay span, .spb-pays span{ border:none !important; color:#fff !important; font-weight:700 !important; }
.pay-visa{background:#1A1F71 !important}
.pay-mastercard{background:linear-gradient(90deg,#EB001B,#F79E1B) !important}
.pay-maestro{background:linear-gradient(90deg,#0099DF,#ED0006) !important}
.pay-skrill{background:#862165 !important}
.pay-neteller{background:#6FBF4F !important}
.pay-payz,.pay-ecopayz{background:#1F6FC4 !important}
.pay-usdt,.pay-tether{background:#26A17B !important}
.pay-bitcoin{background:#F7931A !important}
.pay-ethereum{background:#627EEA !important}
.pay-litecoin{background:#345D9D !important}
.pay-ideal{background:#C9216B !important}
.pay-bancontact{background:#005498 !important}
.pay-interac{background:#F6A01A !important;color:#1a1a1a !important}
.pay-upi{background:#0B6E4F !important}
.pay-paytm{background:#00BAF2 !important}
.pay-phonepe{background:#5F259F !important}
.pay-imps,.pay-netbanking,.pay-rupay{background:#1565C0 !important}
.pay-paysafecard,.pay-paysafe{background:#00A3E0 !important}
.pay-trustly{background:#14805E !important}
.pay-sofort{background:#EF809F !important}
.pay-applepay{background:#000 !important}
.pay-googlepay{background:#4285F4 !important}
.pay-mifinity{background:#0E2A57 !important}
.pay-jeton{background:#E2231A !important}

/*HEROLEFT2*/
@media (min-width:761px){ .spb-hero > div{ text-align:left !important; align-items:flex-start !important; max-width:760px !important; margin-left:clamp(24px,6vw,150px) !important; margin-right:auto !important; } .spb-hero > div > *{ margin-left:0 !important; } }

/*HEROFADE*/
@media (min-width:761px){ .spb-hero{ -webkit-mask-image:linear-gradient(to bottom,#000 0%,#000 calc(100% - 170px),transparent 100%); mask-image:linear-gradient(to bottom,#000 0%,#000 calc(100% - 170px),transparent 100%); } }

/*CARDCENTER*/
.spb-aside-name,.spb-aside-lic{ text-align:center; }
.spb-aside-tag{ display:block; width:fit-content; margin-left:auto; margin-right:auto; }

/*HBAR*/
.spb-sec h2{ border-left:4px solid #7C3AED; padding-left:15px; }
.spb-sec h3,.spb-sec h4{ border-left:3px solid #7C3AED; padding-left:12px; }

/*BONUSPULSE*/
.spb-hero-off{ font-size:clamp(26px,4.6vw,42px) !important; line-height:1.1 !important; }
@keyframes spbpulse{ 0%,100%{ transform:scale(1); box-shadow:0 0 0 0 rgba(124,58,237,.5);} 50%{ transform:scale(1.05); box-shadow:0 0 24px 5px rgba(124,58,237,.45);} }
.spb-hero-cta a{ animation:spbpulse 1.7s ease-in-out infinite; }
.spb-hero-cta a:hover{ animation-play-state:paused; }

/*HEROTEXT*/
.spb-hero h1{ line-height:1.08 !important; margin-bottom:12px !important; }
.spb-hero-off{ line-height:1.12 !important; margin-bottom:10px !important; }
.spb-hero-off2{ font-size:clamp(16px,2.3vw,21px); font-weight:700; line-height:1.5; color:#fff; opacity:.92; margin-bottom:26px; max-width:560px; }
@media (min-width:761px){ .spb-hero > div h1, .spb-hero > div p{ max-width:720px !important; } }

/*BONUSBIG*/
@media (min-width:761px){ .spb-hero h1{ font-size:clamp(34px,5.2vw,50px) !important; } .spb-hero-off{ font-size:clamp(40px,6.6vw,64px) !important; } }
@media (max-width:760px){ .spb-hero h1{ font-size:42px !important; } .spb-hero-off{ font-size:48px !important; } }

/*NAVFIX*/
.spb-nav{ flex:1; justify-content:center; }
.spb-logo{ flex-shrink:0; }
.spb-top-cta{ flex-shrink:0; }

/*STATSFACTS*/
.spb-stats{ grid-template-columns:repeat(4,1fr) !important; }
@media (max-width:760px){ .spb-stats{ grid-template-columns:repeat(2,1fr) !important; } }
.spb-stat{ text-align:center; align-items:center !important; gap:5px !important; padding:18px 12px !important; }
.spb-stat .stat-ic{ width:26px; height:26px; color:#9B7BFF; margin-bottom:5px; }
.spb-stat .spb-k{ color:#9B7BFF !important; font-size:13px !important; }
.spb-stat .spb-v{ color:#e8eef7 !important; font-size:13.5px !important; font-weight:700 !important; }
.spb-stat:first-child{ border-color:#9B7BFF !important; box-shadow:inset 0 0 0 1px #9B7BFF55; }

/*HEROPOLISH*/
@media (min-width:761px){ .spb-hero-off{ white-space:nowrap; } }
.spb-hero-cta a{ border-radius:999px !important; }
.spb-hero h1, .spb-hero-off{ -webkit-text-stroke:6px #000; paint-order:stroke fill; text-shadow:0 4px 16px rgba(0,0,0,.55); }
.spb-hero-off2, .spb-hero-badge{ -webkit-text-stroke:4px #000; paint-order:stroke fill; text-shadow:0 2px 9px rgba(0,0,0,.7); }

/*TOPGLOW*/
.spb-nav a.spb-on{ color:#9B7BFF !important; text-shadow:0 0 16px rgba(155,123,255,0.85), 0 0 6px rgba(155,123,255,0.6); }
.spb-nav a:not([href*="#"]):not(.spb-on){ color:#0a0a0a !important; background:#9B7BFF; border-radius:999px; padding:7px 17px !important; font-weight:800; box-shadow:0 0 18px rgba(155,123,255,0.7); }
.spb-nav a:not([href*="#"]):not(.spb-on):hover{ filter:brightness(1.08); background:#9B7BFF !important; }

/*HEROLLB*/
@media (min-width:761px){ .spb-hero > div{ margin-left:clamp(16px,3vw,60px) !important; margin-top:11vh !important; } .spb-hero h1, .spb-hero-off, .spb-hero-off2{ font-weight:900 !important; } }

/*PHONESAFE*/
.spb-phone{ display:block; } .spb-phone img{ display:block !important; max-width:420px; width:100%; height:auto; margin:0 auto; }

/*BONUSWIDE*/
.spb-bonus .spb-sec{ max-width:1120px !important; }

/*BOXWIDE*/
@media (min-width:761px){ .spb-promo-box{ max-width:1080px !important; } }

/*BONUSBB*/
.spb-promo-box{ transition:box-shadow .35s ease, border-color .35s ease; }
.spb-promo-box:hover{ box-shadow:0 0 50px rgba(155,123,255,0.5), inset 0 0 70px rgba(155,123,255,0.16); border-color:#9B7BFF !important; }
.spb-promo-box .spb-big{ color:#9B7BFF !important; text-transform:uppercase; letter-spacing:.5px; }
.spb-promo-box a{ animation:spbpulse 1.7s ease-in-out infinite; }
.spb-promo-box a:hover{ animation-play-state:paused; }

/*TIGHTEN*/
.spb-sec, .spb-faq{ padding-top:30px !important; padding-bottom:30px !important; }
.spb-stats{ margin:16px 0 !important; }
.spb-bonus, .spb-games, .spb-app{ padding-top:6px; padding-bottom:6px; }

/*RADVAR*/
.spb-card, .spb-tile, .spb-tile-c, .spb-stat, .spb-aside, .spb-rev, .spb-card-img, .spb-tile-img{ border-radius:14px !important; }

/*BTNPULSE*/
.spb-promo-box [class*="btn"]{ animation:spbpulse 1.7s ease-in-out infinite; }
.spb-promo-box:hover [class*="btn"]{ animation-play-state:paused; }

/*PAYLOGO*/
span[class^="pay-"]{ background:#fff !important; padding:8px 12px !important; border-radius:7px !important; display:inline-flex !important; align-items:center; border:none !important; vertical-align:middle; box-shadow:0 1px 3px rgba(0,0,0,.25); }
span[class^="pay-"] svg{ height:20px; width:auto; display:block; }

/*MOBHERO*/
@media (max-width:760px){
  .spb-hero-inner, .spb-hero > div{ min-height:calc(75svh - 42px) !important; justify-content:flex-end !important; padding-bottom:40px !important; }
  .spb-hero-img{ object-position:top center !important; }
}

/*MOBTEXT*/
@media (max-width:760px){
  .spb-hero h1{ font-size:clamp(46px,14vw,56px) !important; }
  .spb-hero-off{ font-size:clamp(48px,15vw,60px) !important; }
  .spb-hero-off2{ font-size:19px !important; }
}

/*MOBREV*/
@media (max-width:760px){
  .spb-grid{ display:flex !important; flex-direction:column !important; }
  .spb-aside{ order:-1 !important; margin-bottom:8px; }
}

/*MOBFOOT*/
@media (max-width:760px){
  .spb-foot-top{ grid-template-columns:repeat(3,1fr) !important; text-align:left !important; gap:22px 14px !important; }
  .spb-foot-top > :first-child{ grid-column:1 / -1 !important; margin-bottom:4px; }
  .spb-foot-top ul{ align-items:flex-start !important; }
  .spb-foot-top h3, .spb-foot-top h4, .spb-foot-top li, .spb-foot-top a, .spb-foot-top p{ text-align:left !important; }
}

/*STEPSBB*/
.spb-steps{ display:flex !important; flex-wrap:nowrap !important; justify-content:space-between !important; align-items:flex-start !important; gap:22px !important; }
.spb-step{ flex:1 1 0 !important; max-width:200px !important; background:none !important; border:none !important; box-shadow:none !important; padding:10px 4px !important; position:relative !important; }
.spb-step > :first-child{ width:64px !important; height:64px !important; min-width:64px !important; border-radius:50% !important; display:flex !important; align-items:center !important; justify-content:center !important; font-size:22px !important; font-weight:800 !important; color:#fff !important; background:linear-gradient(135deg, #9B7BFF, #604c9e) !important; box-shadow:0 8px 24px rgba(155,123,255,0.38) !important; margin:0 auto 14px !important; }
.spb-step strong{ text-transform:uppercase !important; color:#9B7BFF !important; letter-spacing:1px !important; font-size:14px !important; }
.spb-step:not(:last-child)::after{ content:''; position:absolute; top:32px; right:-16px; width:13px; height:13px; border-top:3px solid #9B7BFF; border-right:3px solid #9B7BFF; border-radius:2px; transform:rotate(45deg); }
@media (max-width:760px){
  .spb-steps{ flex-direction:column !important; align-items:center !important; gap:22px !important; }
  .spb-step{ max-width:320px !important; }
  .spb-step:not(:last-child)::after{ top:auto !important; bottom:-16px !important; right:50% !important; transform:translateX(50%) rotate(135deg) !important; }
}

/*STEPICON*/
.spb-step > :first-child svg{ width:30px !important; height:30px !important; stroke:#fff !important; fill:none !important; }

/*STEPNEUTRAL*/
.spb-step > :first-child{ background:linear-gradient(150deg, #333c4f, #1e2431) !important; border:2px solid #9B7BFF !important; box-shadow:0 6px 18px rgba(0,0,0,.32), inset 0 0 14px rgba(155,123,255,0.12) !important; }
.spb-step > :first-child svg{ stroke:#9B7BFF !important; }

/*MOBH2*/
@media (max-width:760px){
  section:has(> .spb-grid){ display:flex !important; flex-direction:column !important; }
  .spb-grid{ display:contents !important; }
  .spb-aside{ order:1 !important; }
  section:has(> .spb-grid) > h2{ order:2 !important; margin-top:14px !important; margin-bottom:10px !important; }
  .spb-grid > :not(.spb-aside){ order:3 !important; }
}

/*MOBCARD*/
@media (max-width:760px){
  .spb-aside{ align-self:center !important; max-width:430px !important; width:100% !important; margin-left:auto !important; margin-right:auto !important; }
}

/*MOBH2FIX*/
@media (max-width:760px){
  section:has(> .spb-grid) > :not(h2):not(.spb-grid){ order:4 !important; }
}

/*CARDNAME*/
.spb-aside-name{ font-size:33px !important; font-weight:900 !important; letter-spacing:.3px !important; line-height:1.08 !important; text-shadow:0 1px 2px rgba(0,0,0,.28); }

/*HOMEPILL*/
.spb-nav a.spb-on{ color:#0a0a0a !important; background:#9B7BFF; border-radius:999px; padding:7px 17px !important; font-weight:800; box-shadow:0 0 18px rgba(155,123,255,0.7); text-shadow:none !important; }
.spb-nav a.spb-on:hover{ filter:brightness(1.08); }

/*BONUSIMG*/
.spb-promo-box{ background:linear-gradient(180deg, rgba(8,12,20,.30), rgba(8,12,20,.50)), url('../img/promo-hero.webp') right center/cover no-repeat !important; }

/*HOMECLR*/
.spb-nav a.spb-on{ background:#2F6FED !important; color:#fff !important; box-shadow:0 0 16px rgba(47,111,237,.55) !important; }
.spb-nav a.spb-on:hover{ filter:brightness(1.08); background:#2F6FED !important; }

/*HEROFIT*/
.spb-hero-off{ font-size:clamp(28px,3.5vw,44px) !important; line-height:1.12 !important; }
@media (max-width:760px){ .spb-hero-off{ font-size:clamp(24px,6.8vw,38px) !important; } }

/*BONUSIMG2*/
.spb-promo-box{ background:linear-gradient(180deg, rgba(8,12,20,.10), rgba(8,12,20,.24)), url('../img/promo-hero.webp') right center/cover no-repeat !important; }
@media (max-width:760px){
  .spb-promo-box{ background:url('../img/promo-hero.webp') center center/cover no-repeat !important; }
  .spb-promo-box p{ text-shadow:0 2px 10px rgba(0,0,0,.95), 0 1px 4px rgba(0,0,0,.88) !important; }
}

/*SPBFIX*/
.spb-hero h1, .spb-hero h1 b{ -webkit-text-stroke:0 !important; text-shadow:none !important; }
.spb-hero h1 b{ background:linear-gradient(120deg,#C9A3FF,#E8B98A) !important; -webkit-background-clip:text !important; background-clip:text !important; -webkit-text-fill-color:transparent !important; color:transparent !important; filter:drop-shadow(0 2px 6px rgba(0,0,0,.55)); }
.spb-hero-off{ overflow-wrap:break-word; word-break:break-word; hyphens:auto; }
.spb-bonus-c{ position:relative; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; cursor:pointer; }
.spb-bonus-c:hover{ transform:translateY(-4px); box-shadow:0 12px 32px rgba(155,123,255,.32); border-color:#9B7BFF !important; }
.spb-bonus-link{ position:absolute; inset:0; z-index:2; }
.spb-bonus-c > :not(.spb-bonus-link){ position:relative; z-index:1; }

/*MENUPRETTY*/
.spb-mnav{ width:min(82vw,322px) !important; padding:20px 14px !important; gap:5px !important; border-right:none !important; box-shadow:10px 0 44px rgba(0,0,0,.55), inset 0 80px 80px -80px rgba(155,123,255,0.1) !important; transition:left .34s cubic-bezier(.4,0,.2,1) !important; }
.spb-mnav a{ padding:14px 16px !important; border-radius:12px !important; font-weight:700 !important; position:relative !important; transition:background .2s ease, color .2s ease, padding-left .2s ease !important; }
.spb-mnav a::before{ content:''; position:absolute; left:7px; top:50%; transform:translateY(-50%) scaleY(0); width:3px; height:56%; background:#9B7BFF; border-radius:3px; transition:transform .2s ease; }
.spb-mnav a:hover{ background:rgba(155,123,255,0.16) !important; color:#fff !important; padding-left:23px !important; }
.spb-mnav a:hover::before{ transform:translateY(-50%) scaleY(1); }
.spb-mnav a.spb-hot{ background:#9B7BFF !important; color:#0a0a0a !important; font-weight:800 !important; box-shadow:0 6px 18px rgba(155,123,255,0.5) !important; margin-top:8px; padding-left:16px !important; }
.spb-mnav a.spb-hot::before{ display:none; }
.spb-mnav a.spb-hot:hover{ filter:brightness(1.08); padding-left:16px !important; }
.spb-ovl{ background:rgba(4,8,16,.5) !important; backdrop-filter:blur(4px) !important; -webkit-backdrop-filter:blur(4px) !important; transition:opacity .3s ease, visibility .3s ease !important; }

/*MENUHIDE*/
.spb-mnav{ left:-360px; }
.spb-mnav.spb-open{ left:0; }

/*HEROBRIGHT*/
.spb-hero-img{ opacity:.88 !important; }
.spb-hero-bg{ opacity:1 !important; filter:none !important; }
.spb-hero h1, .spb-hero-off, .spb-hero-off2{ text-shadow:0 2px 13px rgba(0,0,0,.7), 0 0 34px rgba(0,0,0,.45) !important; }

/*SPBGAMES*/
.spb-grid-games{ display:flex !important; grid-template-columns:none !important; overflow-x:auto; scroll-snap-type:x mandatory; gap:16px; padding-bottom:10px; scrollbar-width:none; -ms-overflow-style:none; }
.spb-grid-games::-webkit-scrollbar{ display:none; }
.spb-tile{ flex:0 0 200px !important; scroll-snap-align:start; }
@media (max-width:760px){ .spb-tile{ flex:0 0 150px !important; } }

/*NAVCOLORS*/
.spb-nav a:not([href*="#"]):not(.spb-logo):nth-child(2){ background:#E0566A !important; color:#fff !important; box-shadow:0 0 14px rgba(224,86,106,0.5) !important; }
.spb-nav a:not([href*="#"]):not(.spb-logo):nth-child(3){ background:#2EBF7E !important; color:#06301f !important; box-shadow:0 0 14px rgba(46,191,126,0.5) !important; }
.spb-nav a:not([href*="#"]):not(.spb-logo):nth-child(4){ background:#F5A623 !important; color:#211500 !important; box-shadow:0 0 14px rgba(245,166,35,0.5) !important; }
.spb-nav a:not([href*="#"]):not(.spb-logo):nth-child(5){ background:#9B7BFF !important; color:#fff !important; box-shadow:0 0 14px rgba(155,123,255,0.5) !important; }
.spb-nav a:not([href*="#"]):not(.spb-logo):nth-child(6){ background:#17B6C9 !important; color:#04313a !important; box-shadow:0 0 14px rgba(23,182,201,0.5) !important; }

/*HEROBIG*/
.spb-hero h1{ font-size:clamp(52px,7.6vw,88px) !important; line-height:1.04 !important; }
.spb-hero-off{ font-size:clamp(42px,6vw,70px) !important; line-height:1.08 !important; }
@media (max-width:760px){ .spb-hero h1{ font-size:clamp(46px,14vw,66px) !important; } .spb-hero-off{ font-size:clamp(38px,12vw,58px) !important; } }

/*CARDCTR2*/
.spb-aside-name{ justify-content:center !important; text-align:center !important; }
.spb-aside-lic, .spb-aside-sub{ text-align:center !important; justify-content:center !important; }

/*SPBHOVER*/
.spb-bonus-c{ transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease !important; }
.spb-bonus-c:hover{ transform:translateY(-6px) !important; box-shadow:0 18px 44px rgba(155,123,255,.5) !important; border-color:#9B7BFF !important; background:linear-gradient(165deg, rgba(155,123,255,.18), var(--spb-card) 70%) !important; }
.spb-bonus-c:hover .spb-amt{ color:#C9A3FF !important; }
.spb-bonus-link{ position:absolute !important; inset:0 !important; z-index:3 !important; border-radius:var(--spb-rad); }

/*SPBTAP*/
.spb-bonus-c:active{ transform:translateY(-4px) !important; box-shadow:0 16px 40px rgba(155,123,255,.5) !important; border-color:#9B7BFF !important; background:linear-gradient(165deg, rgba(155,123,255,.2), var(--spb-card) 70%) !important; }
@media (hover:none){ .spb-bonus-c{ border-color:rgba(155,123,255,.45) !important; } }

/*CMPTABLE*/
.cmp-table{ width:100%; border-collapse:collapse; margin:18px 0 6px; font-size:15px; }
.cmp-table th,.cmp-table td{ padding:11px 14px; text-align:left; border-bottom:1px solid rgba(128,128,128,.22); }
.cmp-table thead th{ font-weight:800; background:#9B7BFF22; color:inherit; }
.cmp-table tbody td:first-child{ font-weight:600; }
.cmp-table tbody tr:hover{ background:rgba(128,128,128,.06); }
.cmp-table td:nth-child(2){ font-weight:600; color:#9B7BFF; }
@media (max-width:600px){ .cmp-table{ font-size:13.5px; } .cmp-table th,.cmp-table td{ padding:9px 9px; } }
