:root {
    --bg-deep: #05070a;
    --bg-card: #0d1117;
    --accent: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.3);
    --risk-high: #ff3e3e;
    --risk-med: #ff9f00;
    --risk-low: #00ff88;
    --text-main: #e6edf3;
    --text-dim: #8b949e;
    --sidebar-w: 260px;
    --glass: rgba(13, 17, 23, 0.8);
    --border: #30363d;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
.hidden { display: none !important; }
body { font-family: 'Outfit', sans-serif; background: var(--bg-deep); color: var(--text-main); }
h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 700; }

/* Layout */
.layout { display: flex; min-height: 100vh; width: 100%; }
.sidebar { width: var(--sidebar-w); background: #010409; border-right: 1px solid var(--border); padding: 1.5rem; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; z-index: 1000; flex-shrink: 0; }
.content { flex: 1; min-width: 0; padding: 2rem; }

/* Brand */
.brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 2rem; }
.logo-orb { width: 32px; height: 32px; background: radial-gradient(circle, var(--accent), #7000ff); border-radius: 50%; box-shadow: 0 0 15px var(--accent-glow); }
.brand h1 { font-size: 1.5rem; }
.brand h1 span { color: var(--accent); }

/* Pack G4: Watchlist Selector */
.watchlist-selector-container { margin-bottom: 2rem; padding: 1rem; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid var(--border); }
.watchlist-selector-container label { font-size: 0.7rem; color: var(--text-dim); display: block; margin-bottom: 0.5rem; letter-spacing: 1px; }
#watchlist-select { width: 100%; background: #0d1117; color: var(--text-main); border: 1px solid var(--border); padding: 0.6rem; border-radius: 4px; font-family: 'JetBrains Mono'; font-size: 0.85rem; outline: none; transition: 0.2s; }
#watchlist-select:focus { border-color: var(--accent); }

/* Navigation */
.nav-menu { flex: 1; }
.nav-item { padding: 0.8rem 1rem; margin-bottom: 0.4rem; border-radius: 8px; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 0.8rem; color: var(--text-dim); font-size: 0.9rem; }
.nav-item:hover { background: rgba(255,255,255,0.05); color: var(--text-main); }
.nav-item.active { background: var(--accent-glow); color: var(--accent); font-weight: 700; border-left: 3px solid var(--accent); }
.alert-badge { 
    background: var(--risk-high); 
    color: white; 
    border-radius: 50%; 
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px; 
    font-weight: 900;
    margin-left: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--risk-high);
    animation: pulse-alert 2s infinite;
}


/* Top Bar */
.top-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 2rem; background: var(--glass); backdrop-filter: blur(10px); padding: 1rem 1.5rem; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.signal-feed { display: flex; align-items: center; gap: 1rem; overflow: hidden; white-space: nowrap; flex: 1; min-width: 0; }
.feed-label { background: #bc13fe; color: white; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 900; flex-shrink: 0; }
.scroller { font-family: 'JetBrains Mono'; font-size: 0.85rem; animation: scroll 30s linear infinite; flex: 1; min-width: 0; }
@keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

#refresh-btn { background: var(--accent); color: #000; border: none; padding: 0.6rem 1.2rem; border-radius: 6px; font-weight: 700; cursor: pointer; transition: 0.2s; }
#refresh-btn:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px var(--accent-glow); }

/* Global Search */
.search-container { position: relative; flex: 1; max-width: 400px; margin: 0 2rem; }
#global-search { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 0.7rem 1.5rem; border-radius: 20px; color: var(--text-main); font-family: 'JetBrains Mono'; font-size: 0.8rem; outline: none; transition: 0.3s; }
#global-search:focus { border-color: var(--accent); background: rgba(0, 242, 255, 0.05); box-shadow: 0 0 15px var(--accent-glow); }
.search-hint { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 0.6rem; color: var(--text-dim); font-weight: 700; pointer-events: none; }

/* Signals Grid */
.signal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.signal-card { background: var(--bg-card); border: 1px solid var(--border); padding: 1.5rem; border-radius: 16px; position: relative; transition: 0.3s; cursor: pointer; }
.signal-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.card-follow { position: absolute; top: 1.5rem; right: 3.5rem; font-size: 1.2rem; cursor: pointer; color: var(--text-dim); transition: 0.2s; }
.card-follow:hover { color: gold; }
.ai-trigger { position: absolute; top: 1.5rem; right: 1.5rem; cursor: pointer; filter: grayscale(1); transition: 0.2s; }
.ai-trigger:hover { filter: grayscale(0); transform: scale(1.2); }

.ticker { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.2rem; }
.label-tag { font-size: 0.65rem; color: var(--accent); font-weight: 700; letter-spacing: 1px; }
.delta-stat { margin: 1.5rem 0; text-align: center; }
.delta-label { font-size: 0.65rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.delta-value { font-size: 2.5rem; font-weight: 900; color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); font-family: 'JetBrains Mono'; }
.metric-line { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-dim); }

.pos { color: var(--risk-low) !important; }
.neg { color: var(--risk-high) !important; }
.dim { color: var(--text-dim) !important; }

/* Pack G5: AI Analyst Modal */
.ai-analyst-panel { max-width: 600px; border-top: 4px solid #bc13fe; }
.ai-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.ai-orb { width: 20px; height: 20px; background: #bc13fe; border-radius: 50%; animation: pulse-ai 2s infinite; }
@keyframes pulse-ai { 0% { box-shadow: 0 0 0 0 rgba(188, 19, 254, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(188, 19, 254, 0); } 100% { box-shadow: 0 0 0 0 rgba(188, 19, 254, 0); } }
.ai-report-box { background: rgba(188, 19, 254, 0.05); padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(188, 19, 254, 0.2); line-height: 1.8; font-size: 0.95rem; color: #e6edf3; }

/* Pack G2: Mindshare View */
.mindshare-container { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; margin-top: 2rem; min-width: 0; }
.mindshare-legend { background: var(--bg-card); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--border); }
.zone { margin-bottom: 1.5rem; padding-left: 1rem; border-left: 3px solid transparent; font-size: 0.85rem; color: var(--text-dim); }
.zone span { display: block; color: var(--text-main); font-weight: 700; margin-bottom: 0.2rem; }
.zone-alpha { border-color: var(--accent); }
.zone-hype { border-color: #bc13fe; }
.zone-under { border-color: #ff9f00; }

/* Pack G3: Risk Dashboard */
.risk-dashboard { display: flex; gap: 2rem; }
.risk-stat { text-align: right; }
.risk-stat label { font-size: 0.6rem; color: var(--text-dim); display: block; margin-bottom: 0.3rem; }
.p-val { font-size: 1.2rem; font-weight: 900; font-family: 'JetBrains Mono'; }

/* Overlay System */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; transition: 0.3s; padding: 2rem; }
.overlay.hidden { display: none; }
.overlay-content { background: var(--bg-card); width: 100%; max-width: 900px; max-height: 90vh; border-radius: 20px; border: 1px solid var(--border); padding: 2.5rem; overflow-y: auto; position: relative; }
.close-overlay, .close-ai-modal { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 2rem; color: var(--text-dim); cursor: pointer; }

/* Skeletons */
.skeleton-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.skeleton-card { background: var(--bg-card); border-radius: 16px; padding: 1.5rem; height: 350px; overflow: hidden; }
.sk-line { height: 20px; background: rgba(255,255,255,0.05); margin-bottom: 1rem; border-radius: 4px; overflow: hidden; position: relative; }
.sk-line::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ============================================================ */
/* MOBILE RESPONSIVE ENHANCEMENTS */
/* ============================================================ */

.mobile-nav { display: none; }

@media (max-width: 900px) {
    :root { --sidebar-w: 0px; }
    
    .sidebar { 
        position: fixed; 
        left: 0;
        top: 0;
        width: 100vw !important;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        background: var(--bg-deep);
        padding: 2rem;
        display: block; /* Ensure it's not hidden */
    }
    .sidebar.open { transform: translateX(0); }
    
    .close-sidebar-mobile {
        display: block !important;
        background: none;
        border: none;
        color: var(--text-dim);
        font-size: 2.5rem;
        margin-left: auto;
        cursor: pointer;
    }
    
    .sidebar .brand { justify-content: space-between; margin-bottom: 3rem; }
    .sidebar .brand h1 { font-size: 1.2rem; }
    .sidebar .hamburger { display: none; } /* Hide hamburger inside sidebar */

    /* Grid layout for menu items on mobile */
    .nav-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-height: 70vh;
        overflow-y: auto;
        padding-bottom: 2rem;
    }
    
    .nav-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--border);
        padding: 1.2rem 0.5rem;
        font-size: 0.75rem;
        gap: 8px;
        min-height: 100px;
    }
    .nav-item .icon { font-size: 1.5rem; display: block; margin: 0 auto; }
    .nav-item.active { border-left: none; border-bottom: 3px solid var(--accent); }
    
    .user-profile-card {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
        background: var(--bg-deep);
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    
    .content { padding: 1rem; padding-bottom: 80px; } /* Space for bottom nav */
    
    .top-bar { 
        flex-direction: column; 
        align-items: stretch; 
        padding: 1rem; 
        gap: 0.8rem;
    }
    
    .search-container { margin: 0; max-width: none; order: 2; }
    .signal-feed { order: 1; }
    .top-bar-actions { order: 3; justify-content: space-between; display: flex; align-items: center; }
    
    .signal-grid, .heatmap-grid, .skeleton-grid { 
        grid-template-columns: 1fr; 
    }
    
    .overlay { padding: 0.5rem; }
    .overlay-content { 
        padding: 1.5rem; 
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .delta-value { font-size: 2rem; }
    .big-val { font-size: 3rem; }
    
    /* Bottom Navigation */
    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border);
        height: 70px;
        z-index: 1001;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: var(--text-dim);
        font-size: 0.7rem;
        font-weight: 700;
        cursor: pointer;
        padding: 10px;
        flex: 1;
        transition: 0.2s;
    }
    
    .m-icon { font-size: 1.2rem; }
    .mobile-nav-item.active { color: var(--accent); }
    
    .m-alert-badge {
        position: absolute;
        top: 8px;
        right: 25%;
        background: var(--risk-high);
        color: white;
        border-radius: 50%;
        min-width: 14px;
        height: 14px;
        font-size: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
    }

    .mindshare-container { grid-template-columns: 1fr; }
    .analysis-grid { grid-template-columns: 1fr !important; }
    
    .whale-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    .w-actions { align-items: center; }
    
    .article-title { font-size: 1.5rem; }
    .news-article-panel { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .brand h1 { font-size: 1.2rem; }
    .intel-action-btn.large { padding: 1rem; font-size: 0.9rem; }
    .auth-panel { padding: 2rem 1.5rem; }
    
    /* Full screen modals for mobile */
    .overlay { padding: 0; align-items: flex-start; }
    .overlay-content { 
        height: 100%; 
        width: 100%; 
        max-height: 100vh; 
        max-width: 100vw; 
        border-radius: 0; 
        border: none;
    }
    .close-overlay, .close-ai-modal { top: 1rem; right: 1rem; }
}
/* Heatmap View */
.heatmap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.heatmap-sector { background: var(--bg-card); border: 1px solid var(--border); padding: 1.5rem; border-radius: 12px; height: 100%; }
.heatmap-sector h3 { font-size: 0.8rem; color: var(--accent); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; }
.heatmap-assets { display: grid; grid-template-columns: repeat(auto-fill, minmax(50px, 1fr)); gap: 8px; }
.heatmap-box { height: 50px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 900; font-family: 'JetBrains Mono'; color: #000; cursor: pointer; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid var(--border); }
.heatmap-box:hover { transform: scale(1.1); z-index: 10; font-size: 0.8rem; border-color: #fff !important; }

.heatmap-legend { margin-bottom: 2rem; background: rgba(0,0,0,0.2); padding: 1.2rem; border-radius: 12px; border: 1px solid var(--border); }
.legend-labels { display: flex; justify-content: space-between; margin-bottom: 0.8rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; }
.legend-bar { height: 6px; border-radius: 3px; background: linear-gradient(to right, var(--risk-high), #333, var(--risk-low)); }

/* Catalyst Timeline */
.catalyst-list { margin-top: 2rem; position: relative; padding-left: 2rem; }
.catalyst-list::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); }
.catalyst-item { margin-bottom: 2rem; position: relative; }
.catalyst-item::before { content: ''; position: absolute; left: -2.35rem; top: 0.5rem; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent-glow); }
.cat-date { font-size: 0.75rem; color: var(--accent); font-family: 'JetBrains Mono'; margin-bottom: 0.5rem; }
.cat-card { background: var(--bg-card); border: 1px solid var(--border); padding: 1.5rem; border-radius: 12px; }
.cat-type { font-size: 0.65rem; padding: 2px 6px; border-radius: 4px; background: rgba(255,255,255,0.05); margin-bottom: 0.5rem; display: inline-block; }

/* Whale Feed */
.whale-list { display: flex; flex-direction: column; gap: 0.75rem; }
.whale-row { background: var(--bg-card); border: 1px solid var(--border); padding: 1rem 1.5rem; border-radius: 12px; display: grid; grid-template-columns: 80px 1fr 1fr 100px; align-items: center; gap: 1rem; }
.w-amount { font-family: 'JetBrains Mono'; font-weight: 900; font-size: 1.1rem; }
.w-hash { color: var(--text-dim); font-size: 0.75rem; }

/* Pulse & Flows */
.pulse-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; min-height: 200px; margin-top: 1rem; }
.pulse-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; border-radius: 20px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.big-val { font-size: 4rem; font-weight: 900; font-family: 'Outfit'; margin: 1rem 0; color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }
/* Premium Filter Systems */
.view-actions { display: flex; align-items: center; margin-bottom: 2rem; gap: 1.5rem; }
.category-filters, .timeframe-bar { 
    display: inline-flex; 
    background: rgba(0, 0, 0, 0.3); 
    padding: 4px; 
    border-radius: 12px; 
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}
.filter-btn, .tf-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    padding: 0.6rem 1.25rem;
    border-radius: 9px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.filter-btn:hover, .tf-btn:hover {
    color: var(--text-main);
}
.filter-btn.active, .tf-btn.active {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Advanced Quantitative Overlays */
.timeframe-btn { 
    background: rgba(255,255,255,0.05); 
    color: var(--text-dim); 
    border: 1px solid var(--border); 
    padding: 6px 12px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-family: 'JetBrains Mono'; 
    font-size: 0.6rem; 
    font-weight: 800;
    transition: 0.2s; 
    text-transform: uppercase;
    letter-spacing: 1px;
}
.timeframe-btn:hover { background: rgba(255,255,255,0.1); color: var(--text-main); }
.timeframe-btn.active { background: var(--accent); color: #000; border-color: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }

.z-outlier { border-color: var(--risk-high) !important; position: relative; }
.z-outlier::after { content: 'STAT OUTLIER'; position: absolute; top: -10px; right: 10px; font-size: 0.5rem; background: var(--risk-high); color: white; padding: 2px 6px; border-radius: 4px; font-weight: 900; box-shadow: 0 0 10px rgba(255, 62, 62, 0.4); z-index: 10; }

.export-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.2s;
}
.export-btn:hover { background: var(--border); }

/* Global Risk Intelligence */
.risk-summary-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; position: relative; overflow: hidden; }
.risk-gauge-container { text-align: center; }
.risk-label { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 2px; font-weight: 700; margin-bottom: 1rem; }
.risk-value { font-size: 5rem; font-weight: 800; font-family: 'Outfit'; line-height: 1; }
.risk-value span { font-size: 1.5rem; color: var(--text-dim); }
.risk-status { font-size: 1rem; font-weight: 700; letter-spacing: 3px; margin-top: 1rem; }

.stress-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.stress-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem; transition: transform 0.2s ease; }
.stress-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.04); }
.s-top { display: flex; justify-content: space-between; font-size: 0.65rem; color: var(--text-dim); margin-bottom: 8px; font-weight: 700; }
.s-name { color: var(--accent); }
.s-impact { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.s-outcome { font-size: 0.75rem; color: var(--text-dim); }

.risk-table-header { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; padding: 1rem; background: rgba(0, 242, 255, 0.05); font-size: 0.65rem; font-weight: 700; color: var(--accent); border-radius: 8px 8px 0 0; }
.risk-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; padding: 1rem; border-bottom: 1px solid var(--border); align-items: center; font-size: 0.85rem; }
.r-ticker { font-weight: 800; color: var(--text); }
.r-status { font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; width: fit-content; }
.status-elevated { background: rgba(255, 62, 62, 0.1); color: var(--risk-high); border: 1px solid var(--risk-high); }
.status-stable { background: rgba(0, 242, 255, 0.1); color: var(--risk-low); border: 1px solid var(--risk-low); }

