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

body {
    font-family: Poppins, sans-serif;
    background: #071d49;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow-x: hidden
}

.bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffd400, #e31b23, #0057ff);
    background-size: 300% 300%;
    animation: g 12s ease infinite
}

@keyframes g {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0 50%
    }
}

.card {
    position: relative;
    z-index: 1;
    width: min(92%, 520px);
    margin: 30px auto;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    text-align: center
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    object-fit: cover
}

h1 {
    margin: 18px 0 6px
}

.links {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.links a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(90deg, #ffd400, #e31b23, #0057ff);
    background-size: 220%;
    transition: .35s;
    font-weight: 600
}

.links a:hover {
    transform: translateY(-3px) scale(1.02);
    background-position: right center;
    box-shadow: 0 0 25px rgba(255, 212, 0, .6)
}

.links i {
    font-size: 24px;
    width: 28px;
    text-align: center
}

footer {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-size: .95rem;
    line-height: 1.8
}

@media(max-width:600px) {
    .avatar {
        width: 120px;
        height: 120px
    }
    .links a {
        font-size: .95rem;
        padding: 14px
    }
}