.profile-section {
    text-align: center;
    margin-bottom: 25px;
    padding-top: 25px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
    overflow: hidden;
    position: relative;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.profile-pic #profilePicContent {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.profile-pic img {
    width: 102%;
    height: 102%;
    object-fit: cover;
    position: absolute;
    top: -1%;
    left: -1%;
    border-radius: 50%;
    z-index: 2;
}

.profile-name {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    cursor: pointer;
    transition: color 0.2s;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
}

.profile-name:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.profile-subtitle {
    color: #8b8b9e;
    font-size: 14px;
}