body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    height: 100vh;
    cursor: none;
}

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

.warning-content {
    background-color: #111;
    padding: 30px;
    border: 2px solid #f00;
    max-width: 600px;
    text-align: center;
}

.warning-content h1 {
    color: #f00;
    font-size: 2.5em;
}

.warning-content p {
    font-size: 1.2em;
    margin: 20px 0;
}

button {
    background-color: #300;
    color: #f00;
    border: 1px solid #f00;
    padding: 10px 20px;
    margin: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background-color: #f00;
    color: #000;
}

.hidden {
    display: none !important;
}

#terminal {
    width: 100%;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

#screen {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

pre {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.5;
}

#input-line {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

#prompt {
    margin-right: 10px;
}

#command {
    background: transparent;
    border: none;
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    width: 80%;
    outline: none;
}

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

#jumpscare img {
    max-width: 100%;
    max-height: 100%;
}

.blink {
    animation: blink 0.5s infinite;
}

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

.glitch {
    animation: glitch 1s linear infinite;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 #00fffc, -0.05em -0.025em 0 #fc00ff; }
    14% { text-shadow: 0.05em 0 0 #00fffc, -0.05em -0.025em 0 #fc00ff; }
    15% { text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.025em 0 #fc00ff; }
    49% { text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.025em 0 #fc00ff; }
    50% { text-shadow: 0.025em 0.05em 0 #00fffc, 0.05em 0 0 #fc00ff; }
    99% { text-shadow: 0.025em 0.05em 0 #00fffc, 0.05em 0 0 #fc00ff; }
    100% { text-shadow: -0.025em 0 0 #00fffc, -0.025em -0.025em 0 #fc00ff; }
}