body {
    background-color: #050505;
    color: #00ff41; /* Verde Matriz */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.4;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                      linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
}

#terminal {
    max-width: 900px;
    margin: 0 auto;
}

#output {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-bottom: 10px;
}

#input-line {
    display: flex;
    align-items: center;
}

#prompt {
    color: #00ff41;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff41;
    white-space: nowrap;
    margin-right: 8px;
}

input {
    background: transparent;
    border: none;
    color: #00ff41;
    font-family: inherit;
    font-size: 1em;
    outline: none;
    flex: 1;
    text-shadow: 0 0 5px #00ff41;
    caret-color: #00ff41;
}

.ascii-logo {
    color: #ff0055; /* Rosa neón para el logo */
    font-size: 0.6em;
    text-shadow: 0 0 10px #ff0055;
    margin-bottom: 20px;
}

.highlight { color: #fff; }
hr { border: 0; border-top: 1px solid #333; margin: 10px 0; }