/* V17 — perfil do jogador e avatares. */
.player-avatar.has-photo,
.profile-photo-preview,
.friend-person > span.has-photo{
    overflow:hidden;
    padding:0!important;
}
.player-avatar.has-photo img,
.profile-photo-preview img,
.friend-person > span.has-photo img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:inherit;
}

.profile-heading{margin-bottom:14px}
.profile-panel{padding:20px}
.profile-form{
    display:grid;
    grid-template-columns:210px minmax(0,1fr);
    gap:24px;
    align-items:start;
}
.profile-photo-column{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    padding:18px;
    border:1px solid rgba(92,184,129,.22);
    border-radius:20px;
    background:rgba(5,35,23,.72);
    text-align:center;
}
.profile-photo-preview{
    width:132px;
    height:132px;
    display:grid;
    place-items:center;
    border:4px solid rgba(112,235,163,.5);
    border-radius:50%;
    background:linear-gradient(145deg,#184c35,#082719);
    color:#fff;
    box-shadow:0 12px 28px rgba(0,0,0,.28),0 0 22px rgba(76,230,143,.16);
}
.profile-photo-preview span{
    font-size:52px;
    font-weight:1000;
}
.profile-photo-button{
    width:100%;
    min-height:42px;
    display:grid;
    place-items:center;
    cursor:pointer;
}
.profile-file-input{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
}
.profile-photo-column > small{
    color:#a8c7b6;
    font-size:11px;
    line-height:1.4;
}
.profile-remove-photo{
    display:flex;
    align-items:center;
    gap:7px;
    color:#ffd8d8;
    font-size:12px;
    cursor:pointer;
}
.profile-fields{min-width:0}
.profile-field-row{gap:14px}
.profile-password-box{
    margin-top:8px;
    padding:15px;
    border:1px solid rgba(255,211,79,.18);
    border-radius:16px;
    background:rgba(255,208,65,.045);
}
.profile-password-copy{margin-bottom:10px}
.profile-password-copy b{display:block;font-size:14px}
.profile-password-copy small{display:block;margin-top:3px;color:#a9c5b5;font-size:11px}
.profile-save-button{margin-top:15px}

@media(max-width:720px){
    .profile-panel{padding:14px}
    .profile-form{grid-template-columns:1fr;gap:16px}
    .profile-photo-column{padding:14px}
    .profile-photo-preview{width:116px;height:116px}
    .profile-photo-preview span{font-size:45px}
}

@media(max-width:480px){
    .profile-field-row{grid-template-columns:1fr!important;gap:0}
    .profile-password-box{padding:12px}
}
