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

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #0b0f1a; 
    color: #e2e8f0;
}

.glass-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.05); border-color: rgba(16, 185, 129, 0.1); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.4); }
    100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.05); border-color: rgba(16, 185, 129, 0.1); }
}

.today-card {
    background: linear-gradient(145deg, rgba(6, 78, 59, 0.2) 0%, rgba(15, 23, 42, 0.7) 100%);
    animation: glow 4s infinite ease-in-out;
}

.status-badge {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.glass-container {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-8px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
    will-change: opacity, transform;
}



