/* --- "CURADO" POR ARIS (v1.0 - "OSCILOSCOPIO TRIDENTE") --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFFFFF; 
    color: #000000; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    text-align: center;
    background-color: #F0F0F0; 
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    width: 90%;
    max-width: 450px; /* ¡Un poco más ancho! */
}
@keyframes latido {
    50% { filter: drop-shadow(0 0 10px rgba(92, 184, 92, 0.7)); }
}
.pulsando { animation: latido 3s infinite ease-in-out; }
img { width: 45%; height: auto; margin-bottom: 10px; transition: all 0.5s ease; }
.led-contenedor { display: inline-flex; align-items: center; gap: 8px; }
.led { height: 12px; width: 12px; background-color: #bbb; border-radius: 50%; }
.led-encendido { background-color: #5cb85c; box-shadow: 0 0 8px #5cb85c; animation: parpadeo 2s infinite; }
@keyframes parpadeo { 50% { opacity: 0.4; } }
h1 { font-size: 1.5em; color: #000000; margin-bottom: 10px; }
p { font-size: 1.1em; margin-bottom: 20px; color: #000000; }
#estado { font-weight: bold; color: #d9534f; }

/* --- "JAQUE MATE" (¡El "Osciloscopio"!) --- */
.bitacoras-container {
    display: flex;
    justify-content: space-between;
    gap: 10px; 
    margin-top: 15px;
}
.consola {
    background-color: #252526; 
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    height: 150px; 
    overflow-y: auto; 
    text-align: left;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85em;
    color: #CE9178; 
    width: 50%; /* ¡Mitad y mitad! */
}
.consola h3 { margin-top: 0; margin-bottom: 5px; color: #4EC9B0; }
#consola-crypto h3 { color: #C586C0; }
pre { margin: 0; white-space: pre-wrap; word-wrap: break-word; }

/* ¡El "Taller" del "Motor Chronos"! */
#consola-chronos {
    width: 100%; /* ¡Ancho completo! */
    height: 100px; /* Altura para el "latido" */
    background: #000000;
    margin-top: 10px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden; /* ¡"Esconde" el canvas "feo"! */
}
#osciloscopio {
    width: 100%;
    height: 100%;
}
/* --- FIN DEL "JAQUE MATE" --- */

button {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin-top: 10px;
}
button:active { transform: scale(0.98); }
.boton-verde { background-color: #5cb85c; color: white; }
.boton-verde:disabled { background-color: #4a6d4a; cursor: not-allowed; }
.boton-azul { background-color: #007bff; color: white; }