.high-score:hover {
    transform: scale(1.2);
}

#highScoresList {
    list-style: none; /* Enlève les puces de liste par défaut */
    padding-left: 0;
    margin-bottom: 4rem;
    width: 100%;
}

.high-score {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color); /* Utilise la couleur sombre secondaire */
    border-radius: 0.5rem;
    display: flex; /* Pour aligner les éléments */
    justify-content: space-between; /* Pour espacer le nom/score */
    align-items: baseline;
    border-left: 0.5rem solid var(--accent-color); /* Une barre d'accentuation violette */
}

.rank-number {
    font-weight: 700;
    color: var(--accent-color); /* Met le classement en évidence */
    margin-right: 1.5rem;
    min-width: 3rem; /* Assure un alignement propre */
}

.player-score {
    font-weight: 700;
    color: var(--text-color);
}