/* Shimmer — animated gradient text effect */

@keyframes shimmer {
  0% {
    background-position: -40% 0;
  }
  100% {
    background-position: 140% 0;
  }
}

.shimmer-text {
  font-weight: 900;
  display: inline-block;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shimmer-text.shimmer-light {
  background-image: linear-gradient(
    90deg,
    #f5f5f4 10%,
    #fef3c7 35%,
    #e0e7ff 60%,
    #f5f5f4 85%
  );
}

.shimmer-text.shimmer-dark {
  background-image: linear-gradient(
    90deg,
    #1e293b 10%,
    #334155 35%,
    #64748b 60%,
    #1e293b 85%
  );
}
