/* =============================================================================
   PLAYER - Single Player Page
   Fiche joueur : identité, présentation, statistiques
   ============================================================================= */

/* =============================================================================
   WRAPPER PRINCIPAL
   ============================================================================= */

.mhb-player__body {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* =============================================================================
   BLOC IDENTITÉ - Info Grid
   ============================================================================= */

.mhb-player__identity {
    margin-bottom: 40px;
}

.mhb-player__info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    margin-top: 25px;
}

.mhb-player__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.mhb-player__info-icon {
    flex-shrink: 0;
    color: var(--mhb-accent);
    opacity: 0.8;
}

.mhb-player__info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mhb-text-gray);
    display: block;
    margin-bottom: 2px;
}

.mhb-player__info-value {
    font-family: var(--mhb-font-display);
    font-size: 20px;
    color: var(--mhb-text-white);
}

/* Label + Value en colonne */
.mhb-player__info-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-template-rows: auto auto;
    gap: 0 12px;
}

.mhb-player__info-icon {
    grid-row: 1 / 3;
    align-self: center;
}

.mhb-player__info-label {
    grid-column: 2;
}

.mhb-player__info-value {
    grid-column: 2;
}

/* =============================================================================
   PRÉSENTATION
   ============================================================================= */

.mhb-player__presentation {
    margin-bottom: 40px;
    color: var(--mhb-text-light, #c8c8c8);
    font-size: 16px;
    line-height: 1.8;
}

.mhb-player__presentation p {
    margin-bottom: 16px;
}

.mhb-player__presentation p:last-child {
    margin-bottom: 0;
}

/* =============================================================================
   BLOC BIOGRAPHIE
   ============================================================================= */

.mhb-player__biographie {
    margin-bottom: 40px;
}

.mhb-player__biographie-content {
    color: var(--mhb-text-light, #c8c8c8);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}

.mhb-player__biographie-content p {
    margin-bottom: 16px;
}

.mhb-player__biographie-content p:last-child {
    margin-bottom: 0;
}

/* =============================================================================
   BLOC STATISTIQUES
   ============================================================================= */

.mhb-player__stats {
    margin-bottom: 40px;
}

/* Overview - Grille de highlights */
.mhb-player__stats-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.mhb-player__stat-highlight {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--mhb-radius-sm, 8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mhb-player__stat-number {
    display: block;
    font-family: var(--mhb-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--mhb-accent);
    line-height: 1.1;
    margin-bottom: 6px;
}

.mhb-player__stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mhb-text-gray);
}

/* Stats détaillées - Lignes */
.mhb-player__stats-table {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mhb-player__stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mhb-player__stat-row:last-child {
    border-bottom: none;
}

.mhb-player__stat-name {
    font-size: 15px;
    color: var(--mhb-text-light, #c8c8c8);
}

.mhb-player__stat-value {
    font-family: var(--mhb-font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--mhb-text-white);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 1024px) {
    .mhb-player__body {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .mhb-player__info-grid {
        gap: 25px 30px;
    }

    .mhb-player__stat-number {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .mhb-player__body {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .mhb-player__info-grid {
        gap: 20px;
    }

    .mhb-player__info-item {
        min-width: 160px;
    }

    .mhb-player__stats-overview {
        gap: 15px;
    }

    .mhb-player__stat-highlight {
        min-width: 120px;
        padding: 15px 12px;
    }

    .mhb-player__stat-number {
        font-size: 26px;
    }

    .mhb-player__identity,
    .mhb-player__stats {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .mhb-player__body {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .mhb-player__info-grid {
        flex-direction: column;
        gap: 16px;
    }

    .mhb-player__info-item {
        min-width: 100%;
    }

    .mhb-player__stats-overview {
        flex-direction: column;
    }

    .mhb-player__stat-highlight {
        min-width: 100%;
    }

    .mhb-player__stat-number {
        font-size: 28px;
    }

    .mhb-player__stat-row {
        padding: 12px 0;
    }

    .mhb-player__stat-name {
        font-size: 14px;
    }

    .mhb-player__stat-value {
        font-size: 16px;
    }
}
