
* { font-family: 'Inter', sans-serif; }

.gauge-container {
    position: relative;
    width: 140px;
    height: 70px;
}

.confidence-low {
    opacity: 0.6;
    filter: grayscale(0.3);
}

.anomaly-marker {
    background-color: #ef4444;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-gradient {
    background: linear-gradient(135deg, #5D5CDE 0%, #818cf8 50%, #06b6d4 100%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.country-marker {
    transition: all 0.3s ease;
}

.country-marker:hover {
    transform: scale(1.2);
}

.algorithm-flow {
    position: relative;
}

.algorithm-flow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5D5CDE, transparent);
}

.metric-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.dark .metric-card {
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
}

.enhanced-map {
    height: 600px !important;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.sidebar-stats {
    background: linear-gradient(145deg, #fafafa 0%, #ffffff 100%);
}

.dark .sidebar-stats {
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
}

.floating-panel {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .floating-panel {
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(75, 85, 99, 0.3);
}
