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

body {
    min-height: 100vh;

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

    background:
        radial-gradient(
            circle at 15% 10%,
            #feda75 0%,
            #fa7e1e 25%,
            #d62976 50%,
            #962fbf 75%,
            #4f5bd5 100%
        );

    background-attachment: fixed;

    color: #222;
}

.container {
    width: 100%;
    max-width: 680px;

    min-height: 100vh;

    margin: 0 auto;

    padding: 50px 20px 30px;

    display: flex;
    flex-direction: column;
}

/* Perfil */

.profile {
    text-align: center;
    color: white;

    margin-bottom: 30px;
}

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

    margin: 0 auto 16px;

    border-radius: 50%;

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

    background: white;

    color: #d62976;

    font-size: 28px;
    font-weight: bold;

    border: 4px solid rgba(255, 255, 255, 0.5);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2);
}

.profile h1 {
    font-size: 25px;
    line-height: 1.2;

    margin-bottom: 5px;
}

.username {
    font-size: 14px;

    opacity: 0.85;

    margin-bottom: 10px;
}

.bio {
    font-size: 15px;
    line-height: 1.5;

    opacity: 0.95;
}

/* Links */

.links {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.link {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 62px;

    padding: 12px 18px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.96);

    color: #222;

    text-decoration: none;

    font-weight: 600;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.link:hover {
    transform: translateY(-2px);

    background: white;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18);
}

.link:active {
    transform: translateY(0);
}

.link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.link-icon {
    width: 38px;
    min-width: 38px;

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

    font-size: 21px;
}

.link-title {
    flex: 1;

    text-align: center;

    padding-right: 38px;
}

/* Footer */

footer {
    margin-top: auto;

    padding-top: 35px;

    text-align: center;

    color: white;

    font-size: 12px;

    opacity: 0.8;
}

/* Mobile */

@media (max-width: 480px) {

    .container {
        padding: 35px 16px 25px;
    }

    .profile {
        margin-bottom: 25px;
    }

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

        font-size: 26px;
    }

    .profile h1 {
        font-size: 23px;
    }

    .bio {
        font-size: 14px;
    }

    .link {
        min-height: 58px;

        padding: 10px 14px;

        border-radius: 14px;
    }
}