/* Nexus AI Core UI System */
:root {
    --primary-glow: #3211d4;
    --accent-glow: #00f0ff;
    --quantum-bg: rgba(2, 6, 23, 0.95);
}

@keyframes nexus-ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.nexus-ai-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(50, 17, 212, 0.3);
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    pointer-events: none;
}

.nexus-ai-ticker-content {
    display: inline-block;
    animation: nexus-ticker 40s linear infinite;
}

.nexus-agent-status {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nexus-agent-dot {
    width: 6px;
    height: 6px;
    background: #00f0ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f0ff;
    animation: nexus-pulse 2s infinite;
}

@keyframes nexus-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.nexus-scanner-line {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.1), transparent);
    z-index: 10000;
    pointer-events: none;
    animation: nexus-scan 10s linear infinite;
}

@keyframes nexus-scan {
    0% { top: -100px; }
    100% { top: 100%; }
}
