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

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

#days-counter {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

@media (max-width: 640px) {
    #days-counter {
        font-size: 3.5rem;
    }
}

/* Animation for the counter */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#days-counter {
    animation: pulse 2s infinite;
}