/* effects.css */
@keyframes subtle-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}
.floating-card {
    animation: subtle-float 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .floating-card {
        animation: none;
    }
}
