body {
    margin: 0;
    background: #ffffff;
    color: #ff6600;
    font-family: monospace;
}

#terminal {
    padding: 15px;
}

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

input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ff6600;
    font-size: 16px;
}

.prompt::before {
    content: "neo@search:~$ ";
}
input {
    caret-color: #ff6600;
}

/* cursor estilo bloque */
input:focus {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { caret-color: transparent; }
    50% { caret-color: #ff6600; }
    100% { caret-color: transparent; }
}

.logo {
    font-weight: bold;
    margin-bottom: 10px;
}