@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(125, 58, 237, 0.35);
  }
  70% {
    opacity: 1;
    box-shadow: 0 0 32px 8px rgba(29, 78, 216, 0.25);
  }
  100% {
    opacity: 0.9;
    box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.0);
  }
}

@keyframes shimmerSweep {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-rise {
  animation: riseFade 0.9s ease forwards;
}

.animate-glow {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.animate-shimmer {
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmerSweep 3.5s linear infinite;
}



@media only screen and (max-width: 768px) {
article.bg-white\/5.border.border-white\/10.rounded-3xl.p-6.space-y-4.animate-rise img {
    width: 50%;
    margin: 0 auto;
}

}