.malwisp {
  margin-bottom: 20px;
  margin-left: 300PX;
  margin-right: 300PX;
  color: gold;
  background-color: black;
  border-radius: 10px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  border: solid white 5px;
}
.contenedor-ruleta {
  position: relative;
  width: 400px;
  margin: 0 auto 40px auto;
}

#ruleta {
  border: 5px solid #333;
  margin-top: 20PX;
  border-radius: 50%;
  background: white;
}

#girarBtn {
  margin-top: 20px;
  margin-left: 128px;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
}

.tablero-preguntas {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: black;
  border-radius: 10px;
  border: solid white 3px;
  color: #eee;
}

h2{
  font-family: "Poppins", sans-serif;
}

#preguntasNumeros {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.numero-pregunta {
  background-color: black;
  border: 2px solid #ccc;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  line-height: 46px;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s;
}

.numero-pregunta:hover {
  background-color: #ddd;
}

#preguntaTexto {
  font-size: 20px;
  min-height: 60px;
  color: #333;
}

/* Flecha indicador arriba */
.flecha {
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  width: 0; 
  height: 0; 
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-TOP: 20px solid red;
  z-index: 10;
}

input{
  width: 400px;
  height: 30px;
  box-sizing: border-box;
}



@media (max-width: 575px){
  .malwisp{
    font-size: 16px;
  }

  .contenedor-ruleta {
  position: relative;
  width: 100%;
  height: 50%;
}

#ruleta {
  border: 3px solid #333;
  margin-top: 10PX;
  border-radius: 50%;
  background: white;
}

.active .u-form-1 {
  background-image: none;
  height: 47px;
  margin-top: 30px;
  margin-bottom: 70px;
}

.active .u-btn-4 {
  background-image: none;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 70;
  padding: 10px 43px 11px 42px;
}

.flecha {
  position: absolute;
  top: 60px;
  left: 18%;
  margin-left: 50px;
  width: 0; 
  height: 0; 
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-TOP: 20px solid red;
  z-index: 10;
}
}