.credits-section {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.credits-section:nth-child(1) { animation-delay: 0.1s; }
.credits-section:nth-child(2) { animation-delay: 0.25s; }
.credits-section:nth-child(3) { animation-delay: 0.4s; }

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

/* Glow title effect like other pages */
.hof-section-title {
  font-family: "Press Start 2P", monospace;
  font-size: 16px;
  color: #eeff00;
  text-shadow: 0 0 6px #eeff004c, 0 0 12px #eeff004c;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
