@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(249, 199, 25, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(249, 199, 25, 0.8);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.glow-animation {
  animation: glow 2s infinite;
}

.tournament-card {
  animation: fadeInUp 0.6s ease-out;
}

.tournament-card:nth-child(1) {
  animation-delay: 0.1s;
}

.tournament-card:nth-child(2) {
  animation-delay: 0.2s;
}

.tournament-card:nth-child(3) {
  animation-delay: 0.3s;
}

.review-card {
  animation: fadeInUp 0.6s ease-out;
}

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.widget-btn {
  animation: pulse 2s infinite;
}
