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

html {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom undefined theme animations */
@keyframes undefinedPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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