body {
    background-color: #0a0a0a;
    color: #00ff41;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    background-image: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                      linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 3px, 3px 100%;
}

#terminal-web {
    max-width: 850px;
    margin: auto;
}

#output {
    white-space: pre-wrap;
    margin-bottom: 20px;
}

#input-container {
    display: flex;
    color: #00ff41;
}

#prompt {
    font-weight: bold;
    margin-right: 10px;
    white-space: nowrap;
}

input {
    background: transparent;
    border: none;
    color: #ffb000; /* Ámbar para los comandos escritos */
    font-family: inherit;
    font-size: 1em;
    outline: none;
    flex: 1;
    text-shadow: 0 0 5px #ffb000;
}

.ascii-header {
    color: #00ff41;
    font-size: 10px;
    line-height: 1;
    margin-bottom: 20px;
}

.wiki-title { color: #fff; font-weight: bold; text-decoration: underline; }
.wiki-meta { color: #888; font-size: 0.8em; }