#azules-jugadores {
  background: linear-gradient(to bottom, #001f4d, #000d26);
  text-align: center;
  color: #fff;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #DA291C, #0033A0);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  transition: all 0.3s ease;
}

.jugadores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.jugador-card {
  width: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: none; /* Ocultos por defecto */
}

.jugador-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.jugador-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.jugador-card h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
}

.gamertag {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #DA291C;
  margin-top: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
