@keyframes soft-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-soft-fade {
  animation: soft-fade 0.6s ease-in-out both;
}

.animate-rise {
  animation: rise 0.8s ease-out both;
}

.animate-shimmer {
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
}

