:root {
    --bg1: #1f4fc0;
    /* dark */
    --bg2: #2d56a1;
    /* darker */
    --card: rgba(255, 255, 255, 0.06);
    --accent: linear-gradient(90deg, #7c3aed, #06b6d4);
    --glass: rgba(177, 56, 56, 0.04);
}


* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: radial-gradient(ellipse at top center, rgb(57, 166, 194) 0%, rgb(39, 99, 218) 45%), var(--bg1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

main {
    background-color: #2d56a1;
}

.container {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, rgba(51, 37, 37, 0.466), rgba(255, 255, 255, 0.01));
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.6);
    text-align: center;
    backdrop-filter: blur(6px);
}


.profile {
    margin-bottom: 18px;
}


.avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 30px rgba(12, 20, 40, 0.6);
}


.name {
    margin: 12px 0 6px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}


.bio {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}


.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}


.link-btn {
    display: block;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--card);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
    box-shadow: 0 2px 8px rgba(2, 6, 23, 0.5);
}


.link-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(12, 20, 40, 0.6);

    .avatar {
        width: 100px;
        height: 100px;
        border-radius: 16px
    }
}

footer p {
    text-align: center;

}