/* --- Card entrance animation --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dex-card {
  animation: fadeInUp 0.4s ease both;
  animation-delay: calc(var(--card-index, 0) * 0.04s);
}
