body {
    font-family: 'Courier New', monospace;
    background-color: #0a0a0a;
    color: #eee;
    overflow: auto;
    margin: 0;
    padding: 0;
}



#console {
    overflow: auto; /* Allow scrolling within the console if content overflows */
    width: 100%;
    height: 100vh; /* Full viewport height */
    background: linear-gradient(90deg, #202020, #404040); /* Background gradient */
    line-height: 1.5;
    padding: 20px;
    box-sizing: border-box;
    cursor: text;
    border: 2px solid #00ff00;
    border-radius: 5px;
    position: relative; /* Relative positioning for the absolute pseudo-element */
    color: #ffffff;
    z-index: 1; /* Ensure console content is above the background */
}

#console::before {
    background-image: var(--background-image);
    content: '';
    position: fixed; /* Change to fixed to keep the background in place */
    top: 0;
    left: 0;
    width: 100vw; /* Use viewport width */
    height: 100vh; /* Use viewport height */
    background-size: cover; /* Cover the entire area */
    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center; /* Center the image */
    background-blend-mode: multiply; /* Blend mode if needed */
    opacity: 0; /* Start fully transparent */
    filter: blur(10px); /* Start with blur */
    transition: filter 1.5s ease, opacity 1.5s ease; /* Smooth transition for effects */
    z-index: -1; /* Keep it behind the content */
}

/* Class to trigger the animation */
#console.animate-background::before {
    opacity: 0.1; /* Fade in */
    filter: blur(0px); /* Remove blur */
}

#console::-webkit-scrollbar {
    width: 12px; /* Set the width of the scrollbar */
}

#console::-webkit-scrollbar-thumb {
    background-color: #00ff00; /* Set the color of the scrollbar slider */
    border-radius: 6px; /* Set the radius of the scrollbar slider */
}

#console::-webkit-scrollbar-track {
    background-color: #404040; /* Set the color of the scrollbar track */
}






#output {
    color: #00ffff;
    overflow: hidden;
    white-space: normal;
    border-right: 2px solid #00ff00;
    padding-right: 5px;
    display: inline-block;
    max-width: 60%;
    padding-left: 10px;
    line-height: 1.6;
}



#output::before {
    content: "➜";
    margin-right: 5px;
    animation: slideIn 0.5s ease-out;
    display: inline-block;
}

#ascii-image {
    color: #55aaff;
    font-size: 14px;
    white-space: pre-wrap;
    margin-top: 10px;
}

#input-container {
    display: flex;
    margin-top: 10px;
}

#input-prefix {
    color: #00ff00;
    margin-right: 10px;
}

#input {
    flex: 1;
    background-color: #000;
    border: none;
    color: #fff;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    caret-color: #00ff00; /* Blinking cursor color */
}

.user {
    color: #00ff00;
}

.path {
    color: #00ffff;
}

/* Animation keyframes for sliding in the command prompt symbol */
@keyframes slideIn {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Background animation keyframes */
@keyframes backgroundAnimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

/* Status bar styling */
#status-bar {
    position: fixed;
    top: 10px;
    right: 20px;
    text-align: right;

}

#status {
    color: #00ff00;
    margin-bottom: 5px;
}

#system-info {
    color: #00ffff;
}

/* Highlight color for status and system info */
.status-highlight,
.info-highlight {
    color: #55aaff;
}

.about-content {
    font-size: 16px;
    line-height: 1.6;
}

.about-content h2 {
    color: #55aaff;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.about-content .discord-highlight {
    color: #7289da; /* Discord color */
    font-weight: bold;
}

.help-content {
    font-size: 16px;
    line-height: 1.6;
}

.command {
    margin-top: 5px;
    margin-bottom: 5px;
    color: #ff00ff;
}

.projects-content {
    font-size: 16px;
    line-height: 1.6;
}

.project {
    margin-top: 5px;
    margin-bottom: 5px;
    color: #00ffff;
}

.help-content-anime {
    padding: 8px;
    font-size: 14px;
}

.help-content-anime h2 {
    color: #00ffff;
    font-size: 20px;
    margin-bottom: 6px;
}

.help-content-anime ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#clickMe50Times {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 150px;
    height: auto;
    z-index: 99;
    cursor: text;
    opacity: 0;
}

#messageBox {
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: linear-gradient(45deg, rgba(1, 29, 0, 0.8), rgba(17, 66, 17, 0.8));
    color: rgba(5, 150, 0, 0.8);
    padding: 15px;
    border-radius: 8px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 100;
    font-size: 16px;
    pointer-events: none;
}