@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #0f172a; 
    color: #f1f5f9; 
    overflow-x: hidden;
}

.glass { 
    background: rgba(30, 41, 59, 0.7); 
    backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.status-normal { 
    color: #60a5fa; 
    animation: pulse-glow 4s infinite ease-in-out; 
}

.status-ice { 
    color: #bae6fd; 
    font-weight: 600; 
    font-style: italic; 
    text-shadow: 0 0 8px rgba(186, 230, 253, 0.5); 
    font-size: 1.25rem !important; 
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; text-shadow: 0 0 10px rgba(96, 165, 250, 0.3); }
}