
/* Block 1 */
.animate-pulse {
    animation: pulse-custom 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  @keyframes pulse-custom {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
  }

/* Block 3 */
.bg-radial-gradient {
    background-image: radial-gradient(var(--tw-gradient-stops));
  }

/* Block 4 */
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
