body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loading p {
    font-size: 24px;
    color: #333;
    width: 28ch;
    text-align: left;
}

.terminal-window {
    width: calc(100% - 300px);
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.terminal-header {
    background-color: #303028;
    padding: 10px;
    display: flex;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: 5px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close { background-color: #ff5f56; }
.minimize { background-color: #ffbd2e; }
.maximize { background-color: #27c93f; }

.terminal-title {
    margin-left: 20px;
    color: #ffffff;
}

.terminal-content {
    background-color: #232323;
    height: 70vh;
    overflow-y: auto;
}

.terminal-content::-webkit-scrollbar {
    width: 12px;
}

.terminal-content::-webkit-scrollbar-track {
    background: #303028;
}

.terminal-content::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 6px;
    border: 3px solid #303028;
}

.warning-banner {
    background-color: #ff0000;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
}

.nav-links {
    background-color: #303028;
    padding: 5px;
    text-align: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    border-bottom: 1px solid #00008b; /* Darker blue underline */
}

.nav-links a:hover {
    color: #ff0000;
}

.terminal {
    color: #00ff00;
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Roboto Mono', monospace;
}

.prompt { color: #00ff00; }
.output { color: #ffffff; }

.content-box {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
    color: #333;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.easter-egg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: opacity 0.5s ease;
}

.easter-egg img {
    width: 100px;
    height: auto;
}

@media (max-width: 1024px) {
    .terminal-window {
        width: calc(100% - 100px);
    }
}

@media (max-width: 768px) {
    .terminal-window {
        width: calc(100% - 30px);
    }
}