* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #2b2b45);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    font-size: 22px;
    margin-bottom: 8px;
}

.bio {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.links a {
    display: block;
    text-decoration: none;
    background: #1e1e2f;
    color: white;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.links a:hover {
    background: #44446a;
    transform: translateY(-2px);
}
