
body {
    background-color: black;
    color: white;
    font-family: 'Kanchenjunga', serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
#imagen {
    width: 100%;
    max-width: 1500px;
    height: auto;
}
#descripcion {
    margin: 20px auto;
    max-width: 90%;
    font-size: 1.2em;
    white-space: pre-wrap;
}
#comandos {
    margin-top: 20px;
}
input[type=text] {
    width: 80%;
    padding: 10px;
    font-size: 1em;
}
button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
}
.descripcion-escena {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 1em;
  box-sizing: border-box;
  white-space: pre-wrap;     /* hace que el <pre> haga saltos de línea */
  overflow-wrap: break-word; /* fuerza salto de línea en palabras largas */
  word-wrap: break-word;     /* compatibilidad con navegadores antiguos */
}
.texto-accion {
    color: #63ff86;   /* Verde llamativo para mensajes del juego (puedes elegir otro) */
    background: #191f19;
    border-radius: 8px;
    padding: 8px 18px;
    margin-top: 12px;
    display: inline-block;
    font-weight: bold;
    font-family: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

#cmdInput {
    background: #14171a;
    color: #6ef789;
    font-family: 'Fira Mono', 'Consolas', 'Courier New', monospace;
    font-size: 1.2em;
    border: 2px solid #222;
    border-radius: 4px;
    padding: 8px 14px;
    outline: none;
    margin-right: 12px;
    width: 360px;
    box-shadow: 0 2px 8px #010;
}
#cmdInput:focus {
    border-color: #4afea0;
    background: #1a1f1c;
}

.leyenda-instrucciones {
    font-size: 0.98em;
    margin: 0.5em auto 0 auto;    /* Centra el div horizontalmente */
    background: #232a22;
    color: #dbffe0;
    padding: 0.7em 1.5em;
    border-radius: 6px;
    width: max-content;
    min-width: 260px;
    box-shadow: 0 2px 8px #010;
    text-align: center;   /* Centra el texto */
}
.leyenda-instrucciones ul {
    margin: 0 0 0 1em;
    padding: 0;
}
.leyenda-instrucciones li {
    list-style: disc;
    margin-bottom: 0.2em;
}