.attention-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  animation: fadeSlideIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(-10px);
  animation-delay: 0.5s;
}

.attention-link i {
  font-size: 20px;
  color: #ffffff;
}

/* Only the text gets underline animation */
.underline-text {
  position: relative;
  padding-bottom: 6px;
}

/* Looping animated underline for text only */
.underline-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #00afff, #4bdeff);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: stylishUnderlineLoop 4s ease-in-out infinite;
}

/* Fade in main link */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Underline animation loop */
@keyframes stylishUnderlineLoop {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

