body {
    font-family: sans-serif;
    background: #f6f7fb;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 420px;
    width: 90%;
}
img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}
h1 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}
p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}
.links a {
    display: block;
    background: #333;
    color: #fff;
    padding: 12px 0;
    margin: 8px 0;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}
.links a:hover {
    background: #555;
}
