/* ANIMAÇÃO DA BOLA */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ball {
  display: inline-block;
  animation: spin 4s linear infinite;
}

/* GLOW NO TÍTULO */
.title-glow {
  color: white;
  text-shadow:
    0 0 5px #00ff88,
    0 0 10px #00ff88,
    0 0 20px #00ff88;
}

/* ANIMAÇÃO SUAVE DO TÍTULO */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-animate {
  animation: fadeSlide 0.8s ease-out;
}

/* scroll */
#players::-webkit-scrollbar {
  width: 6px;
}

#players::-webkit-scrollbar-thumb {
  background: linear-gradient(#00ff88, #00ccff);
  border-radius: 10px;
}

.tab-btn {
  transition: all 0.2s ease;
}

.tab-btn:hover {
  transform: translateY(-2px);
}


@keyframes glow {
  0% { box-shadow: 0 0 5px #22c55e; }
  50% { box-shadow: 0 0 20px #22c55e; }
  100% { box-shadow: 0 0 5px #22c55e; }
}

.glow {
  animation: glow 2s infinite;
}

