*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
}

body{
    background:#f5f7fb;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.profile-card{
    width:380px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.profile-card:hover{
    transform:translateY(-6px);
}

.cover{
    height:140px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

.avatar{
    display:flex;
    justify-content:center;
    margin-top:-55px;
}

.avatar img{
    width:110px;
    height:110px;
    border-radius:50%;
    border:5px solid #fff;
    object-fit:cover;
}

.content{
    padding:25px;
    text-align:center;
}

.content h2{
    color:#222;
    margin-bottom:6px;
}

.role{
    color:#6366f1;
    font-size:.95rem;
    font-weight:600;
}

.bio{
    margin:20px 0;
    color:#666;
    line-height:1.6;
    font-size:.95rem;
}

.stats{
    display:flex;
    justify-content:space-between;
    margin:30px 0;
}

.stats div{
    flex:1;
}

.stats h3{
    color:#222;
    margin-bottom:6px;
}

.stats span{
    color:#777;
    font-size:.85rem;
}

.actions{
    display:flex;
    gap:12px;
}

.btn{
    flex:1;
    padding:13px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.primary{
    background:#4f46e5;
    color:white;
}

.primary:hover{
    background:#4338ca;
}

.secondary{
    background:#eef2ff;
    color:#4f46e5;
}

.secondary:hover{
    background:#dbe4ff;
}