* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    background: url("/gif/bg.gif") center/cover no-repeat fixed;
    color: #fff;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* PROFILE */
.profile-container {
    text-align: center;
    margin-top: 80px;
    position: relative
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    animation: pulse-glow 4s infinite ease-in-out;
    position: relative;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.profile-pic::before {
    content: "";
    border-radius: 50%;
    background: conic-gradient(from 0deg, #fff 0%, #999 10%, #000 25%, #fff 40%, #111 60%, #999 75%, #fff 90%, #000 100%);
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.profile-pic.loaded::before {
    opacity: 1;
    animation: lightning 0.2s linear infinite
}

@keyframes lightning {
    0% {
        filter: brightness(1.5) hue-rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        filter: brightness(2) hue-rotate(180deg)
    }

    100% {
        filter: brightness(1.5) hue-rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2)
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.4)
    }
}

/* TEXT */
.profile-name {
    font-size: 26px;
    font-weight: 600;
    margin-top: 18px;
    letter-spacing: 2px
}

.profile-bio {
    font-size: 14px;
    color: #ccc;
    max-width: 500px;
    margin: 8px auto 20px;
    line-height: 1.6
}

/* SOCIAL */
.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 50px
}

.social-links a {
    color: #fff;
    font-size: 20px;
    transition: 0.3s
}

.social-links a:hover {
    color: #999;
    transform: scale(1.1)
}

/* BUTTONS */
.link-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 90%;
    max-width: 500px;
    margin-bottom: 80px
}

.link-button {
    background: linear-gradient(90deg, #000, #111);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.link-button i {
    margin-right: 10px
}

.link-button::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.4s;
}

.link-button:hover::before {
    left: 100%
}

.link-button:hover {
    transform: translateY(-3px);
    border-color: #fff;
    background: linear-gradient(90deg, #111, #000)
}

.footer {
    margin-bottom: 30px;
    font-size: 13px;
    color: #777;
    text-align: center;
    letter-spacing: 1px
}

@media(max-width: 520px) {
    .profile-bio {
        max-width: 90%;
    }
}