body {
    font-family: sans-serif;
    background-color: #1e1e1e;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #282828;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.profile {
    margin-bottom: 30px;
    position: relative;
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #00ff00;
}

.profile h1 {
    margin-top: 0;
    font-size: 1.8em;
}

.bio-box-bg {
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    background-color: #333; /* Default background color */
}

.bio-content {
    position: relative;
    z-index: 1; /* Ensure text is on top */
}

.bio-content p {
    color: #000000;
    margin: 0;
}

/* Neon Background Animation */
.bio-box-bg::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent; /* Initially transparent border */
    border-radius: 7px;
    opacity: 0.7;
    background: linear-gradient(
        45deg,
        #00ff00, #00ffff, #ff00ff, #00ff00, #00ffff, #ff00ff
    );
    background-size: 400% 400%;
    animation: neon-border 5s linear infinite;
}

@keyframes neon-border {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.neon-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid;
}

.neon-button span.text {
    position: relative;
    z-index: 1;
}

.neon-button span.shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px 5px;
}

.neon-button.facebook {
    border-color: #3b5998;
    color: #3b5998;
}

.neon-button.facebook span.shadow {
    box-shadow: 0 0 10px 5px #3b5998;
}

.neon-button.facebook:hover {
    color: #fff;
}

.neon-button.facebook:hover span.shadow {
    opacity: 1;
}

.neon-button.messenger {
    border-color: #0084ff;
    color: #0084ff;
}

.neon-button.messenger span.shadow {
    box-shadow: 0 0 10px 5px #0084ff;
}

.neon-button.messenger:hover {
    color: #fff;
}

.neon-button.messenger:hover span.shadow {
    opacity: 1;
}

.neon-button.telegram {
    border-color: #0088cc;
    color: #0088cc;
}

.neon-button.telegram span.shadow {
    box-shadow: 0 0 10px 5px #0088cc;
}

.neon-button.telegram:hover {
    color: #fff;
}

.neon-button.telegram:hover span.shadow {
    opacity: 1;
}

.footer {
    color: #888;
    font-size: 0.9em;
}