body {
    margin: 0;
    font-family: system-ui, sans-serif;

    background: linear-gradient(
        135deg,
        #f6d365,
        #fda085,
        #fbc2eb
    );

    min-height: 100vh;
    color: #222;
}

.profile {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.profile img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.profile h1 {
    margin: 1rem 0 .5rem;
}

.profile p {
    max-width: 400px;
    margin: auto;
}

main {
    max-width: 500px;
    margin: auto;
    padding: 1rem;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #222;
    padding: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    background: rgba(255,255,255,.35);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: 0.3s;
    gap: 12px;
}

.link-card svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.link-card:hover {
    transform: translateY(-4px);
}

.featured-photo {
    margin-top: 25px;
}

.featured-photo img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

footer {
    text-align: center;
    padding: 2rem;
}