@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-base: #020617;
    --bg-panel: #0f172a;
    --bg-panel-hover: #1e293b;
    --border-color: #334155;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-red: #ef4444;
    --accent-blue: #38bdf8;
    --accent-green: #10b981;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 0%, #1e1b4b 0%, var(--bg-base) 40%);
}

.dashboard-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 16px 24px;
    box-sizing: border-box;
    gap: 16px;
}

/* Header */
.dashboard-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #f8fafc;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-title i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.text-muted {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Status Bar */
.poll-status-bar {
    font-size: 0.8rem;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.8);
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.wake-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    margin-right: 15px;
    border-right: 1px solid var(--border-color);
    padding-right: 15px;
    font-size: 1rem;
    transition: color 0.3s;
    outline: none;
}
.wake-btn:hover {
    color: var(--text-light);
}
.wake-btn.active {
    color: #f59e0b;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}
/* Map & Timeline Layout */
.map-and-timeline {
    flex: 1 1 50%;
    display: flex;
    gap: 16px;
    min-height: 300px;
}
.map-area {
    flex: 3;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.map-filter-widget {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;
    display: flex;
    gap: 4px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-btn:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}
.filter-btn.active {
    background: var(--danger-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}
.timeline-area {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.timeline-header {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.timeline-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.timeline-content::-webkit-scrollbar { width: 4px; }
.timeline-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* Timeline Item */
.tl-item {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(239, 68, 68, 0.3);
    animation: fadeInSlide 0.4s ease-out;
}
.tl-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 8px var(--accent-red);
}
.inv-hash {
    font-size: 0.8rem;
    color: var(--text-light);
    font-family: monospace;
    max-width: 250px;
    display: flex;
    align-items: center;
}
.hash-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.copy-icon {
    cursor: pointer;
    color: var(--text-muted);
    margin-left: 8px;
    transition: color 0.2s ease;
}
.copy-icon:hover {
    color: var(--accent-color);
}
.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 9999;
    transition: opacity 0.3s ease;
}
.copy-toast.fade-out {
    opacity: 0;
}
.tl-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.tl-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.3;
    word-break: break-all;
}
.tl-geo {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#world-map {
    width: 100%;
    height: 100%;
    background: #020617;
}

@media (max-width: 900px) {
    .map-and-timeline {
        flex-direction: column;
    }
    .timeline-area {
        flex: none;
        height: 250px;
    }
}

/* Feed Container */
.feed-container {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.feed-header {
    flex-shrink: 0;
    padding: 12px 16px;
    background: #0b1120;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.feed-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.feed-header h3 {
    margin: 0;
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mode Badge */
.mode-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.mode-live   { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.mode-search { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }

/* Search Wrapper */
.search-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 220px;
    max-width: 560px;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.8rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 8px 36px 8px 34px;
    color: #f1f5f9;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.search-input::placeholder { color: #475569; }

.search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 2px 4px;
    font-size: 0.75rem;
    transition: color 0.2s;
}
.search-clear:hover { color: #ef4444; }

.search-btn {
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
    flex-shrink: 0;
}
.search-btn:hover  { background: #2563eb; }
.search-btn:active { transform: scale(0.97); }
.search-btn.loading { background: #1d4ed8; pointer-events: none; }

/* Search Info Bar */
.search-info {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.08);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 0.82rem;
    color: #93c5fd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.search-info .clear-link {
    color: #f87171;
    cursor: pointer;
    font-size: 0.78rem;
    text-decoration: underline;
    white-space: nowrap;
}
.search-info .clear-link:hover { color: #ef4444; }

/* Live Indicator Dot */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-red);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Footer */
.dashboard-footer {
    flex-shrink: 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 8px;
    letter-spacing: 0.02em;
}
.dashboard-footer a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.dashboard-footer a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Table */
.table-responsive {
    flex: 1;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.feed-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.feed-table th {
    position: sticky;
    top: 0;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(8px);
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    text-align: left;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
    z-index: 10;
}

.feed-table td {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
    color: #cbd5e1;
}

.feed-table tr {
    transition: background-color 0.2s ease;
}

.feed-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Scrollbar */
.table-responsive::-webkit-scrollbar { width: 6px; }
.table-responsive::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); }
.table-responsive::-webkit-scrollbar-thumb { background: #334155; border-radius: 8px; }
.table-responsive::-webkit-scrollbar-thumb:hover { background: #475569; }

/* Column Styles */
.col-time {
    color: #94a3b8;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.col-sig {
    color: #fca5a5;
    font-weight: 500;
}
.col-type {
    white-space: nowrap;
}
/* Modern Badge */
.type-badge {
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 3px 8px;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.col-geo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
}
.col-geo img {
    width: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.col-ip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #93c5fd;
}
.hash-text {
    color: #64748b;
    font-size: 0.75rem;
    margin-left: 6px;
}

/* Flash Animations */
.attack-item-new td {
    background: rgba(239, 68, 68, 0.08) !important;
    animation: flashRow 2.5s ease-out forwards;
}
@keyframes flashRow {
    0% { background: rgba(239, 68, 68, 0.25) !important; }
    100% { background: transparent !important; }
}

.new-badge {
    display: inline-block;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    animation: blink 1s step-end infinite;
}

/* Map Pulse Marker */
.pulse-marker {
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.6);
    animation: markerPulse 2s infinite;
}
.pulse-new {
    background: #ff3333 !important;
    width: 16px !important;
    height: 16px !important;
    margin-left: -2px !important;
    margin-top: -2px !important;
    animation: markerPulseFast 1s infinite !important;
}

@keyframes markerPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.8); }
    70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
@keyframes markerPulseFast {
    0% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.8); }
    70% { box-shadow: 0 0 0 18px rgba(255, 51, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

/* Global Alert Overlay */
.new-attack-alert {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(153, 27, 27, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid #dc2626;
    color: #fef2f2;
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    z-index: 9999;
    animation: alertSlide 0.4s cubic-bezier(0.16,1,0.3,1), alertFade 0.5s ease 3s forwards;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── New Investigation Fields ── */
.col-file { font-size: 0.8rem; }
.file-size { color: #64748b; margin-left: 8px; font-weight: 500; }
.file-mime { color: #475569; font-size: 0.75rem; margin-top: 4px; }

.col-threat { vertical-align: top; }
.threat-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.tag-badge {
    background: rgba(245, 158, 11, 0.1); color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 2px 6px; border-radius: 4px;
    font-size: 0.65rem; font-weight: 600;
}
.reporter-text {
    color: #94a3b8; font-size: 0.7rem;
    display: flex; align-items: center; gap: 4px;
}

.col-investigate { font-family: 'JetBrains Mono', monospace; vertical-align: top; }
.inv-ip { color: #38bdf8; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.dashboard-logo { height: 32px; width: auto; vertical-align: middle; margin-right: 10px; border-radius: 4px; display: inline-block; }
.inv-ip i { color: #64748b; font-size: 0.7rem; }


@media (max-width: 768px) {
    body {
        height: auto;
        overflow: visible;
    }
    .dashboard-wrapper {
        height: auto;
        padding: 10px;
    }
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .dashboard-title {
        font-size: 1.1rem;
    }
    .dashboard-logo {
        height: 24px;
    }
    .map-container { 
        height: 350px; 
        flex: none; 
    }
    .feed-container { 
        height: auto; 
        min-height: 400px;
        flex: none; 
    }
    .feed-table {
        min-width: 850px;
    }
    .search-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .pagination-controls {
        flex-direction: column;
        gap: 12px;
    }
}

/* ── Pagination Controls ── */
.pagination-controls {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 20px; background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid var(--border-color);
    position: sticky; bottom: 0;
}
.pagination-btn {
    background: #1e293b; color: #f1f5f9; border: 1px solid #334155;
    padding: 6px 12px; border-radius: 4px; font-size: 0.8rem;
    cursor: pointer; transition: all 0.2s;
}
.pagination-btn:hover:not(:disabled) { background: #3b82f6; border-color: #60a5fa; }
.pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.pagination-info { font-size: 0.85rem; color: #94a3b8; }

/* OS Badges */
.os-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.1);
}
.os-badge i { margin-right: 4px; font-size: 0.75rem; }
.os-win { color: #60a5fa; background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.3); }
.os-linux { color: #facc15; background: rgba(250,204,21,0.1); border-color: rgba(250,204,21,0.3); }
.os-android { color: #4ade80; background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.3); }
.os-mac { color: #e2e8f0; background: rgba(226,232,240,0.1); border-color: rgba(226,232,240,0.3); }
.os-unknown { color: #94a3b8; background: rgba(148,163,184,0.1); border-color: rgba(148,163,184,0.3); }

/* Top Countries Widget */
.top-countries-widget {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    pointer-events: auto;
}

.tc-header {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 6px;
}

.tc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.tc-item:last-child {
    margin-bottom: 0;
}

.tc-country {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
}

.tc-count {
    font-weight: 600;
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ── Threat Detail Sidebar ── */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.threat-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    color: #e2e8f0;
}

.threat-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.close-btn:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.sidebar-content::-webkit-scrollbar { width: 4px; }
.sidebar-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.sidebar-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a3b8;
    gap: 15px;
}

.sidebar-section {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.sidebar-section h4 {
    margin: 0 0 10px 0;
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 5px;
}

.sd-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}
.sd-label { color: #64748b; }
.sd-value { color: #f8fafc; font-weight: 500; text-align: right; word-break: break-all; max-width: 65%; }

.pulse-item {
    padding: 10px;
    background: rgba(56, 189, 248, 0.05);
    border-left: 2px solid var(--accent-blue);
    margin-bottom: 10px;
    border-radius: 0 4px 4px 0;
}
.pulse-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; color: #38bdf8; }
.pulse-meta { font-size: 0.75rem; color: #94a3b8; }

@media (max-width: 500px) {
    .threat-sidebar { width: 100%; right: -100%; }
}
