/**
 * Card Animations - Shared CSS for all card components
 * Provides: entrance animations and 3D transform setup
 */

/* Keyframes for card entrance animation */
@keyframes cardEntrance {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* Card Animations */
.common-card {
    opacity: 0;
    animation: cardEntrance 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(0.05s * var(--card-index, 1));
}

/* Optional: Disable animations on mobile for better performance */
@media (prefers-reduced-motion: reduce) {
    .common-card {
        opacity: 1;
        animation: none;
        transform: none;
    }
}
