/* style.css - Estilo moderno tipo “tech” */

body {
    font-family: 'Consolas', 'Courier New', monospace;
    background-color: #0d1117; /* fondo oscuro tipo terminal */
    color: #c9d1d9;
    margin: 40px;
}

/* Título principal */
h1 {
    color: #58a6ff; /* azul brillante */
    text-shadow: 0 0 10px #58a6ff;
    margin-bottom: 20px;
}

/* Subtítulos */
h2 {
    color: #f2a65a; /* naranja tech */
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Etiquetas y textarea */
label {
    font-weight: bold;
    color: #8b949e;
}

textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #30363d;
    background-color: #161b22;
    color: #c9d1d9;
    margin-top: 5px;
    margin-bottom: 15px;
    resize: vertical;
}

/* Botones con efecto “glow” */
button {
    padding: 12px 25px;
    margin: 5px 5px 15px 0;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: #238636; /* verde brillante */
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #238636;
}

button:hover {
    background-color: #2ea043;
    box-shadow: 0 0 15px #2ea043, 0 0 30px #2ea043;
}

/* Colores distintos para cada botón */
#btnXppToXp {
    background-color: #ff7b72;
    box-shadow: 0 0 5px #ff7b72;
}
#btnXpToX {
    background-color: #58a6ff;
    box-shadow: 0 0 5px #58a6ff;
}
#btnXppToX {
    background-color: #f2a65a;
    box-shadow: 0 0 5px #f2a65a;
}

#btnXppToXp:hover { box-shadow: 0 0 15px #ff7b72, 0 0 30px #ff7b72; }
#btnXpToX:hover { box-shadow: 0 0 15px #58a6ff, 0 0 30px #58a6ff; }
#btnXppToX:hover { box-shadow: 0 0 15px #f2a65a, 0 0 30px #f2a65a; }

/* Resultado tipo consola */
#resultado {
    background-color: #010409;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    color: #39d353; /* verde terminal */
    min-height: 50px;
    white-space: pre-wrap;
    box-shadow: 0 0 10px #39d353;
}
