﻿/* ═══════════════════════════════════════════════════
   UDEC Light Classic — Animations
   ═══════════════════════════════════════════════════ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-gentle {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.75;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-in {
    animation: fadeIn 0.25s ease-out;
}

.animate-pulse-glow {
    animation: pulse-gentle 2s ease-in-out infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}
