.phl-header-logos {
  background-color: #0D0B16;
  border-bottom: 1px solid var(--phl-secondary);
  box-shadow: 0 0 20px rgba(255, 0, 184, 0.2);
  color: var(--phl-light);
}

.conference-title {
  text-align: center;
  color: var(--phl-primary);
  font-weight: 700;
  text-shadow: 0 0 15px var(--phl-accent);
  margin-bottom: 1rem;
}

.division-title {
  text-align: center;
  color: var(--phl-blue);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* Grille d'équipes */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.8rem;
  justify-items: center;
  align-items: center;
}

/* Logos d'équipe */
.nhl-logo {
  width: 125px;
  height: 125px;
  border-radius: 8px;
  background-color: whitesmoke; /* petit fond subtil */
  padding: 8px;
  transition: 0.3s ease;
  filter: brightness(1.1) contrast(1.1);
  box-shadow: 0 0 8px rgba(255, 0, 184, 0.2);
}

/* Au survol : léger zoom + halo néon */
.nhl-logo:hover {
  transform: scale(1.15);
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 15px var(--phl-primary));
  box-shadow: 0 0 25px var(--phl-accent);
}

/* Conférence : logo + titre alignés */
.conference-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-left: 4px solid var(--phl-primary);
  padding-left: 1rem;
}

.conference-img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--phl-primary));
  transition: 0.3s ease;
  background-color: whitesmoke;
  border-radius: 8px;
}

.conference-title {
  color: var(--phl-primary);
  font-weight: 700;
  text-shadow: 0 0 15px var(--phl-accent);
  letter-spacing: 1px;
  font-size: 1.6rem;
}

.conference-header:hover .conference-img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px var(--phl-accent));
}

.team-link {
  display: inline-block;
  transition: 0.3s ease;
  border-radius: 8px;
}

.team-link:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--phl-primary);
}

.team-link:active {
  transform: scale(1.05);
}

/* Sur très petit écran : réduire la taille */
@media (max-width: 768px) {
  .nhl-logo {
    width: 65px;
  }
}