/* BASE RESET */
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* FX: SCANLINE */
.scanline {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 255, 65, 0.015) 51%, transparent 51%);
    background-size: 100% 4px; pointer-events: none; z-index: 9999;
}

/* BG GRID */
.bg-grid-pattern {
    background-image: linear-gradient(to right, #111 1px, transparent 1px), 
                      linear-gradient(to bottom, #111 1px, transparent 1px);
}

/* NAVIGATION */
.nav-btn { color: rgba(255,255,255,0.3); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-top: 2px solid transparent; }
.nav-btn.active { color: #00FF41; background: rgba(0, 255, 65, 0.05); border-top-color: #00FF41; }

/* BENTO PANELS */
.glass-panel {
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-panel:hover { border-color: rgba(0, 255, 65, 0.3); }

/* ANIMATIONS */
.ticker { display: inline-block; animation: ticker-run 40s linear infinite; }
@keyframes ticker-run { 
    from { transform: translateX(0); } 
    to { transform: translateX(-50%); } 
}

.fade-in { animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* CHAT BUBBLES */
.msg { max-width: 85%; padding: 10px 14px; margin-bottom: 12px; font-size: 12px; border-radius: 4px; }
.msg-v { align-self: flex-start; background: rgba(255,255,255,0.05); border-left: 2px solid white; }
.msg-a { align-self: flex-end; background: rgba(0,255,65,0.05); border-right: 2px solid #00FF41; color: #00FF41; }
