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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;

    font-family: Arial, Helvetica, sans-serif;

    background: #fdf1f5;
    color: #30262b;
}

.profile-card {
    width: 100%;
    max-width: 430px;

    background: #ffffff;

    padding: 42px 36px;
    border-radius: 24px;

    text-align: center;

    border: 1px solid #f4d6e0;
    box-shadow: 0 15px 40px rgba(180, 90, 120, 0.12);
}

.avatar {
    width: 86px;
    height: 86px;

    margin: 0 auto 22px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #e9a6bd;
    color: #ffffff;

    font-size: 27px;
    font-weight: bold;
}

h1 {
    font-size: 30px;
    margin-bottom: 8px;

    color: #35272d;
}

.role {
    color: #c35b82;
    font-size: 15px;
    font-weight: 600;

    margin-bottom: 18px;
}

.bio {
    color: #756970;
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 25px;
}

.skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;

    margin-bottom: 28px;
}

.skills span {
    padding: 8px 13px;

    border-radius: 20px;

    background: #fce7ee;
    color: #b94f76;

    font-size: 13px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.links a {
    text-decoration: none;

    padding: 10px 16px;

    border-radius: 10px;

    background: #d96b91;
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s ease;
}

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

@media (max-width: 500px) {
    .profile-card {
        padding: 34px 24px;
    }

    h1 {
        font-size: 26px;
    }

    .links {
        flex-direction: column;
    }

    .links a {
        width: 100%;
    }
}
