/* PROFILE HEADER */
.profile-header {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 0 40px;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 32px;
}

.profile-pfp-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
}

.profile-pfp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: none;
}

.profile-pfp.loaded {
    display: block;
}

.profile-pfp-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8315a, #c0203f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.profile-pfp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.profile-pfp-wrapper:hover .profile-pfp-overlay {
    opacity: 1;
}

.profile-pfp-overlay span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-username {
    font-size: 28px;
    font-weight: 800;
}

.profile-email {
    font-size: 14px;
    color: #888;
}

.profile-stats {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    color: #888;
}

/* TABS */
.profile-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #2a2a2a;
}

.profile-tab {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s;
}

.profile-tab:hover {
    color: #fff;
}

.profile-tab.active {
    color: #e8315a;
    border-bottom-color: #e8315a;
}

/* EMPTY STATE */
.profile-empty {
    color: #666;
    font-size: 14px;
    padding: 40px 0;
}