/* 跳动文字动画 */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bounce-text {
  display: inline-block;
  animation: bounce 1.5s ease infinite;
}

.bounce-text.delay-100 {
  animation-delay: 0.2s;
}

.bounce-text.delay-200 {
  animation-delay: 0.4s;
}