/* ================= 赛博情报大屏 ================= */
#dashboard-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(0, 30, 30, 0.4) 0%, transparent 80%);
    padding: 40px 20px;
}

.dashboard-wrapper {
    width: 100%;
    max-width: 1000px;
    background: rgba(0, 10, 0, 0.7);
    border: 1px solid #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2), inset 0 0 20px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    font-family: 'Courier New', Courier, monospace;
}

.dashboard-header {
    background: rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid #0ff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pulse-dot {
    width: 12px; height: 12px;
    background: #f00;
    border-radius: 50%;
    box-shadow: 0 0 10px #f00;
    animation: alertPulse 1s infinite alternate;
}

@keyframes alertPulse {
    from { opacity: 0.4; box-shadow: 0 0 5px #f00; }
    to { opacity: 1; box-shadow: 0 0 20px #f00; }
}

.dashboard-header h2 { color: #0ff; font-size: 1.2rem; margin: 0; text-shadow: 0 0 5px #0ff; flex-grow: 1; }
.status-ok { color: #0f0; font-size: 0.9rem; animation: neon-flicker 4s infinite; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
}

.dash-panel {
    border: 1px dashed rgba(0, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.panel-title {
    color: #f0f;
    border-bottom: 1px solid #f0f;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0 0 5px #f0f;
    position: relative;
    overflow: hidden;
}

.panel-title::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.3), transparent);
}

.panel-title:hover::after {
    animation: scan-sweep 0.6s ease;
}

@keyframes scan-sweep {
    0%   { left: -100%; }
    100% { left: 100%; }
}

.stream-content { flex-grow: 1; overflow-y: auto; font-size: 0.9rem; }
.stream-content::-webkit-scrollbar { width: 5px; }
.stream-content::-webkit-scrollbar-thumb { background: #0ff; }
.log-item { border-left: 3px solid #0ff; padding-left: 10px; margin-bottom: 8px; color: #aaa; animation: slideIn 0.3s ease-out; }
.log-item .ip { color: #fff; font-weight: bold; }
.log-item .action { color: #ff0; }

.stats-list li { display: flex; justify-content: space-between; margin-bottom: 10px; color: #fff; font-size: 0.95rem; }
.stats-list li .bar { color: #f00; }

.warning-box {
    margin-top: auto; background: rgba(255, 0, 0, 0.1); border: 1px solid #f00; padding: 10px; text-align: center; color: #f00;
}
