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

#canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

body {
    height:100vh;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#090909;
    font-family:Inter,Arial,sans-serif;
    color:white;
}

.card {
    width:360px;
    padding:45px;
    border-radius:24px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.avatar {
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    margin:auto;
    display:block;
    border:4px solid rgba(255,255,255,.15);
    transition:.35s;
}

.avatar:hover {
    transform:scale(1.05);
}

.nickname {
    margin-top:22px;
    font-size:2rem;
    font-weight:700;
    letter-spacing:1px;
}

.socials {
    margin-top:32px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.social {
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.07);
    color: white;
    border:1px solid rgba(255,255,255,.08);
    transition:.25s;
}

.social:hover {
    transform:translateY(-6px);
    background:rgba(255,255,255,.13);
    box-shadow:0 8px 25px rgba(255,255,255,.08);
}

.social img {
    width:28px;
    height:28px;
    filter:invert(1);
}