body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
       overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.logo-container {
    padding: 20px;
    text-align: center;
    background-color: #1e1e1e;
    width: 100%;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    margin: 0;
}

.logo-urban {
    color: #ffffff;
}

.logo-dle {
    color: #2978b5;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

  .overlay-juegos {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Fondo oscuro del overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ventana-juegos {
  background: #2c2c2c; /* Gris oscuro en lugar del blanco */
  border: 4px solid #003366; /* Borde azul oscuro */
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 25px #003366aa;
  animation: zoomIn 0.6s ease;
  max-width: 95%;
  width: 600px;
  max-height: 90%;
  overflow-y: auto;
}

.ventana-juegos h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
}

.ventana-juegos p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #dddddd;
}

.botones-juegos {
  display: flex;
  flex-direction: column; /* Uno debajo de otro */
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.juego-btn {
  background-color: #003366;
  color: white;
  padding: 20px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  width: 100%; /* Ocupa el ancho del contenedor */
  max-width: 500px;
  box-shadow: 0 0 10px #00336677;
  transition: transform 0.3s, background-color 0.3s;
box-sizing: border-box;
}
.juego-btn:hover {
  background-color: #005599;
  transform: scale(1.03);
}

.cerrar-juegos {
  margin-top: 30px;
  padding: 12px 20px;
  background-color: #777;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s;
}
.cerrar-juegos:hover {
  background-color: #555;
}

@keyframes zoomIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}



.tit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 70px;
  background: #2978b5;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin: 20px 0;
}
.separator {
  width: 50%;
  min-width: 800px;
  height: 4px;
  margin: 0 auto 25px auto;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffffffff, #2978b5, #ffffffff);
  box-shadow: 0 0 12px rgba(255, 204, 51, 0.6);
}
/* Consigna elegante */
#album-nombre {
  font-size: 20px;
  padding: 12px 20px;
  margin: 15px auto;
  width: fit-content;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
  border: 2px solid #2978b5;
  box-shadow: 0 0 10px rgba(41,120,181,0.5);
  font-weight: 600;
}

/* Contador enmarcado */
#contador {
  display: inline-block;
  background: linear-gradient(135deg, #222, #333);
  padding: 10px 25px;
  border-radius: 12px;
  border: 2px solid #ffcc33;
  box-shadow: 0 0 12px rgba(255,204,51,0.6);
  font-size: 18px;
  margin: 15px 0;
}

/* Barra de búsqueda elegante */
.search-input {
  padding: 15px 20px;
  width: 480px;
  font-size: 18px;
  border-radius: 12px;
  border: 2px solid #444;
  background: #1c1c1c;
  color: white;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.6);
}

.search-input:focus {
  border-color: #2978b5;
  box-shadow: 0 0 15px rgba(41,120,181,0.8);
}

/* Error (cuando falla) */
.search-input.error {
  background: #ff4d4d;
  color: white;
  border-color: #ff1a1a;
  box-shadow: 0 0 12px rgba(255,77,77,0.8);
}

/* Contenedor de resultados: filas y columnas */
#resultados {
    display: flex;
    flex-wrap: wrap; /* Permite que las canciones se ajusten a la siguiente fila */
    gap: 10px; /* Espacio entre canciones */
    margin-top: 20px;
    justify-content: center; /* Centra las canciones */
}

/* Cada canción correcta */
.cancion-correcta {
    background: linear-gradient(135deg, #28a745, #3ddc84);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.7);
    animation: aparecer 0.5s ease-out;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap; /* Evita que el texto se divida dentro de la “chip” */
    display: inline-block; /* Que se comporte como elemento en línea con padding */
}

.cancion-correcta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(61, 220, 132, 0.9);
}


/* Animación entrada */
@keyframes aparecer {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.info-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0ff;
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    margin-left: 20px;
    transition: background-color 0.3s;
  }
  
  .info-icon:hover {
    background-color: #ff5733; /* Cambio de color al pasar el ratón */
  }
  
  /* Estilos del desplegable de la explicación */
  .info-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #3a3a3a; /* Gris oscuro acorde a la página */
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    margin-left: 40px; /* Lo movemos un poco más a la derecha */
    transition: background-color 0.3s;
  }
  
  .info-icon:hover {
    background-color: #0a74b6; /* Azul oscuro para el hover */
  }
  
  /* Estilos del desplegable de la explicación */
  .game-info {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    color: white;
    z-index: 9999;
    animation: fadeIn 0.5s ease;
  }
  
  .game-info .info-content {
    position: relative;
  }
  
  .game-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .game-info p {
    font-size: 18px;
    line-height: 1.5;
  }
  
  /* Botón de cerrar */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  /* Botón Rendirse */
#rendirse {
  margin-left: 10px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc3545, #ff4d4d);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.6);
}

#rendirse:hover {
  background: linear-gradient(135deg, #ff4d4d, #e60000);
  box-shadow: 0 0 12px rgba(220, 53, 69, 0.8);
  transform: scale(1.05);
}

#rendirse:disabled {
  background: #555;
  cursor: not-allowed;
  box-shadow: none;
}


/* Contenedor de mensajes */
#mensaje {
    text-align: center;
    margin: 15px auto;
    padding: 12px 20px;
    width: fit-content;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    display: none;
}

/* Colores de mensaje */
#mensaje.info { background-color: #2978b5; color: white; }
#mensaje.success { background-color: #28a745; color: white; }
#mensaje.error { background-color: #dc3545; color: white; }

/* Modal rendirse */
#rendirse-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #2978b5;
    color: white;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 0 15px rgba(41,120,181,0.8);
}

#rendirse-modal button {
    margin: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

#rendirse-modal #confirmar-rendirse {
    background: #dc3545;
    color: white;
}

#rendirse-modal #cancelar-rendirse {
    background: #2978b5;
    color: white;
}

#rendirse-modal h2 {
    margin-bottom: 20px;
}

@media (max-width: 870px) {
    .separator{
        min-width: none;
        width: 100%;
    }
}
/* Ajustes responsive a partir de 800px */
@media (max-width: 800px) {
    .tit {
        font-size: 60px; /* Más grande */
        text-align: center;
        margin: 20px 10px;
    }

    .separator {
        width: 95%; /* Más ancho */
        min-width: 0;
    }

    #album-nombre {
        font-size: 22px; /* Texto más grande */
        padding: 15px 20px;
        width: 95%;
        text-align: center;
    }

    #contador {
        font-size: 18px;
        padding: 10px 20px;
        width: 95%;
        text-align: center;
    }

    .search-input {
        width: 95%; /* Barra de búsqueda casi completa */
        font-size: 20px;
        padding: 15px 20px;
    }

    #rendirse {
        padding: 12px 20px;
        font-size: 16px;
        margin-top: 10px;
        margin-left: 0px;
        width: 95%;
        max-width: none;
    }

    .cancion-correcta {
        width: auto;  
        font-size: 18px;
        padding: 12px 20px;
        width: 95%;
        text-align: center;
    }

    #resultados {
        width: 95%;
    }

    /* Modal rendirse */
    #rendirse-modal {
        width: 95%;
        max-width: none;
        padding: 25px;
    }

    #rendirse-modal button {
        width: 48%;
        font-size: 16px;
        padding: 10px 15px;
    }
}
