@charset "UTF-8";
/* CSS Document */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.pantalla-inicio-nueva {
  background-color: #f9002d;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.header-quinteto {
  background-color: #f9002d;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 0.5rem; /* o ajusta si necesitas mÃ¡s espacio */
  width: 100%;
}

.logo-quinteto {
  width: 220px;
  max-width: 100%;
  margin: 0 auto 12px;
  display: block;
}

.logo-jueguitos {
  max-width: 100%;
  height: auto;
}

.lema-quinteto {
  font-family: 'League Spartan', sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.bloque {
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.titulo-quinteto {
  background-color: #111111;
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
}

.subtitulo-quinteto {
  background-color: #6e6e6e;
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.edicion-goat {
  background-color: #ffffff;
  color: #000000;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 15px; /* menos alto */
  text-align: center;
  line-height: 1; /* evita que haya espacio extra interno */
  box-shadow: inset 0 0 0 2px #1c1c1c; /* grosor y color del borde interior */
}

.instrucciones-quinteto {
  color: #ffffff;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
}

.instrucciones-quinteto h2 {
  margin-top: 0;
  font-weight: bold;
  font-size: 1.6rem;
  color: #ffffff;
}

.instrucciones-quinteto p {
  margin: 0.5rem 0;
  font-weight: 400;
}

.btn-iniciar-nueva {
  background-color: #f4f4f4;
  color: #000;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 1rem 3rem;
  border: none;
  margin: 2rem auto;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.btn-iniciar-nueva:hover {
  background-color: #e2dbc8;
}

.pie-juego {
  display: flex;
  justify-content: center;
  margin: 18px 0 28px;
}

.btn-rendirse {
  background: #000000;
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s ease;
}

.btn-rendirse:hover {
  opacity: .9;
}

.botones-final {
  display: flex;
  flex-direction: column; /* uno encima del otro */
  align-items: center;    /* centrados horizontalmente */
  gap: 20px;              /* espacio entre botones */
  margin-top: 20px;
}

.boton-final {
  background: #f4f4f4;
  color: #111;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  border: none;
  padding: 15px 0;
  width: 280px;           /* mismo ancho para ambos */
  text-align: center;
  cursor: pointer;
}

.boton-final:hover {
  background: #ddd;
}
