:root {
    --global-color-0:##ffc042;
    --global-color-1:#ff4e00e8;
    --global-color-2:#2B161B;
    --global-color-3:#554B4E;
    --global-color-4:##8ec7e4;
    --global-color-5:#FFFFFF;
    --global-color-6:#000000;
    --global-color-7:#4B4F58;
    --global-color-8:#F6F7F8;
}

.jugadores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.jugador-card {
    background-color: var(--global-color-6);
    color: var(--global-color-5);
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.jugador-thumbnail-wrapper {
    position: relative;
}

.jugador-thumbnail {
    width: 100%;
    height: 100%;
}

.jugador-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.numero-camiseta {
   
    top: 10px;
    left: 10px;
    background-color: orange;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.jugador-card h4 {
    font-size: 1.2em;
    margin: 15px 0;
    color: var(--global-color-5);
}

.jugador-card a {
    text-decoration: none;
    color: var(--global-color-5);
}

.jugador-goles {
    font-size: 1em;
    color: #777;
}

@media (max-width: 768px) {
    .jugadores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .jugadores-grid {
        grid-template-columns: 1fr;
    }
}
