.contenedor-estadisticas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
}

.seccion-estadistica {
    flex: 1;
    min-width: 300px;
    background-color: var(--fondo-cristal);
    border-radius: 10px;
    box-shadow: var(--sombra);
    padding: 20px;
}

.seccion-estadistica h2 {
    color: var(--color-primario);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.tabla-estadisticas {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-texto);
}

.tabla-estadisticas th,
.tabla-estadisticas td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.tabla-estadisticas th {
    background-color: #f8f8f8;
    color: #555;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tabla-estadisticas tr:last-child td {
    border-bottom: none;
}

.posicion {
    font-weight: bold;
    color: #999;
    width: 50px;
}

.tabla-estadisticas tr:nth-child(1) .posicion {
    color: gold;
    /* Oro para el primero */
    font-size: 1.2rem;
}

.tabla-estadisticas tr:nth-child(2) .posicion {
    color: silver;
    /* Plata para el segundo */
    font-size: 1.1rem;
}

.tabla-estadisticas tr:nth-child(3) .posicion {
    color: #cd7f32;
    /* Bronce para el tercero */
    font-size: 1.1rem;
}

.jugador {
    text-align: left;
    font-weight: 500;
}

.dato-destacado {
    font-weight: bold;
    color: var(--color-primario);
    font-size: 1.1rem;
}

/* Responsividad */
@media (max-width: 768px) {
    .contenedor-estadisticas {
        flex-direction: column;
        align-items: center;
    }

    .seccion-estadistica {
        width: 100%;
        max-width: 500px;
    }
}