body {
    margin: 0;
    font-family: "Courier New", monospace;
    background-color: #000;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    cursor: url('https://media.discordapp.net/attachments/1319691788113412197/1325872614270435388/artworks-9rtJOdCrynDMerS7-JTMsAA-t500x500-removebg-preview.png?ex=677d5e98&is=677c0d18&hm=fe20bd10f2cdca9d44096007a0e90b2df920c9bd7452ebe6a8a9b940d1aa8bbe&=&format=webp&quality=lossless&width=400&height=400'), auto;
    overflow: hidden;
    position: relative;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#container {
    width: 70%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    border: 2px solid #ffffff;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #000;
    color: #ffffff;
    font-size: 1.5em;
    border-bottom: 2px solid #000000;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #ffffff;
}

.menu a {
    color: #ffffff;
    margin-right: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
}

.menu a:hover {
    color: #ff4500;
    text-shadow: 0 0 15px #ff4500, 0 0 30px #ff4500;
    transform: scale(1.1);
}

#content {
    display: flex;
    margin-top: 20px;
}

.sidebar {
    width: 30%;
    padding: 20px;
    border-right: 2px solid #ffffff;
    text-align: center;
    animation: blink 1s infinite;
}

.ascii-art {
    font-size: 0.9em;
    color: #8f8f8f;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}

.main-content {
    width: 70%;
    padding: 20px;
    background-color: #222;
    border-radius: 5px;
    box-shadow: 0 0 15px #ffffff;
    max-height: 80vh;
    overflow-y: auto;
}

.profile-section, .about-section, .system-announcement {
    background-color: #111;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #000000;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.profile-section:hover, .about-section:hover, .system-announcement:hover {
    background-color: #1a1a1a;
    box-shadow: 0 0 20px rgb(0, 0, 0);
}

#footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #8f8f8f;
    text-shadow: 0 0 5px #ffffff;
}

#footer:hover {
    color: #f1f1f1;
    text-shadow: 0 0 10px #f1f1f1;
}

.profile-pic {
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic img {
    max-width: 60%;
    height: auto;
    border-radius: 50%;
    border: 2px solid #444;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgb(255, 255, 255);
}

.typing-effect {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    font-size: 1.2em;
    color: #ff0000;
    border-right: 3px solid #ff0000;
    animation: typewriter 5s steps(50) 1s forwards;
    max-width: 100%;
    word-wrap: break-word;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
