@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    color: #e2e8f0;
}

.scan-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.threat-card {
    transition: all 0.3s ease;
    border-left: 4px solid #ef4444;
}

.threat-card:hover {
    transform: translateX(5px);
    background: rgba(239, 68, 68, 0.1);
}

.safe-card {
    border-left: 4px solid #10b981;
}

.progress-bar {
    transition: width 0.5s ease-in-out;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.time-update {
    animation: timeUpdate 0.5s ease;
}

@keyframes timeUpdate {
    0% { opacity: 0.5; transform: translateY(-2px); }
    100% { opacity: 1; transform: translateY(0); }
}
