/* ==========================================
   BASES Y CONFIGURACIÓN GENERAL (Soft Windows 7 Chill)
   ========================================== */

body {
  background-color: #5a6eb6;
  color: #1a2238;
  font-family: "Segoe UI", Tahoma, sans-serif;

  /* Fondo completo con tinte azul relajado sin cortes al hacer scroll */
  background-image: 
    linear-gradient(180deg, rgba(218, 232, 249, 0.4) 0%, rgba(90, 110, 182, 0.8) 100%),
    url("/images/bgstamp6.png");
  background-size: 100% 100vh, 10% auto;
  background-repeat: no-repeat, repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}

/* CONTENEDOR PRINCIPAL (Ventana Aero Simple / Cristal Helado) */
.contenedor {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;

  /* Base suave con tinte azul pastel */
  background: rgba(218, 232, 249, 0.92);
  padding: 25px;
  border: 1px solid #ffffff;
  border-radius: 8px;

  /* Sombra ligera y limpia */
  box-shadow: 
    0 8px 20px rgba(90, 110, 182, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* TITULADO (Barra de ventana minimalista) */
.contenedor .titulado {
  width: 90%;
  max-width: 750px;
  margin: 10px auto;

  background: linear-gradient(180deg, #a2afe4 0%, #5a6eb6 100%);
  padding: 4px;
  border: 1px solid #dae8f9;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contenedor .titulado h1 {
  width: 90%;
  max-width: 700px;
  margin: 3px auto;

  background-color: #dae8f9;
  color: #5a6eb6;
  padding: 6px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 20px;
}

.contenedor .titulado h1::before,
.contenedor .titulado h1::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("/images/gato tonto.gif");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  opacity: 0.85;
}

.contenedor .titulado h1::before {
  margin-right: 12px;
}

.contenedor .titulado h1::after {
  margin-left: 12px;
}

.center {
  text-align: center;
}


/* ==========================================
   BOTONES (Estilo Botón UI Sencillo)
   ========================================== */

.boton {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #dae8f9 100%);
  color: #5a6eb6;
  border: 1px solid #a2afe4;
  border-radius: 4px;
  padding: 5px 16px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.boton:hover {
  background: linear-gradient(180deg, #dae8f9 0%, #95d1e7 100%);
  border-color: #5a6eb6;
  color: #1a2238;
  cursor: pointer;
}

.boton:active {
  background: #a2afe4;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}


/* ==========================================
   DIÁLOGOS DE PERSONAJES (Cajas Limpias)
   ========================================== */

/* Estilo base sencillo sin outlines pesados */
.nereD, .miaD, .roseD, .aliceD, .dartD, .dsusD, .thornD, .danD {
  font-family: "Segoe UI", "Comic Sans MS", sans-serif;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  padding: 8px 14px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(90, 110, 182, 0.12);
  text-shadow: none; /* Se elimina el borde negro pesado para mantener la sencillez */
}

.nereD {
  color: #1a2238;
  background-color: #dae8f9;
  border-color: #a2afe4;
}

.nereD::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/nere.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}

.miaD {
  color: #ffffff;
  background-color: #5a6eb6;
}

.miaD::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/mia.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}

.roseD {
  color: #1a2238;
  background-color: #a2afe4;
}

.roseD::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/rose.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}

.aliceD {
  color: #dae8f9;
  background-color: #a2afe4;
}

.aliceD::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/alice.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}

.dartD {
  color: #1a2238;
  background-color: #dae8f9;
  border-color: #95d1e7;
}

.dartD::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/dart.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}

.dsusD {
  color: #ffffff;
  background-color: #5a6eb6;
}

.dsusD::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/dan sus.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}

.thornD {
  color: #1a2238;
  background-color: #a2afe4;
}

.thornD::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/thorn.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}

.danD {
  color: #1a2238;
  background-color: #95d1e7;
}

.danD::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/images/dan.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}