* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    min-height: 100vh;

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

    overflow: hidden;

    background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
}

.bg {
    position: absolute;

    width: 500px;
    height: 500px;

    background: #3b82f6;

    filter: blur(120px);

    border-radius: 50%;

    animation: float 8s ease-in-out infinite;
}

.card {
    position: relative;

    width: 350px;

    padding: 40px;

    border-radius: 25px;

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

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    text-align: center;

    color: white;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: column;
}

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

    display: block;

    margin: 0 auto 20px auto;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 2rem;

    margin-bottom: 10px;
}

.bio {
    opacity: 0.8;

    margin-bottom: 25px;

    line-height: 1.5;
}

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

    gap: 15px;
}

.buttons a {
    text-decoration: none;

    color: white;

    padding: 12px;

    border-radius: 12px;

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

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition: 0.3s;

    position: relative;

    overflow: hidden;
}

.buttons a:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.15);
}

.buttons a::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );

    transition: 0.5s;
}

.buttons a:hover::before {
    left: 100%;
}

.back {
    display: inline-block;

    margin-top: 25px;

    padding: 12px 20px;

    border-radius: 12px;

    text-decoration: none;

    color: white;

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

    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition: 0.3s;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    position: relative;

    overflow: hidden;
}

.back:hover {
    transform: translateY(-3px);

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

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

.back::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );

    transition: 0.5s;
}

.back:hover::before {
    left: 100%;
}

footer {
    margin-top: auto;

    padding-top: 20px;

    opacity: 0.5;

    font-size: 0.85rem;

    letter-spacing: 1px;
}

footer p {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.3)
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (hover: none) {
    .buttons a:hover,
    .back:hover {
        transform: none;

        background: rgba(255, 255, 255, 0.08);
    }
}
