/* profile.css – контент модального профиля */

.lumina-modal--profile .lumina-modal-body {
    text-align: center;
    padding-top: 8px;
}

.lumina-modal--profile .profile-tab-panel {
    text-align: left;
}

.profile-modal-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--lumina-gradient-avatar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 34px;
    margin: 0 auto 12px;
    color: #fff;
}

.profile-modal-fullname {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--lumina-text);
}

.profile-modal-header-divider {
    height: 1px;
    background: #1e2129;
    margin: 0 0 16px;
}

.profile-modal-section {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #14161c;
}

.profile-modal-section:last-of-type {
    border-bottom: none;
}

.profile-modal-label {
    font-size: 11px;
    color: #5a5f6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.profile-modal-value-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-modal-value {
    font-size: 15px;
    color: #e0e0e0;
}

.profile-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: background 0.15s;
    color: #8b8f9a;
}

.profile-copy-btn:hover {
    background: #1c1f26;
    color: #fff;
}

.profile-modal-divider {
    height: 1px;
    background: #1e2129;
    margin: 16px 0;
}

.profile-modal-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 8px;
}

.profile-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.profile-stat-label {
    font-size: 12px;
    color: #8b8f9a;
    margin-top: 2px;
}

.profile-modal-top {
    display: none;
}
