@charset "UTF-8";
/* ESTILOS GENERALES */
body {
  margin: 0;
  padding: 0;
  background-color: #0A0E1C; /* Fondo frío – LÍDERES */
  font-family: 'Inter', sans-serif;
  color: #000;
}

.pantalla-inicio,
.pantalla-juego,
.pantalla-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem;
  max-width: 700px;
  margin: auto;
  gap: 1rem;
}

/* === PANTALLA INICIO === */

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

/* Header con logo y lema */
.header-quinteto {
  background-color: #0A0E1C;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 0.5rem;
  width: 100%;
}

/* Logo home */
.logo-jueguitos {
  max-width: 100%;
  height: auto;
}

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

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

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

/* TÍTULO (Scoreboard Blue – LÍDERES) */
.titulo-quinteto {
  background-color: #0F58FF;
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
}

/* SUBTÍTULO (Dorado Estadístico – LÍDERES) */
.subtitulo-quinteto {
  background-color: #D4A640;
  color: #000000;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

/* INSTRUCCIONES */
.instrucciones-quinteto {
  color: #EEE9DF;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  font-family: 'Inter', sans-serif;
}

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

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

/* Botón iniciar */
.btn-iniciar-nueva {
  background-color: #EEE9DF;
  color: #0A0E1C;
  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: #e3dccd;
}

a.btn-iniciar-nueva {
  text-decoration: none;
  display: inline-block;
}

/* Contenedor de los botones */
.botones-final {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: .5rem;
  align-items: center;
}

/* Botones final */
.pantalla-final .btn-iniciar {
  background-color: #EEE9DF;
  color: #0A0E1C;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 1.2rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 280px;
}

.pantalla-final .btn-iniciar:hover {
  background-color: #e3dccd;
}

.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; }

/* === LÍDERES NBA (scoped) === */
.premios-nba {
  --leaders-bg: #0A0E1C;
  --leaders-gold: #D4A640;
  --leaders-ivory: #EEE9DF;
  --leaders-blue: #0F58FF;
  --text-on-dark: #EEE9DF;
  --text-on-light: #0A0E1C;
}

/* Logo 3C */
.premios-nba #logoTemporadaHTML.logo-3c-temporada {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;

  font-size: clamp(24px, 6vw, 44px);
  line-height: 1.05;
  margin: 14px 24px 6px;
  padding: 16px 26px 14px;

  -webkit-text-stroke-width: .5px;
  -webkit-text-stroke-color: #000;
  text-shadow: none !important;

  border: 2px solid rgba(0,0,0,0.15);
}

/* Texto guía */
.premios-nba #texto-guia.bloque {
  padding: 8px 1rem 6px;
  margin: 4px auto 6px;
  text-align: center;
  max-width: 720px;
  color: var(--text-on-dark);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.25;
}
.premios-nba #texto-guia p { margin: 6px 0; }

/* Formulario */
.premios-nba .form-premios {
  margin: 0 24px 20px;
  position: relative;
  font-family: "Inter", sans-serif;
}

.premios-nba .form-premios .campo {
  margin: 10px 0 12px;
}

.premios-nba .form-premios .campo:first-child {
  margin-top: 6px;
}

.premios-nba .form-premios label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--leaders-gold);
}

.premios-nba .form-premios input[type="text"] {
  width: 100%;
  height: 15px;
  border: 2px solid transparent;
  background: #ffffff;
  color: #000000;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.premios-nba .form-premios input[type="text"]:focus {
  box-shadow: 0 0 0 3px var(--leaders-blue);
}

/* Estado correcto */
.premios-nba .form-premios input.is-correct {
  background: var(--leaders-blue) !important;
  color: #ffffff !important;
  pointer-events: none;
}

/* Sugerencias */
.premios-nba .sugs {
  position: absolute;
  width: calc(100% - 4px);
  background: #ffffff;
  border: 2px solid #e6e6e6;
  border-radius: 4px;
  margin-top: 4px;
  z-index: 600;
  max-height: 220px;
  overflow: auto;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.premios-nba .sugs.hidden { display:none; }

.premios-nba .sugs li {
  list-style: none;
  padding: 10px 12px;
  color: #111;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}
.premios-nba .sugs li:last-child { border-bottom: 0; }
.premios-nba .sugs li:hover { background: #f7f9ff; }

/* Móvil */
@media (max-width: 480px) {
  .premios-nba #logoTemporadaHTML.logo-3c-temporada {
    margin: 12px 16px 4px;
    padding: 14px 20px 12px;
  }
  .premios-nba #texto-guia.bloque {
    padding: 6px 1rem 4px;
    margin: 2px auto 4px;
  }
  .premios-nba .form-premios .campo {
    margin: 8px 0 10px;
  }
}

/* Final */
.premios-nba #logoTemporadaHTML.logo-3c-temporada {
  font-family: 'Graduate', serif;
  -webkit-text-stroke-width: .5px !important;
  text-shadow: none;
}

.premios-nba #lista-correctas {
  list-style: none;
  margin: 0;
  padding: 0;
}
.premios-nba #lista-correctas li {
  margin: 8px 0;
  padding-left: 0;
}

/* Final layout */
.premios-nba .pantalla-final {
  margin: 0;
  padding: 0;
  display: block;
  align-items: center;
}

.premios-nba .botones-final {
  margin-top: 12px;
}
