* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    width: 100%;
    max-width: 380px;
    padding: 2rem;
    text-align: center;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bio {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.links a {
    display: block;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.9rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* From Uiverse.io by bhaveshxrawat */
.card {
    width: 190px;
    height: 254px;
    background: #07182E;
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
}

.card h2 {
    z-index: 1;
    color: white;
    font-size: 2em;
}

.card::before {
    content: '';
    position: absolute;
    width: 100px;
    background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
    height: 130%;
    animation: rotBGimg 3s linear infinite;
    transition: all 0.2s linear;
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card::after {
    content: '';
    position: absolute;
    background: #07182E;
    inset: 5px;
    border-radius: 15px;
}

/* .card:hover:before {
  background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
  animation: rotBGimg 3.5s linear infinite;
} */