/* Rotation Matrix */
.rotation-matrix-container { overflow-x: auto; padding: 2rem; background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.matrix-grid { display: grid; gap: 6px; min-width: 900px; }
.matrix-cell { height: 60px; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono'; font-size: 0.85rem; font-weight: 800; border-radius: 8px; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: crosshair; }
.matrix-cell:hover { transform: scale(1.1); z-index: 10; box-shadow: 0 0 20px rgba(255,255,255,0.2); border-color: #fff !important; }
.matrix-label { display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.matrix-label.vertical { justify-content: flex-end; padding-right: 1.5rem; color: var(--text-dim); }
.matrix-label.horizontal { padding-bottom: 1rem; }

/* Newsroom Styles */
.news-feed { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.news-card { background: var(--bg-card); border: 1px solid var(--border); padding: 1.5rem; border-radius: 12px; transition: 0.3s; position: relative; overflow: hidden; }
.news-card:hover { border-color: var(--accent); background: rgba(0, 242, 255, 0.02); }
.news-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.news-time { font-family: 'JetBrains Mono'; font-size: 0.7rem; color: var(--text-dim); }
.news-tag { font-size: 0.6rem; padding: 2px 8px; border-radius: 4px; font-weight: 900; letter-spacing: 1px; }
.tag-bullish { background: rgba(0, 255, 136, 0.1); color: var(--risk-low); border: 1px solid rgba(0, 255, 136, 0.2); }
.tag-bearish { background: rgba(255, 62, 62, 0.1); color: var(--risk-high); border: 1px solid rgba(255, 62, 62, 0.2); }
.tag-neutral { background: rgba(255, 255, 255, 0.05); color: var(--text-dim); border: 1px solid var(--border); }
.news-headline { font-size: 1.1rem; font-weight: 700; line-height: 1.4; color: var(--text-main); margin-bottom: 0.5rem; }
.news-summary { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.news-source { margin-top: 1rem; font-size: 0.65rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.live-indicator { width: 6px; height: 6px; background: var(--risk-high); border-radius: 50%; box-shadow: 0 0 10px var(--risk-high); animation: pulse-live 1s infinite; }
@keyframes pulse-live { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

/* Intelligence Guide Card */
.intel-guide-card { background: rgba(0, 242, 255, 0.05); border: 1px solid rgba(0, 242, 255, 0.2); padding: 1.5rem; border-radius: 12px; }
.guide-icon { font-size: 1.5rem; background: rgba(0, 242, 255, 0.1); padding: 0.5rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.guide-text h4 { font-family: 'Outfit'; letter-spacing: 1px; }

/* Tape Reader */
.tape-header { display: grid; grid-template-columns: 1fr 1.2fr 1fr 0.8fr; padding: 0.5rem; background: rgba(255,255,255,0.05); font-size: 0.65rem; color: var(--text-dim); font-weight: 800; border-radius: 4px; border: 1px solid var(--border); margin-bottom: 0.5rem; }
.tape-stream { height: 250px; overflow-y: hidden; display: flex; flex-direction: column; gap: 2px; mask-image: linear-gradient(to bottom, white 80%, transparent); }
.tape-row { display: grid; grid-template-columns: 1fr 1.2fr 1fr 0.8fr; padding: 4px 8px; font-family: 'JetBrains Mono'; font-size: 0.75rem; font-weight: 700; border-radius: 4px; animation: slideInTape 0.2s ease-out; }
.tape-row.buy { color: var(--risk-low); background: rgba(0, 255, 136, 0.05); }
.tape-row.sell { color: var(--risk-high); background: rgba(255, 62, 62, 0.05); }
.tape-col { display: flex; align-items: center; }
@keyframes slideInTape { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Divergence Visuals */
.heatmap-box { position: relative; }
.divergence-dot { position: absolute; top: 4px; right: 4px; width: 6px; height: 6px; background: #fff; border-radius: 50%; box-shadow: 0 0 8px #fff; animation: pulseDiv 1s infinite; }
@keyframes pulseDiv { 0% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } 100% { opacity: 0.2; transform: scale(0.8); } }

.div-meter { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; margin-top: 5px; overflow: hidden; border: 1px solid var(--border); }
.div-fill { height: 100%; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

/* Mindshare Guide */
.mindshare-guide { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; padding: 2rem; background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.mindshare-guide .guide-box { display: flex; flex-direction: column; gap: 0.8rem; }
.mindshare-guide .guide-box.full { grid-column: span 2; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 0.5rem; }
.mindshare-guide h4 { font-family: 'Outfit'; font-size: 0.8rem; letter-spacing: 2px; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.mindshare-guide p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.interpretation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 0.5rem; }
.inter-item { font-size: 0.75rem; color: var(--text-dim); line-height: 1.5; border-left: 2px solid var(--border); padding-left: 1rem; }
.inter-item strong { color: var(--text); display: block; margin-bottom: 2px; }

/* Strategy Lab & Labs */
.lab-workspace { margin-top: 1rem; }
.lab-controls { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.control-box { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.control-box:last-child { border: none; }
.control-box label { display: block; font-size: 0.65rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; margin-bottom: 12px; }
.ctrl-val { font-family: 'JetBrains Mono'; color: white; font-weight: 700; }
.ctrl-desc { font-size: 0.7rem; color: var(--text-dim); margin-top: 8px; line-height: 1.4; }

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
}

.mini-stat { background: rgba(0, 242, 255, 0.05); border: 1px solid rgba(0, 242, 255, 0.1); border-radius: 8px; padding: 12px; text-align: center; }
.mini-stat label { display: block; font-size: 0.6rem; margin-bottom: 4px; color: var(--text-dim); }
.mini-stat .val { font-size: 1.2rem; font-weight: 800; font-family: 'Outfit'; }

/* Liquidity Map */
#liquidity-map { display: flex; flex-direction: column; gap: 4px; font-family: 'JetBrains Mono'; font-size: 0.7rem; }
.liq-level { display: grid; grid-template-columns: 80px 1fr 40px; gap: 10px; align-items: center; }
.liq-price { color: var(--text-dim); }
.liq-size { color: var(--text); font-weight: 700; text-align: right; }
.liq-bar-bg { height: 8px; background: rgba(255,255,255,0.03); border-radius: 4px; overflow: hidden; }
.liq-bar { height: 100%; transition: width 0.3s ease; }

/* Derivatives Monitor */
.derivatives-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.deriv-box { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 1rem; border-radius: 12px; }
.deriv-box label { display: block; font-size: 0.6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.deriv-box span { font-size: 1.1rem; font-weight: 700; font-family: 'Outfit'; }

/* Macro Correlation Sync */
.macro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 1rem; }
.macro-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: transform 0.2s ease; }
.macro-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.04); }
.m-asset { font-size: 0.8rem; color: var(--text-dim); font-weight: 700; letter-spacing: 1px; }
.m-corr { font-size: 2.5rem; font-weight: 800; font-family: 'Outfit'; margin: 0.5rem 0; }
.m-status { font-size: 0.7rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.m-interpretation { font-size: 0.8rem; line-height: 1.5; color: var(--text-dim); border-top: 1px solid var(--border); padding-top: 1rem; }

/* News Article Panel */
.news-article-panel {
    max-width: 800px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
    overflow-y: auto;
    max-height: 90vh;
}
.article-header { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; margin-bottom: 2rem; }
.article-meta { display: flex; gap: 15px; align-items:center; margin-bottom: 1rem; }
.article-title { font-family: 'Outfit'; font-size: 2.2rem; font-weight: 900; line-height: 1.2; color: #fff; }
.article-content { font-size: 1.1rem; line-height: 1.8; color: var(--text-main); font-family: 'Inter', sans-serif; }
.article-content p { margin-bottom: 1.5rem; }
.article-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--text-dim); font-size: 0.8rem; }
.news-card { cursor: pointer; transition: 0.2s; }
.news-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 242, 255, 0.1); }

/* Alert System */

@keyframes pulse-alert {
    0% { transform: scale(1); box-shadow: 0 0 5px var(--risk-high); }
    50% { transform: scale(1.2); box-shadow: 0 0 15px var(--risk-high); }
    100% { transform: scale(1); box-shadow: 0 0 5px var(--risk-high); }
}

.alert-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.alert-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
.alert-card.high { border-color: #ff8e3e; background: rgba(255, 142, 62, 0.03); }
.alert-card.extreme { border-color: var(--risk-high); background: rgba(255, 62, 62, 0.05); }

.alert-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,62,62,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.alert-card.extreme .alert-glow { animation: alert-sweep 3s infinite linear; }

@keyframes alert-sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.alert-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.alert-type { font-family: 'JetBrains Mono'; font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }
.alert-timestamp { font-size: 0.7rem; color: var(--text-dim); }
.alert-msg { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.3; }
.alert-footer { display: flex; justify-content: space-between; align-items: center; }
.ticker-chip { background: var(--border); padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; color: var(--text-main); }
.severity-status { font-size: 0.65rem; font-weight: 900; letter-spacing: 1px; }
.extreme .severity-status { color: var(--risk-high); }
.high .severity-status { color: #ff8e3e; }

/* Whale Pulse Refinement */
.whale-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.whale-row {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    align-items: center;
    gap: 2rem;
    transition: 0.2s;
}
.whale-row:hover { border-color: var(--accent); background: rgba(0, 242, 255, 0.02); }
.w-amount { font-family: 'Outfit'; font-size: 1.3rem; font-weight: 900; color: #fff; }
.usd-val { font-family: 'JetBrains Mono'; font-size: 0.8rem; color: var(--text-dim); margin-left: 10px; }
.w-meta { display: flex; gap: 15px; margin-top: 5px; font-size: 0.7rem; color: var(--text-dim); }
.w-hash { color: var(--accent); font-family: 'JetBrains Mono'; }
.w-paths { display: flex; flex-direction: column; gap: 5px; font-size: 0.8rem; }
.w-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.impact-badge { font-size: 0.6rem; font-weight: 900; padding: 4px 8px; border-radius: 4px; letter-spacing: 1px; border: 1px solid transparent; }
.impact-extreme { background: rgba(255, 62, 62, 0.1); color: var(--risk-high); border-color: rgba(255, 62, 62, 0.2); }
.impact-high { background: rgba(255, 142, 62, 0.1); color: #ff8e3e; border-color: rgba(255, 142, 62, 0.2); }
.impact-medium { background: rgba(0, 242, 255, 0.1); color: var(--accent); border-color: rgba(0, 242, 255, 0.2); }

/* Trade Execution Styles */
.trade-panel { width: 500px; padding: 2.5rem; border: 1px solid var(--accent); background: linear-gradient(135deg, #0a0e14 0%, #05070a 100%); }
.trade-header { display: flex; align-items: center; gap: 15px; margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.trading-icon { font-size: 2rem; color: var(--accent); filter: drop-shadow(0 0 10px var(--accent)); }
.trade-flow { display: flex; flex-direction: column; gap: 20px; }
.status-stage { display: flex; align-items: center; gap: 15px; opacity: 0.3; transition: all 0.3s ease; }
.status-stage.active { opacity: 1; transform: translateX(5px); }
.status-stage.complete { opacity: 1; color: var(--risk-low); }
.stage-indicator { width: 24px; height: 24px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 900; }
.stage-text { display: flex; flex-direction: column; }
.stage-title { font-weight: 800; font-size: 0.9rem; }
.stage-desc { font-size: 0.7rem; color: var(--text-dim); }
.loading-bar-mini { height: 2px; width: 0%; background: var(--accent); transition: width 1s ease; margin-top: 5px; }
.active .loading-bar-mini { width: 100%; }

/* ============= AUTHENTICATION SHELL ============= */
#auth-overlay {
    background: url('assets/auth_bg.png') no-repeat center center fixed;
    background-size: cover;
    z-index: 9999;
}

#auth-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5, 7, 10, 0.4) 0%, rgba(5, 7, 10, 0.9) 100%);
    z-index: 1;
}

.auth-panel {
    position: relative;
    z-index: 10;
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 24px;
    padding: 3.5rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(0, 242, 255, 0.05);
    text-align: center;
}

.auth-header {
    margin-bottom: 2.5rem;
}

.logo-orb.large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: radial-gradient(circle, var(--accent), #7000ff);
    box-shadow: 0 0 30px var(--accent-glow);
    filter: drop-shadow(0 0 10px var(--accent));
}

.auth-header h2 {
    font-family: 'Outfit';
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.auth-header h2 span {
    color: var(--accent);
    font-weight: 400;
    opacity: 0.8;
}

.auth-header p {
    font-family: 'JetBrains Mono';
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    font-weight: 700;
}

.auth-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.input-group label {
    font-family: 'JetBrains Mono';
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.input-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: 'JetBrains Mono';
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--accent);
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.auth-error {
    background: rgba(255, 62, 62, 0.1);
    border: 1px solid rgba(255, 62, 62, 0.2);
    color: var(--risk-high);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'JetBrains Mono';
}

.intel-action-btn.large {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px var(--accent-glow);
}

.intel-action-btn.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 242, 255, 0.3);
    background: #fff;
}

.auth-switch {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 600;
}

.auth-switch a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    margin-left: 5px;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.auth-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
}

.security-badge, .system-status {
    font-family: 'JetBrains Mono';
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.system-status {
    color: var(--risk-low);
}

/* Animations */
@keyframes orb-pulse {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
    100% { transform: scale(1); filter: brightness(1); }
}

.logo-orb.large {
    animation: orb-pulse 4s infinite ease-in-out;
}

/* ============================================================ */
/* PREMIMUM PAYWALL UI */
/* ============================================================ */
.paywall-panel {
    max-width: 500px;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid var(--accent);
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(20px);
}

.premium-orb {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 15px var(--accent));
}

.paywall-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.paywall-header h2 span {
    color: var(--accent);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.benefit-text h4 {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.benefit-text p {
    color: var(--text-dim);
    font-size: 0.75rem;
}

.pricing-card {
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.paywall-footer-text {
    font-size: 0.6rem;
    color: var(--text-dim);
    text-align: center;
    letter-spacing: 1px;
}

.premium-lock {
    font-size: 0.7rem;
    color: #fffa00;
    margin-left: 4px;
}

/* User Profile Card */
.user-profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem;
    margin-top: auto;
    margin-bottom: 2rem;
    transition: 0.3s;
}
.user-profile-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 242, 255, 0.3);
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}
.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #7000ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}
#display-user-email {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tier-badge {
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
    letter-spacing: 1px;
}
.tier-badge.free { background: rgba(255, 255, 255, 0.1); color: var(--text-dim); }
.tier-badge.institutional { background: var(--accent-glow); color: var(--accent); border: 1px solid var(--accent); }

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.profile-action-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.7rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    font-family: 'JetBrains Mono';
}
.profile-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-dim);
}
.profile-action-btn.logout-btn {
    background: transparent;
    border-color: transparent;
    color: var(--risk-high);
}
.profile-action-btn.logout-btn:hover {
    background: rgba(255, 62, 62, 0.1);
}
.btn-icon { font-size: 1rem; }
