.joueur-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.joueur-nom {
  text-align: center;
  margin-bottom: 30px;
}

.joueur-header {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.joueur-photo img {
  width: 250px;
  border-radius: 10px;
}

.joueur-infos {
  flex: 1;
  font-size: 16px;
}

.joueur-infos p {
  margin-bottom: 10px;
}

.joueur-stats {
  margin-top: 20px;
  font-size: 18px;
  color: #0a3d91;
}

.joueur-bio {
  margin-top: 30px;
  line-height: 1.6;
}

.joueur-bio h2 {
  margin-bottom: 15px;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .joueur-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .joueur-photo img {
    width: 200px;
  }
}

.joueur-infos {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
}

.joueur-matchs {
  margin-top: 20px;
  padding-left: 20px;
}

.joueur-matchs li {
  margin-bottom: 8px;
}

.joueur-matchs a {
  text-decoration: none;
  color: #0a3d91;
}

.joueur-matchs a:hover {
  text-decoration: underline;
}

.joueurs-page {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.joueurs-title {
  text-align: center;
  margin-bottom: 20px;
}

.tri {
  text-align: center;
  margin-bottom: 15px;
}

.tri a {
  margin: 0 5px;
  text-decoration: none;
  font-weight: bold;
}

.joueurs-table {
  width: 100%;
  border-collapse: collapse;
}

.joueurs-table th {
  background: #0a3d91;
  color: white;
  padding: 10px;
}

.joueurs-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.joueurs-table tr:hover {
  background: #f5f7ff;
}