/* classement.php — règles propres à cette page.
   L'habillage commun vient de fichiers-partages-des-jeux/css/jeu.css. */
.lb-row .lb-temps {
  color: #60a5fa;
  font-size: 0.78rem;
}

.card {
  position: relative;
  z-index: 1;
}

/* Onglet Tournois */
.tournoi-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.tournoi-row:hover {
  background: var(--surface-2);
}

.tournoi-date {
  width: 130px;
  font-size: 0.78rem;
  color: var(--texte-faible);
  flex-shrink: 0;
}

.tournoi-nom {
  flex: 1;
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tournoi-gagnant {
  font-weight: 700;
  color: #d2973a;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tournoi-participants {
  font-size: 0.72rem;
  color: var(--texte-faible);
  width: 60px;
  text-align: right;
}

/* « (vous) » accole a son propre pseudo dans les classements */
.marque-moi {
  color: var(--color-light);
  font-size: 0.75rem;
}

@media (max-width: 480px) {

  .tournoi-date {
    width: 95px;
    font-size: 0.7rem;
  }

  .tournoi-nom {
    display: none;
  }

  .tournoi-gagnant {
    font-size: 0.78rem;
  }

  .tournoi-participants {
    width: 42px;
    font-size: 0.68rem;
  }
}

/* Separateur entre le haut du classement et sa propre ligne */
.separateur-points {
  text-align: center;
  padding: 8px 0;
  color: var(--texte-faible);
  font-size: 0.8rem;
  letter-spacing: 1px;
}
