/* ============================================================
   BITSTAKE LAYOUT — Top Nav, No Sidebar
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* Esconde scrollbar para evitar shift no header */
html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

:root {
    --bg-body: var(--t-bg-body-top, #1a1a22);
    --bg-header: var(--t-bg-header, #22222c);
    --bg-panel: var(--t-bg-panel, #24242e);
    --bg-panel-2: var(--t-bg-panel2, #2a2a34);
    --bg-card: var(--t-bg-card, #26262f);
    --border-subtle: var(--t-border, rgba(255,255,255,.07));
    --text-primary: var(--t-text-primary, #ffffff);
    --text-secondary: var(--t-text-secondary, #9ca3af);
    --text-muted: var(--t-text-muted, var(--t-text-muted,#6b7280));
    --accent: var(--t-purple, #8b5cf6);
    --accent-hover: var(--t-purple-hover, #a78bfa);
    --accent-glow: var(--t-glow-accent, rgba(139,92,246,.25));
    --green: var(--t-success, #22c55e);
    --red: var(--t-danger, #ef4444);
    --pink: #ec4899;
    --blue: var(--t-info, #3b82f6);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --font: 'Nunito', 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    height: 100%;
    overflow: hidden;
    background: var(--bg-body, #1a1a22);
}

body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: var(--bg-body, #1a1a22);
}

.bs-layout {
    height: 100vh;
    height: calc(100vh - var(--layout-offset, 74px));
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

/* ===== TOP HEADER ===== */
.bs-header {
    position: sticky;
    top: 0;
    flex-shrink: 0;
    z-index: 200;
    background: var(--t-bg-header, #1e1e28);
    border-bottom: 1px solid rgba(255,255,255,.06);
    height: 74px;
}

.bs-content {
    flex: 1;
    overflow-y: auto;
    overflow-y: overlay;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    overflow-anchor: none;
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}
.bs-content::-webkit-scrollbar { width: 0; background: transparent; }

.bs-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 24px;
    height: 74px;
    max-width: 1600px;
    margin: 0 auto;
}
.bs-header-inner .bs-search-box { display: none; }

.bs-logo { display: flex; align-items: center; gap: 4px; text-decoration: none; flex-shrink: 0; }
.bs-logo-img { height: 44px; max-width: 190px; object-fit: contain; }
.bs-logo-text { font-size: 26px; font-weight: 900; letter-spacing: .5px; }
.bs-logo-text .t1 { color: #fff; }
.bs-logo-text .t2 { color: var(--accent); }

.bs-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.bs-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s ease;
    white-space: nowrap;
    background: transparent;
}
.bs-nav-link:hover { color: #fff; background: rgba(255,255,255,.07); box-shadow: 0 6px 12px -2px rgba(62,168,200,.4); }
.bs-nav-link.active { color: #fff; background: var(--t-nav-active, #3ea8c8); box-shadow: 0 6px 14px -2px rgba(62,168,200,.45); }
.bs-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Esportes - mesmo estilo dos outros links */
.bs-nav-esportes { }

.bs-nav-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: .6;
    transition: opacity .15s ease;
}
.bs-nav-link:hover .bs-nav-icon,
.bs-nav-link.active .bs-nav-icon { opacity: 1; }

.bs-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
}

.bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    padding: 0 24px;
    border: none;
    border-radius: 10px;
    font-family: 'Nunito', var(--font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .2px;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
    text-decoration: none;
}

.bs-btn-outline {
    background: var(--t-btn-secondary-bg, #ffffff);
    border: 1px solid var(--t-btn-secondary-bg, #ffffff);
    color: var(--t-btn-secondary-text, #1a1a2e);
}
.bs-btn-outline:hover { background: #f0f0f0; border-color: #f0f0f0; color: #1a1a2e; }

.bs-btn-primary {
    background: var(--t-btn-primary-bg, var(--accent));
    color: var(--t-btn-primary-text, #fff);
}
.bs-btn-primary:hover { background: var(--accent-hover); }

.bs-btn-accent {
    background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
    color: #fff;
    border: none;
    font-weight: 700;
}
.bs-btn-accent:hover { opacity: .9; transform: translateY(-1px); }

.bs-btn-sm { height: 42px; padding: 0 26px; font-size: 15px; }

.bs-header-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: none;
    border: none;
    color: var(--t-header-icon, rgba(255,255,255,.45));
    cursor: pointer;
    transition: color .15s ease;
    text-decoration: none;
    font-family: inherit;
}
.bs-header-icon:hover { color: #fff; }
.bs-header-icon { position: relative; }

/* Notification bell in bs-header */
.bs-header-icon .notif-badge {
    position: absolute;
    top: 2px; right: 2px;
    min-width: 16px; height: 16px;
    padding: 0 4px;
    border-radius: 99px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
}

/* Balance pill in bs-header */
.bs-balance-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
    transition: all .35s ease;
    white-space: nowrap;
    font-family: inherit;
}
.bs-balance-pill:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
}
.bs-balance-pill.pill--bonus {
    background: color-mix(in srgb, var(--t-accent,#CBBE89) 12%, transparent);
    border-color: color-mix(in srgb, var(--t-accent,#CBBE89) 35%, transparent);
    box-shadow: 0 0 18px color-mix(in srgb, var(--t-accent,#CBBE89) 18%, transparent);
}
.bs-balance-pill.pill--bonus .bs-balance-coin { color: #1a1a11; background: var(--t-accent,#CBBE89); border-color: var(--t-accent,#CBBE89); }
.bs-balance-pill.pill--bonus .bs-balance-amount { color: var(--t-accent,#CBBE89); }
.bs-balance-pill.pill--real {
    background: rgba(16,185,129,.1);
    border-color: rgba(16,185,129,.3);
    box-shadow: 0 0 18px rgba(16,185,129,.12);
}
.bs-balance-pill.pill--real .bs-balance-coin { color: #0f172a; background: #10b981; border-color: #10b981; }
.bs-balance-pill.pill--real .bs-balance-amount { color: #10b981; }
/* Botao Deposite com moeda girando */
.bs-deposit-spin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 10px;
    border-radius: 22px;
    border: none;
    background: linear-gradient(135deg, var(--t-btn-deposit-bg, #10b981), var(--t-btn-deposit-bg, #0d9668));
    color: var(--t-btn-deposit-text, #fff);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
    font-family: inherit;
    box-shadow: 0 2px 12px rgba(16,185,129,.3);
    position: relative;
    overflow: hidden;
}
.bs-deposit-spin-btn::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
    animation: depositShine 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes depositShine {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}
.bs-deposit-spin-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(16,185,129,.5);
    background: linear-gradient(135deg, #14c990, #10b981);
}
.bs-deposit-coin {
    width: 26px; height: 26px;
    position: relative;
    perspective: 400px;
    flex-shrink: 0;
}
.bs-deposit-coin-front, .bs-deposit-coin-back {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    backface-visibility: hidden;
    animation: coinFlip 3s ease-in-out infinite;
}
.bs-deposit-coin-front {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #7a5a00;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(255,215,0,.4);
}
.bs-deposit-coin-back {
    background: linear-gradient(135deg, #ffaa00, #ffd700);
    font-size: 14px;
    animation: coinFlipBack 3s ease-in-out infinite;
}
@keyframes coinFlip {
    0%, 40% { transform: rotateY(0deg); }
    50%, 90% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}
@keyframes coinFlipBack {
    0%, 40% { transform: rotateY(180deg); }
    50%, 90% { transform: rotateY(360deg); }
    100% { transform: rotateY(540deg); }
}
.bs-deposit-spin-text { letter-spacing: .3px; text-shadow: 0 1px 2px rgba(0,0,0,.2); }
.bs-deposit-spin-badge {
    padding: 2px 7px;
    border-radius: 8px;
    background: rgba(255,255,255,.2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .3px;
    animation: badgeBounce 2s ease-in-out infinite;
}
@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@media (max-width: 960px) {
    .bs-deposit-spin-btn { padding: 6px 10px; gap: 5px; }
    .bs-deposit-spin-text { display: none; }
    .bs-deposit-spin-badge { font-size: 9px; }
}

/* Modo classico: wrapper invisivel no layout (botao Deposite + saldo pill separados) */
.bs-header-wallet-classic { display: contents; }
.bs-header-wallet-classic .bs-balance-stack-mobile { display: none !important; }

/* Modo combo: pill 2-linhas (R$ real + B$ bonus) + botao '+' grudado - desktop e mobile */
.bs-header-wallet-combo {
    display: inline-flex !important;
    align-items: stretch;
    gap: 0;
    flex-shrink: 0;
}
.bs-header-wallet-combo .header-balance-wrap { order: 1; }
.bs-header-wallet-combo .bs-deposit-spin-btn { order: 2; }

/* Esconde a versao antiga do pill (coin + amount + caret) */
.bs-header-wallet-combo .bs-balance-coin,
.bs-header-wallet-combo .bs-balance-amount,
.bs-header-wallet-combo .bs-balance-caret { display: none !important; }

/* Pill: retangulo escuro com as 2 linhas (R$ real + B$ bonus) */
.bs-header-wallet-combo .bs-balance-pill {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 2px !important;
    height: 44px !important;
    padding: 4px 12px !important;
    border-radius: 12px 0 0 12px !important;
    background: rgba(0,0,0,.35) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-right: none !important;
}

.bs-balance-stack-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}
.bs-balance-stack-mobile .bsm-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bs-balance-stack-mobile .bsm-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    color: #0f172a;
    flex-shrink: 0;
}
.bs-balance-stack-mobile .bsm-dot-real { background: #10b981; }
.bs-balance-stack-mobile .bsm-dot-bonus { background: var(--t-accent,#CBBE89); }
.bs-balance-stack-mobile .bsm-val {
    font-size: 13px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.bs-balance-stack-mobile .bsm-val-real { color: #10b981; }
.bs-balance-stack-mobile .bsm-val-bonus { color: var(--t-accent,#CBBE89); }

/* Botao '+' quadrado grudado na direita do pill */
.bs-header-wallet-combo .bs-deposit-spin-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 0 12px 12px 0 !important;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    font-size: 0 !important;
}
.bs-header-wallet-combo .bs-deposit-spin-btn::after {
    content: '+';
    font-size: 26px;
    font-weight: 900;
    color: var(--t-btn-deposit-text, #fff);
    line-height: 1;
}
.bs-header-wallet-combo .bs-deposit-spin-text,
.bs-header-wallet-combo .bs-deposit-coin { display: none !important; }
.bs-header-wallet-combo .bs-deposit-spin-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    transform: none !important;
    animation: none !important;
    font-size: 8px !important;
    padding: 2px 5px !important;
    line-height: 1;
    white-space: nowrap;
    margin: 0 !important;
    background: #fbbf24 !important;
    color: #1a1a11 !important;
    border-radius: 6px;
}
.bs-header-wallet-combo .header-balance-wrap { flex-shrink: 0; }

/* Mobile: ajustes de espacamento do header (avatar/sino/bordas) */
@media (max-width: 768px) {
    .bs-header-inner { padding: 0 0 0 2px !important; gap: 4px !important; justify-content: space-between !important; }
    .bs-header-center { margin-left: auto !important; flex: 0 0 auto !important; justify-content: flex-end !important; display: flex !important; align-items: center !important; }
    .bs-header-right { gap: 4px !important; padding-right: 0 !important; margin-right: 0 !important; margin-left: 0 !important; }
    .bs-user-avatar { width: 40px !important; height: 40px !important; font-size: 16px !important; border-width: 2px !important; margin: 0 !important; flex-shrink: 0; }
    .um-wrap { margin: 0 !important; padding: 0 !important; }
    .bs-header-right > :last-child { margin-right: 0 !important; padding-right: 0 !important; }
    .bs-header-icon { width: 34px !important; height: 34px !important; flex-shrink: 0; }
    /* No mobile a pill e o botao ficam um pouco menores */
    .bs-header-wallet-combo .bs-balance-pill { height: 40px !important; padding: 4px 10px !important; }
    .bs-header-wallet-combo .bs-deposit-spin-btn { width: 40px !important; height: 40px !important; }
    .bs-header-wallet-combo .bs-deposit-spin-btn::after { font-size: 22px; }
    .bs-balance-stack-mobile .bsm-val { font-size: 12px; }
    .bs-balance-stack-mobile .bsm-dot { width: 12px; height: 12px; font-size: 8px; }
    /* Saldo pill modo classico: nao deixa vazar, min-width 0 pra permitir shrink */
    .bs-balance-pill { min-width: 0 !important; max-width: 100% !important; }
    .bs-balance-amount { white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis; }
    /* Modo classico no mobile: botao deposito vira so a bolinha da moeda (sem +Giros) */
    .bs-header-wallet-classic .bs-deposit-spin-btn {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        flex-shrink: 0;
    }
    .bs-header-wallet-classic .bs-deposit-spin-text,
    .bs-header-wallet-classic .bs-deposit-spin-badge { display: none !important; }
    .bs-header-wallet-classic .bs-deposit-coin {
        width: 24px !important;
        height: 24px !important;
        margin: 0 !important;
    }
}

@keyframes pillPulse { 0%{transform:scale(1)} 50%{transform:scale(1.06)} 100%{transform:scale(1)} }
.bs-balance-pill.pill--animate { animation: pillPulse .4s ease; }
@keyframes slideOut { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(-12px);opacity:0} }
@keyframes slideIn { 0%{transform:translateY(12px);opacity:0} 100%{transform:translateY(0);opacity:1} }
.bs-balance-amount.val--exit { animation: slideOut .15s ease forwards; }
.bs-balance-amount.val--enter { animation: slideIn .3s ease forwards; }
.bs-balance-coin.coin--exit { animation: slideOut .15s ease forwards; }
.bs-balance-coin.coin--enter { animation: slideIn .3s ease forwards; }
.bs-balance-coin {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    transition: color .3s;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    font-family: inherit;
    line-height: 1;
}
.bs-balance-coin.coin--letter {
    font-size: 13px;
    font-weight: 900;
    border: 2px solid currentColor;
    justify-content: center;
    align-items: center;
}
.bs-balance-amount {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    transition: color .3s;
}
.bs-balance-caret {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.45);
    transition: transform .2s;
}
.header-balance-wrap.is-open .bs-balance-caret {
    transform: rotate(180deg);
}

/* User avatar in bs-header */
.bs-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border: 2px solid rgba(139,92,246,.4);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    transition: all .18s;
    flex-shrink: 0;
}
.bs-user-avatar:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(139,92,246,.3);
}

/* Notification panel inside bs-header */
.bs-header .notif-panel {
    position: absolute;
    top: 100%;
    right: 18px;
    width: 340px;
    max-height: 420px;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--t-bg-header, #1e1e28) 0%, var(--t-bg-body-top, #1a1a24) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
    z-index: 2300;
    display: none;
}
.bs-header .notif-panel.is-open { display: block; }
.bs-header .notif-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.bs-header .notif-panel-head strong { font-size: 15px; font-weight: 800; }
.bs-header .notif-mark-all { background: none; border: none; color: #8b5cf6; font-size: 12px; font-weight: 700; cursor: pointer; padding: 0; }
.bs-header .notif-mark-all:hover { text-decoration: underline; }
.bs-header .notif-panel-list { padding: 8px; }
.bs-header .notif-item { padding: 12px; border-radius: 12px; margin-bottom: 4px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.04); cursor: pointer; transition: background .15s; }
.bs-header .notif-item:hover { background: rgba(255,255,255,.06); }
.bs-header .notif-item.is-unread { border-left: 3px solid #8b5cf6; background: rgba(139,92,246,.06); }
.bs-header .notif-item-title { font-size: 13px; font-weight: 800; margin-bottom: 2px; }
.bs-header .notif-item-msg { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.4; }
.bs-header .notif-item-time { font-size: 10px; color: rgba(255,255,255,.3); margin-top: 4px; }
.bs-header .notif-empty { padding: 24px; text-align: center; color: rgba(255,255,255,.3); font-size: 13px; }

/* Balance dropdown inside bs-header */
.bs-header .header-balance-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    padding: 10px;
    background: linear-gradient(180deg, var(--t-bg-header, #1e1e28), var(--t-bg-body-top, #1a1a24));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,.4);
    z-index: 2200;
    display: none;
}
.bs-header .header-balance-wrap.is-open .header-balance-dropdown { display: block; }
.bs-header .balance-dd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .15s;
    margin-bottom: 4px;
    border: 1px solid transparent;
}
.bs-header .balance-dd-item:hover { background: rgba(255,255,255,.05); }
.bs-header .balance-dd-item.is-active { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.2); }
.bs-header .balance-dd-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); }
.bs-header .balance-dd-item strong { font-size: 14px; font-weight: 800; color: #fff; }
.bs-header .balance-dd-item.is-active strong { color: #8b5cf6; }
.bs-header .balance-dd-deposit {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6, #ec4899);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 4px;
    transition: all .18s;
}
.bs-header .balance-dd-deposit:hover { opacity: .9; transform: translateY(-1px); }

.bs-mobile-menu-btn {
    display: none;
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    align-items: center; justify-content: center;
}

/* (content padding handled by sections) */

.bs-content > section { margin-bottom: 36px; }

/* ===== BANNERS ===== */
.bs-banners {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    min-height: 230px;
}

.bs-banner-track {
    display: flex;
    gap: 16px;
    position: relative;
    transition: opacity .3s ease;
}
.bs-banner-track:not(.js-ready) .bs-banner-slide:nth-child(n+4) {
    display: none;
}

.bs-banner-slide {
    flex: 1 1 0;
    min-height: 200px;
    aspect-ratio: 16/7;
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    background-color: var(--t-bg-card, #26262f);
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    overflow: hidden;
}

.bs-banner-content { position: relative; z-index: 2; max-width: 65%; }

.bs-banner-title {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
}

.bs-banner-desc {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    margin: 0 0 14px;
    line-height: 1.5;
}

.bs-banner-hero {
    position: absolute;
    right: -8px;
    bottom: 0;
    height: 105%;
    width: auto;
    max-width: 55%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
    pointer-events: none;
}

.bs-banner-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.bs-banner-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .2s ease;
}
.bs-banner-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent);
}

/* ===== BANNER ARROWS (carousel mode) ===== */
.bs-banner-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.bs-banner-arrow:hover {
    background: rgba(0,0,0,.7);
    border-color: rgba(255,255,255,.3);
    transform: translateY(-50%) scale(1.08);
}
.bs-banner-arrow--left { left: 8px; }
.bs-banner-arrow--right { right: 8px; }
.bs-banners[data-transition="carousel"] .bs-banner-arrow {
    display: flex;
}
.bs-banners[data-transition="carousel"] {
    overflow: hidden;
}

@media (max-width: 640px) {
    .bs-banner-arrow { width: 32px; height: 32px; font-size: 14px; }
    .bs-banner-arrow--left { left: 4px; }
    .bs-banner-arrow--right { right: 4px; }
}

/* ===== LIVE WINNERS ===== */
.bs-winners {
    margin-bottom: 24px;
    overflow: hidden;
}

.bs-winners-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}

.bs-winners-title .live-icon {
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
}

.bs-winners-track {
    display: flex;
    gap: 6px;
    width: max-content;
    padding: 4px 0;
    will-change: transform;
    backface-visibility: hidden;
}

.bs-winner-card {
    flex: 0 0 90px;
    text-align: center;
    cursor: pointer;
    transition: transform .18s ease;
}
.bs-winner-card:hover { transform: translateY(-2px); }

.bs-winner-thumb {
    width: 84px; height: 110px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(90deg, #1a1f2e 25%, #242938 50%, #1a1f2e 75%);
    background-size: 200% 100%;
    animation: skeleton-shine 1.4s infinite;
    margin: 0 auto 4px;
    border: 2px solid rgba(255,255,255,.08);
    transition: border-color .18s ease;
}
.bs-winner-card:hover .bs-winner-thumb { border-color: var(--accent); }

/* ===== GANHOS DE HOJE (apostenabet style) ===== */
.gh-section {
    margin-bottom: 24px;
    background: var(--t-gh-bg, #1e2028);
    border-radius: 14px;
    border: 1px solid var(--t-gh-border, rgba(255,255,255,.08));
    overflow: hidden;
}
.gh-container {
    display: flex;
    align-items: stretch;
    min-height: 160px;
}
.gh-label {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    background: transparent;
    border-right: 1px solid rgba(255,255,255,.06);
}
.gh-label-top {
    font-size: 18px;
    font-weight: 900;
    color: var(--t-gh-label, #39ff14);
    line-height: 1.1;
    letter-spacing: 1px;
}
.gh-label-bottom {
    font-size: 14px;
    font-weight: 800;
    color: var(--t-gh-label, #39ff14);
    line-height: 1.1;
    letter-spacing: 1px;
}
.gh-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.gh-track-wrap::before,
.gh-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 50px;
    z-index: 1;
    pointer-events: none;
}
.gh-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--t-gh-bg, #1e2028), transparent);
}
.gh-track-wrap::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--t-gh-bg, #1e2028));
}
.gh-track {
    display: flex;
    gap: 0;
    width: max-content;
    padding: 12px 8px;
    will-change: transform;
}
.gh-card {
    flex: 0 0 100px;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 6px;
    cursor: default;
}
.gh-card-img {
    width: 64px;
    height: 84px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    margin-bottom: 6px;
    border: 2px solid var(--t-gh-card-border, rgba(255,255,255,.08));
}
.gh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gh-card-user {
    font-size: 10px;
    color: var(--t-gh-user, rgba(255,255,255,.6));
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
}
.gh-card-amount {
    font-size: 12px;
    font-weight: 900;
    color: var(--t-gh-amount, #22c55e);
}
.gh-card--special .gh-card-amount {
    color: var(--t-gh-amount-txt, #f59e0b);
}
/* Special card (caixa/raspadinha/bingo) - wider */
.gh-card--special {
    flex: 0 0 120px;
    width: 120px;
}
.gh-card-img-special {
    width: 100px;
    height: 84px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    margin: 0 auto 6px;
    border: 2px solid rgba(245, 158, 11, .35);
    position: relative;
}
.gh-card-img-special img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gh-card-badge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 7px;
    font-weight: 900;
    text-align: center;
    padding: 3px 2px;
    text-transform: uppercase;
    letter-spacing: .3px;
    line-height: 1.1;
}
@media (max-width: 768px) {
    .gh-card--special { flex: 0 0 100px; width: 100px; }
    .gh-card-img-special { width: 80px; height: 68px; }
}
@media (max-width: 768px) {
    .gh-label { flex: 0 0 70px; padding: 12px 4px; }
    .gh-label-top { font-size: 14px; }
    .gh-label-bottom { font-size: 11px; }
    .gh-card { flex: 0 0 80px; width: 80px; }
    .gh-card-img, .gh-card-special { width: 52px; height: 68px; }
}

.bs-winner-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.bs-winner-user {
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bs-winner-amount {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.bs-winner-amount .coin {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    flex-shrink: 0;
}

@keyframes skeleton-shine {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== CATEGORY CARDS ===== */
.bs-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.bs-category-card {
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .22s ease;
    border: 1px solid rgba(255,255,255,.06);
    text-decoration: none;
    background: var(--bg-card);
}
.bs-category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); border-color: rgba(139,92,246,.25); }

/* Category card: static image + video on hover */
.cat-img,
.cat-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
}

.cat-img { transition: opacity .3s ease; }

.cat-video {
    opacity: 0;
    transition: opacity .3s ease;
}

.bs-category-card:hover .cat-img { opacity: 0; }
.bs-category-card:hover .cat-video { opacity: 1; }

.bs-category-card .cat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,.7), 0 0 20px rgba(0,0,0,.4);
}

.bs-category-card .cat-icon { font-size: 16px; }

/* ===== SECTION HEADER ===== */
.bs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bs-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.bs-section-title .icon { font-size: 18px; }

.bs-see-all {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .18s ease;
}
.bs-see-all:hover { color: #fff; }

.bs-see-all-arrows {
    display: flex;
    gap: 4px;
}

.bs-see-all-arrows button {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .18s ease;
    font-size: 12px;
}
.bs-see-all-arrows button:hover { color: #fff; border-color: rgba(255,255,255,.2); }

/* ===== GAMES GRID ===== */
.bs-games-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.bs-game-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all .22s ease;
    cursor: pointer;
}
.bs-game-card:hover { border-color: rgba(139,92,246,.3); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.35); }

.bs-game-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.bs-game-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.bs-game-card:hover .bs-game-thumb img { transform: scale(1.05); }

.bs-game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .22s ease;
}
.bs-game-card:hover .bs-game-overlay { opacity: 1; }

.bs-play-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px var(--accent-glow);
    transition: all .18s ease;
}
.bs-play-btn:hover { transform: scale(1.1); background: var(--accent-hover); }

.bs-game-info { padding: 10px 12px; }

.bs-game-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.bs-game-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bs-game-provider {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bs-game-rtp {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    font-variant-numeric: tabular-nums;
}

/* ===== GAME CARD NO INFO ===== */
.bs-game-card--no-info .bs-game-thumb { border-radius: var(--radius-md); }
.bs-game-card--no-info .bs-game-thumb img { border-radius: var(--radius-md); }

/* ===== PROVIDERS ===== */
.bs-providers-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
}
.bs-providers-track::-webkit-scrollbar { display: none; }

.bs-provider-card {
    flex: 0 0 140px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    padding: 10px 16px;
}
.bs-provider-card:hover {
    border-color: rgba(139,92,246,.35);
    background: linear-gradient(135deg, rgba(139,92,246,.08) 0%, rgba(96,165,250,.06) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.bs-provider-logo {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .7;
    transition: all .25s ease;
}
.bs-provider-card:hover .bs-provider-logo {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(139,92,246,.4));
}

.bs-provider-name {
    color: rgba(255,255,255,.65);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    transition: all .25s ease;
}
.bs-provider-card:hover .bs-provider-name {
    color: #fff;
    text-shadow: 0 0 8px rgba(139,92,246,.4);
}

/* ===== PROMO BANNERS (2 side by side) ===== */
.bs-promo-banner {
    display: flex;
    align-items: center;
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    min-height: 160px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.06);
    transition: all .22s ease;
    overflow: visible !important;
}

/* Telegram gradient - cinza claro igual BitStake */
.bs-promo-telegram {
    background: linear-gradient(135deg, #2a2a3e 0%, #32324a 50%, #3a3a55 100%);
    border: 1px solid rgba(255,255,255,.08);
}

/* Promotions gradient - verde claro > azul > roxo claro igual BitStake */
.bs-promo-promotions {
    background: linear-gradient(135deg, #3dd6a8 0%, #4a9ef5 35%, #8b6cf6 65%, #c56cf6 100%);
    border: 1px solid rgba(139,108,246,.2);
}

.bs-promo-banner:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.3); border-color: rgba(139,92,246,.2); }

.bs-promo-banner-text { position: relative; z-index: 2; max-width: 55%; }

.bs-promo-banner-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.bs-promo-banner-sub {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.5;
}

.bs-promo-banner-img {
    position: absolute;
    right: -10px;
    bottom: 0;
    height: 135%;
    width: auto;
    max-width: 55%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
    transition: transform .3s ease;
}

/* Igualar altura dos 2 cards no desktop */
.bs-promo-grid .bs-promo-banner {
    min-height: 160px;
    align-self: stretch;
}

.bs-promo-banner:hover .bs-promo-banner-img {
    transform: translateY(-6px) scale(1.05);
}

@media (max-width: 900px) {
    .bs-promo-banner { min-height: 140px; padding: 20px 18px; }
    .bs-promo-banner-title { font-size: 18px; }
}

@media (max-width: 640px) {
    .bs-promo-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    .bs-promo-banner {
        min-height: 170px;
        padding: 20px;
        border-radius: 18px;
        overflow: visible !important;
        position: relative;
    }
    .bs-promo-banner-text { max-width: 55%; }
    .bs-promo-banner { font-family: 'Nunito', 'Poppins', 'Inter', sans-serif; }
    .bs-promo-banner-title { font-size: 22px; font-weight: 900; margin-bottom: 6px; letter-spacing: -.3px; }
    .bs-promo-banner-sub { font-size: 12px; line-height: 1.4; color: rgba(255,255,255,.75); font-weight: 500; }
    .bs-promo-banner-img {
        position: absolute;
        right: -15px;
        bottom: 10px;
        height: 250%;
        max-width: 60%;
        object-fit: contain;
        object-position: right bottom;
        filter: drop-shadow(0 14px 40px rgba(0,0,0,.65));
    }
    .bs-promo-banner .bs-btn-sm {
        height: 44px;
        padding: 0 30px;
        font-size: 14px;
        font-weight: 800;
        margin-top: 14px !important;
        background: var(--t-btn-secondary-bg, #1a1a22);
        color: var(--t-btn-secondary-text, #e8e6e1);
        border: 1px solid var(--t-btn-secondary-bg, #1a1a22);
        border-radius: 50px;
        box-shadow: 0 4px 18px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.15);
    }
}

/* ===== LIVE BETS ===== */
.bs-live-bets {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bs-live-tabs {
    display: flex;
    gap: 4px;
    padding: 6px;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-panel);
}

.bs-live-tab {
    flex: 1;
    padding: 10px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: none;
    border-radius: 10px;
    font-family: var(--font);
    transition: all .2s ease;
}
.bs-live-tab:hover { color: #fff; background: rgba(255,255,255,.04); }
.bs-live-tab.active {
    color: #fff;
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
    box-shadow: 0 4px 15px rgba(139,92,246,.3);
}

.bs-live-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr .8fr .8fr .8fr;
    padding: 12px 20px;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(255,255,255,.02);
}

.bs-live-bets {
    overflow-anchor: none;
}
.bs-live-body {
    height: 340px;
    overflow: hidden;
    overflow-anchor: none;
}

.bs-live-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr .8fr .8fr .8fr;
    padding: 11px 20px;
    font-size: 13px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.03);
    animation: bs-slide-in .35s ease;
    transition: background .15s ease;
}
.bs-live-row:hover { background: rgba(255,255,255,.03); }

@keyframes bs-slide-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.bs-live-game { color: #fff; font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bs-live-user { color: var(--text-secondary); font-size: 12px; font-weight: 500; }
.bs-live-amount { color: var(--text-secondary); font-size: 13px; font-weight: 500; }
.bs-live-multi { font-weight: 700; color: var(--accent-hover); font-size: 13px; }
.bs-live-profit { font-weight: 700; font-size: 13px; }
.bs-live-profit.win { color: var(--green); }
.bs-live-profit.loss { color: var(--red); }

/* ===== FOOTER (BitStake style) ===== */
.bs-footer {
    background: var(--bg-header);
    border-top: 1px solid var(--border-subtle);
    margin-top: 20px;
}

.bs-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 24px;
}

.bs-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle);
}

.bs-footer-brand { display: flex; flex-direction: column; gap: 12px; }

.bs-footer-logo { display: inline-flex; text-decoration: none; }

.bs-footer-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.bs-footer-copy {
    font-size: 11px;
    color: var(--text-muted);
    opacity: .7;
}

.bs-footer-links-area {
    display: contents;
}

.bs-footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}

.bs-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bs-footer-col li a {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: color .18s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.bs-footer-col li a:hover { color: var(--accent-hover); }
.bs-footer-col li a::after { content: '↗'; font-size: 10px; opacity: .5; }

.bs-footer-lang {
    display: flex;
    justify-content: flex-end;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.bs-footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 20px;
    opacity: .5;
}

.bs-footer-social {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    flex-wrap: wrap;
}

.bs-footer-social-label {
    font-size: 13px;
    color: var(--text-muted);
}

.bs-footer-social-label a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color .18s ease;
}
.bs-footer-social-label a:hover { color: var(--accent-hover); }

@media (max-width: 900px) {
    .bs-footer-top { grid-template-columns: 1fr; gap: 24px; }
    .bs-footer-links-area { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.bs-footer-lang {
    display: flex;
    justify-content: flex-end;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.bs-footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.bs-crypto-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    opacity: .7;
    transition: opacity .18s ease, transform .18s ease;
}
.bs-crypto-icon:hover { opacity: 1; transform: scale(1.15); }

.bs-footer-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.bs-footer-social-links {
    display: flex;
    gap: 12px;
}

.bs-footer-social-soon {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    margin-left: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px dashed rgba(255,255,255,.12);
    color: rgba(255,255,255,.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    font-style: italic;
    white-space: nowrap;
    vertical-align: middle;
}

.bs-social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: rgba(255,255,255,.04);
    color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all .18s ease;
}
.bs-social-icon:hover { color: #fff; background: rgba(139,92,246,.2); border-color: rgba(139,92,246,.3); }

.bs-footer-emails {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--text-muted);
}
.bs-footer-emails a { color: var(--text-secondary); text-decoration: none; transition: color .18s ease; }
.bs-footer-emails a:hover { color: var(--accent-hover); }

@media (max-width: 640px) {
    .bs-footer-links-area { grid-template-columns: 1fr; }
    .bs-footer-lang { justify-content: flex-start; }
    .bs-footer-social { flex-direction: column; align-items: flex-start; gap: 12px; }
    .bs-footer-social-links { gap: 10px; flex-wrap: wrap; }
    .bs-social-icon { width: 42px; height: 42px; }
    .bs-footer-emails { flex-direction: column; gap: 8px; }
}

/* ===== INFO / RESPONSIBLE ===== */
.bs-info-section {
    padding: 28px;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}
.bs-info-section h2 { font-size: 20px; font-weight: 900; color: #fff; margin: 0 0 10px; }
.bs-info-section h3 { font-size: 16px; font-weight: 800; color: #fff; margin: 18px 0 6px; }
.bs-info-section p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0 0 6px; }

.bs-responsible {
    text-align: center;
    padding: 24px;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}
.bs-responsible h3 { font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.bs-responsible-features { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.bs-resp-feature {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-panel-2);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

/* ===== FLOATING CHAT ===== */
.bs-floating-chat {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 28px var(--accent-glow);
    z-index: 1000;
    transition: all .22s ease;
    border: none;
}
.bs-floating-chat:hover { transform: scale(1.08); }
.bs-floating-chat svg { stroke: #fff; }

/* ===== PLAY MODAL ===== */
.bs-play-modal { position: fixed; inset: 0; z-index: 99999; display: none; }
.bs-play-modal.open { display: block; }
.bs-play-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.85); }
.bs-play-modal-shell {
    position: relative;
    width: min(1480px, calc(100vw - 24px));
    height: calc(100vh - 24px);
    margin: 12px auto;
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.bs-play-modal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border-subtle);
}
.bs-play-modal-stage { flex: 1; background: #000; }
.bs-play-modal-stage iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== TOAST ===== */
.bs-toast {
    position: fixed; top: 20px; right: 20px;
    padding: 14px 18px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    z-index: 99999; opacity: 0; transform: translateY(-10px);
    transition: all .3s ease; color: #fff; background: var(--green);
}
.bs-toast.error { background: var(--red); }
.bs-toast.show { opacity: 1; transform: translateY(0); }

/* ===== SEARCH ===== */
.bs-search-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    max-width: 280px;
    flex: 1;
}
.bs-search-box:focus-within { border-color: rgba(139,92,246,.3); }
.bs-search-box input {
    flex: 1; border: none; background: none; color: #fff;
    font-size: 13px; outline: none; font-family: var(--font);
}
.bs-search-box input::placeholder { color: var(--text-muted); }

.bs-search-results {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-panel); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); max-height: 400px; overflow: auto;
    display: none; z-index: 999; margin-top: 4px; box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.bs-search-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,.04);
    color: #fff; font-size: 14px;
}
.bs-search-item:hover { background: var(--bg-panel-2); }
.bs-search-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; }

/* ===== HIDE OLD LAYOUT ===== */
body.page-lobby .site-header,
body.page-lobby .legacy-top,
body.page-lobby .top,
body.page-lobby .header-actions,
body.page-lobby .mobile-auth-strip,
body.page-lobby .mobile-menu-toggle,
body.page-lobby .header-nav,
body.page-lobby .desktop-header-search,
body.page-lobby .desktop-header-timer,
body.page-lobby .mobile-menu-overlay,
body.page-lobby .wrap > .top,
body.page-lobby .wrap > .card { display: none !important; height: 0 !important; overflow: hidden !important; }
body.page-lobby .wrap { padding: 0 !important; margin: 0 !important; }
body.page-lobby .wrap { max-width: none !important; padding: 0 !important; margin: 0 !important; }
body.page-lobby .wrap > .top.legacy-top { display: none !important; }
body.page-lobby .wrap > .card { display: none !important; }
body.page-lobby .site-footer { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .bs-games-grid { grid-template-columns: repeat(4, 1fr); }
    .bs-categories-grid { grid-template-columns: repeat(3, 1fr); }
    .bs-nav-link { padding: 8px 10px; font-size: 12px; gap: 5px; }
    .bs-nav-icon { width: 16px; height: 16px; }
    .bs-header-inner { gap: 8px; padding: 0 16px; }
    .bs-header-right .bs-btn { height: 36px; padding: 0 14px; font-size: 12px; }
}

@media (max-width: 960px) {
    .bs-nav { display: none; }
    .bs-chat-header-group { display: none; }
    .bs-header-inner { padding: 0 16px; gap: 10px; }
    .bs-header-right .bs-btn { height: 40px; padding: 0 20px; font-size: 14px; }
    .bs-logo-img { height: 40px; max-width: 170px; }
}

@media (max-width: 900px) {
    .bs-mobile-menu-btn { display: none; }
    .bs-games-grid { grid-template-columns: repeat(3, 1fr); }
    .bs-categories-grid { grid-template-columns: repeat(3, 1fr); }
    .bs-banner-slide { flex: 0 0 calc((100% - 16px) / 2); }
    .bs-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .bs-content { padding: 16px; }
    .bs-live-header, .bs-live-row { grid-template-columns: 1.2fr .8fr .8fr .8fr; }
    .bs-live-user { display: none; }
}

@media (max-width: 640px) {
    .bs-games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bs-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bs-categories-grid .bs-category-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
    /* Banner largura total no mobile */
    .bs-banners { margin-left: -12px; margin-right: -12px; border-radius: 0; }
    .bs-banner-slide { flex: 0 0 100%; min-height: 150px; aspect-ratio: 16/8; border-radius: 12px; padding: 20px 16px; }
    .bs-banner-track { gap: 0; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
    .bs-banner-track::-webkit-scrollbar { display: none; }
    .bs-banner-slide { scroll-snap-align: start; }
    /* ===== HEADER MOBILE PROFISSIONAL ===== */
    .bs-header-inner { padding: 0 4px; gap: 4px; }
    .bs-header-right { gap: 3px; align-items: center; flex-shrink: 0; }
    .bs-header-right .bs-btn { height: 38px; padding: 0 20px; font-size: 14px; font-weight: 700; }
    .bs-logo { flex-shrink: 0; }
    .bs-logo-img { height: 36px; max-width: 140px; }
    /* Esconder no mobile: chat (fica no drawer/bottom nav) */
    .bs-chat-header-group { display: none !important; }
    .bs-search-box { display: none; }
    /* Depositar compacto: moeda + "+Giros" */
    .bs-deposit-spin-btn { padding: 5px 8px; gap: 4px; border-radius: 18px; font-size: 11px; }
    .bs-deposit-coin { width: 22px; height: 22px; }
    .bs-deposit-coin-front { font-size: 13px; }
    .bs-deposit-coin-back { font-size: 12px; }
    .bs-deposit-spin-text { display: none; }
    .bs-deposit-spin-badge { font-size: 9px; padding: 2px 6px; }
    /* Saldo: prioridade maxima, sempre visivel */
    .header-balance-wrap { order: 2; flex-shrink: 0; }
    .bs-balance-pill { height: 32px !important; padding: 0 10px !important; border-radius: 18px !important; gap: 4px !important; }
    .bs-balance-amount { font-size: 13px !important; font-weight: 900 !important; }
    .bs-balance-coin { font-size: 11px !important; width: 20px !important; height: 20px !important; }
    .bs-balance-caret { display: none !important; }
    /* Avatar compacto */
    .um-wrap { order: 3; flex-shrink: 0; }
    .um-wrap .um-avatar, .um-wrap .bs-header-avatar { width: 30px !important; height: 30px !important; }
    .bs-content { padding: 12px; }
    .bs-category-card { min-height: 120px; padding: 16px; }
    .bs-floating-chat { bottom: 80px; right: 16px; width: 48px; height: 48px; }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
    .bs-logo-img { height: 34px; max-width: 130px; }
    .bs-deposit-spin-badge { display: none; }
    .bs-deposit-spin-btn { padding: 5px 6px; }
    .bs-balance-pill { padding: 0 8px !important; }
    .bs-balance-amount { font-size: 12px !important; }
}

@media (max-width: 768px) {
    .bs-content { padding-bottom: 80px; }
    .bs-floating-chat { bottom: 84px; }
}

@media (max-width: 820px) {
    .bs-play-modal-shell { width: 100vw; height: 100vh; margin: 0; border-radius: 0; }
}

/* ===== MOBILE DRAWER ===== */
.bs-mob-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1300;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(2px);
}
.bs-mob-overlay.open { display: block; }

.bs-mob-drawer {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 1400;
    width: 280px;
    background: var(--t-sidebar-bg, #13151f);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.bs-mob-drawer.open { transform: translateX(0); }

.bs-mob-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
}
.bs-mob-drawer-close {
    background: none; border: none; color: var(--text-muted);
    cursor: pointer; padding: 4px; display: flex; align-items: center;
}
.bs-mob-drawer-close:hover { color: #fff; }

.bs-mob-drawer-body { padding: 10px 0 24px; }

.bs-mob-drawer-section {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--t-sidebar-muted, var(--text-muted));
    padding: 14px 20px 6px;
    text-transform: uppercase;
}

.bs-mob-drawer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: var(--t-sidebar-text, rgba(255,255,255,.85));
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font);
    transition: background .15s;
}
.bs-mob-drawer-item:hover { background: var(--t-sidebar-hover, rgba(255,255,255,.05)); color: #fff; }

.bs-mob-item-icon {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    flex-shrink: 0;
    color: var(--accent-hover);
}

.bs-mob-chevron {
    margin-left: auto;
    color: var(--text-muted);
    transition: transform .2s;
    flex-shrink: 0;
}
.bs-mob-expandable.open .bs-mob-chevron { transform: rotate(180deg); }

.bs-mob-submenu {
    display: none;
    background: rgba(0,0,0,.2);
}
.bs-mob-submenu.open { display: block; }

.bs-mob-sub-item {
    display: block;
    padding: 10px 20px 10px 64px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s, background .15s;
}
.bs-mob-sub-item:hover { color: #fff; background: rgba(255,255,255,.04); }

/* Mobile bottom menu */
.bs-bottom-menu {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: center;
    height: 64px;
    background: var(--bg-header);
    border-top: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .bs-bottom-menu { display: grid; }
}

.bs-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 700;
    gap: 2px;
    padding: 2px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font);
}
.bs-bottom-item:hover, .bs-bottom-item.active { color: var(--accent-hover); }
.bs-bottom-item svg { width: 18px; height: 18px; }

/* Botao central redondo (BitStake style) */
.bs-bottom-center { position: relative; padding-top: 18px; }
.bs-bottom-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
}
.bs-bottom-circle--pix {
    background: linear-gradient(135deg, #32BCAD 0%, #1a9e8f 100%) !important;
    box-shadow: 0 6px 20px rgba(50,188,173,.5) !important;
}
.bs-bottom-circle--deposit {
    background: linear-gradient(135deg, #10b981, #0d9668) !important;
    box-shadow: 0 4px 20px rgba(16,185,129,.5), 0 0 0 3px var(--t-bg-header, #22222c) !important;
    perspective: 400px;
}
.bs-bottom-coin-front, .bs-bottom-coin-back {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-weight: 900; font-size: 22px;
    backface-visibility: hidden;
    color: #fff;
}
.bs-bottom-coin-front { animation: coinFlip 3s ease-in-out infinite; }
.bs-bottom-coin-back { animation: coinFlipBack 3s ease-in-out infinite; }

/* ===== CHAT HEADER GROUP ===== */
.bs-chat-header-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bs-chat-global-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: none;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
}
.bs-chat-global-btn:hover { background: rgba(255,255,255,.1); color: #fff; }

.bs-chat-close-header {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: none;
    color: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .15s ease;
    margin-left: 4px;
}
.bs-chat-close-header:hover { background: rgba(255,255,255,.1); color: #fff; }

.bs-chat-header-group.chat-open #bsChatToggle { display: none; }
.bs-chat-header-group.chat-open .bs-chat-global-btn { display: flex; }
.bs-chat-header-group.chat-open .bs-chat-close-header { display: flex; }

/* ===== CHAT ARROW ===== */
.bs-chat-arrow {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 201;
    width: 24px;
    height: 48px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: rgba(255,255,255,.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    padding: 0;
}
.bs-chat-arrow:hover { background: rgba(255,255,255,.12); color: #fff; }
.bs-chat-arrow.chat-open { right: 340px; }
.bs-chat-arrow.chat-open svg { transform: rotate(180deg); }

/* ===== CHAT SIDEBAR ===== */
.bs-chat-sidebar {
    position: fixed;
    top: 64px;
    right: -360px;
    width: 340px;
    height: calc(100vh - 64px);
    background: #13132b;
    border-left: 1px solid rgba(255,255,255,.08);
    z-index: 199;
    display: flex;
    flex-direction: column;
    transition: right .3s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,.4);
}
.bs-chat-sidebar.open { right: 0; }

.bs-chat-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: none;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}
.bs-chat-close:hover { background: rgba(255,255,255,.1); color: #fff; }

.bs-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.1) transparent;
}

.bs-chat-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
    color: rgba(255,255,255,.2);
    font-size: 13px;
}

.bs-chat-footer {
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}

.bs-chat-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 4px 4px 4px 14px;
}

.bs-chat-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
}
.bs-chat-input::placeholder { color: rgba(255,255,255,.3); }

.bs-chat-send {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease;
    flex-shrink: 0;
}
.bs-chat-send:hover { background: var(--accent-hover); }
.bs-chat-send:disabled { opacity: .4; cursor: default; }

.bs-chat-signin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,.4);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
}

/* ===== DESKTOP LEFT SIDEBAR ===== */
.bs-desktop-sidebar {
    display: none;
}

@media (min-width: 769px) {
    .bs-desktop-sidebar {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 114px;
        width: 220px;
        height: calc(100vh - 114px);
        padding: 8px 0 24px;
        background: var(--t-sidebar-bg, #121418);
        border-right: 1px solid rgba(255,255,255,.06);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 190;
    }
    .bs-desktop-sidebar::-webkit-scrollbar { width: 0; }

    /* Somente o conteudo recebe padding (header fica full-width cobrindo a sidebar) */
    .bs-content    { padding-left: calc(220px + 24px); }
    .pa-scroll-wrap { padding-left: 220px; }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .bs-desktop-sidebar { width: 180px; }
    .bs-content    { padding-left: calc(180px + 16px); }
    .pa-scroll-wrap { padding-left: 180px; }
}


/* Header desktop: logo esquerda | [nav + icones] centralizados juntos */
@media (min-width: 769px) {
    .bs-header-inner {
        display: flex !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 24px 0 0 !important;
        gap: 0 !important;
        align-items: center !important;
    }
    .bs-logo {
        min-width: 220px !important;
        width: 220px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    /* Container que agrupa nav + icones e centraliza no espaco restante */
    .bs-header-center {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
        min-width: 0 !important;
    }
    .bs-nav {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        position: static !important;
        transform: none !important;
        pointer-events: auto !important;
        white-space: nowrap !important;
        flex: 0 0 auto !important;
    }
    .bs-header-right {
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex: 0 0 auto !important;
    }
}
@media (min-width: 769px) and (max-width: 1200px) {
    .bs-logo { min-width: 180px !important; width: 180px !important; }
    .bs-nav-link { padding: 7px 8px !important; font-size: 12px !important; gap: 5px !important; }
    .bs-header-center { gap: 8px !important; }
}

/* Secao (JOGOS / OUTROS / CONTA) */
.bs-ds-section {
    padding: 14px 16px 6px;
    font-size: 10px;
    font-weight: 800;
    line-height: 14px;
    min-height: 34px;
    color: var(--t-sidebar-muted, rgba(255,255,255,.3));
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Item */
.bs-ds-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--t-sidebar-text, rgba(255,255,255,.65));
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    min-height: 38px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font);
    width: 100%;
    text-align: left;
    transition: color .15s ease, background .15s ease;
    border-radius: 0;
}
.bs-ds-item:hover {
    color: #fff;
    background: var(--t-sidebar-hover, rgba(255,255,255,.05));
}
.bs-ds-item.active {
    color: var(--t-accent,#CBBE89);
    background: color-mix(in srgb, var(--t-accent,#CBBE89) 8%, transparent);
}
.bs-ds-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    color: inherit;
}
