.container-player {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    justify-items: center;
}

.player a {
    text-decoration: none;
}

.player {
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 10px;
    background: white;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    width: 95%;
    margin: 0 auto;
}

.player:hover { 
    text-decoration: underline;
}

.player-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #ccc;
    height: 35px;
}

.player-top span {
    font-weight: bold;
    color: rgb(86, 86, 86);
    white-space: normal;   /* Permite saltos de línea */
    word-break: break-word; /* Si no hay espacios, corta la palabra */
    text-align: center;    /* Centra el nombre */
}

.player-middle {
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAAQMAAACQp+OdAAAABlBMVEX4+Pj///9njiF9AAAAFklEQVQoz2P4DwQMIDDKwMoYDQi8DADzAv8BKis8ZwAAAABJRU5ErkJggg==);
    background-position: center;
}

.player-middle img {
    width: 55% ;
}

.player-number {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 12px;
    color: rgb(115, 114, 114);
}

.player-bottom-info {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    font-size: 12px;
    color: rgb(70, 70, 70);
}