/* |--------------------------------------------------------------------------
   | BELLINK LIVE 2026 - MODERN UI OVERHAUL
   | Focus: Bento Grid Layout & Glassmorphism
   |-------------------------------------------------------------------------- */

:root {
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --midnight: rgba(15, 23, 42, 0.95);
    --indigo: #6366f1;
    --glass-border: rgba(255, 255, 255, 0.1);
    --sidebar-width: 280px;
}

/* 1. SIDEBAR CONTAINER & SCROLLING */
.bento-sidebar {
    background: var(--midnight) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    left: 0; top: 0;
    z-index: 9999 !important;
    padding: 25px 15px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

/* Custom Scrollbar */
.bento-sidebar::-webkit-scrollbar { width: 4px; }
.bento-sidebar::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* 2. BRANDING & AUTH BUTTONS */
.nav-brand {
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
}

.brand-logo {
    max-width: 160px;
    height: auto;
}

.auth-bento-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.btn-bento-register {
    background: linear-gradient(135deg, #ff4b2b, #ff416c) !important;
    color: white !important;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3);
}

/* 3. JACKPOT BENTO GRID */
.bento-jackpot-list-top {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px 10px;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
}

.jackpot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nav-jackpot-entry-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-jackpot-entry-mini img {
    width: 45px;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 5px var(--gold-glow));
}

.jp-name {
    font-size: 9px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
}

.jackpot-value {
    font-size: 13px !important;
    font-weight: 900;
    transition: color 1s ease-in-out;
}

/* 4. SEARCH & CATEGORIES */
.sidebar-search {
    width: 100%;
    margin-bottom: 20px;
}

.glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 8px;
    padding: 12px;
    color: white;
}

.nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-item {
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}

.nav-item:hover, .nav-item.active {
    background: rgba(99, 102, 241, 0.2);
    color: #fff;
}

.nav-section-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #64748b;
    margin: 15px 0 10px 0;
    font-weight: 800;
    width: 100%;
}

/* 5. LAYOUT OFFSET (Pushes games to the right) */
@media screen and (min-width: 1021px) {
    .header, .top-bar, .header__mob-container, .sticky-games-menu-mob {
        display: none !important;
    }

    .carcass {
        margin-left: var(--sidebar-width) !important;
        width: calc(100% - var(--sidebar-width)) !important;
        position: relative;
    }
}

/* 6. MOBILE OVERRIDES (S23 Ultra) */
@media screen and (max-width: 1020px) {
    .bento-sidebar {
        display: none !important;
    }
    .carcass {
        margin-left: 0 !important;
        width: 100% !important;
    }
}