#titulo{
    margin-top: 40px;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center;
}

#titulo {
  color: #fff;
  font-size: 64px;
  font-family: 'monospace';
  text-align: center;
  position: relative;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% {
    text-shadow: 2px 2px red, -2px -2px blue;
  }
  50% {
    text-shadow: -2px -2px red, 2px 2px blue;
  }
  100% {
    text-shadow: 2px -2px red, -2px 2px blue;
  }
}





/*botones*/
.modo-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px;
  }
  
  .modo-toggle button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: 0.2s;
  }
  
  #absurdo {
    background-color: #ff4d4d;
    color: white;
  }
  
  #serio {
    background-color: #4da6ff;
    color: white;
  }
 
 .btn:hover{
    cursor: pointer;
    transform: scale(1.05);
    
 }
 .btn.active {
    color: #4f92ff;
    border: 3px solid #000000;
    transform: scale(1.1);
    
  }
.btn_jugar{
    padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 65, 108, 0.4);
    display: none;
    
    
}
#debate{
   position: absolute;
  left: 120px;
  background-color: rgb(255, 82, 82);
}
#siguiente{
    position:absolute;
    right: 120px;
    background-color: rgb(70, 228, 70);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.opcion.izquierda {
  animation: slideInLeft 0.5s ease forwards;
}

.opcion.derecha {
  animation: slideInRight 0.5s ease forwards;
}

#opciones {
 display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.opcion {
   flex: 1;
  padding: 50px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.3);
  transition: all 0.3s ease;
  user-select: none;
  pointer-events: none; /* que no se puedan clicar */
  opacity: 0;
  
}
#opcionA{
  background: linear-gradient(135deg, #f99c94, #fe0400);

}
#opcionB{
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

  /**/
.texto{
    text-align: center;
    font-size: 20px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
#pregunta{
  font-size: 30px;
}


#cuentaAtras {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  margin: 10px 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#turnoTexto{
  font-size: 30px;
}
#reloj{
  font-size: 20px;
   font-family: Verdana, Geneva, Tahoma, sans-serif;
     font-weight: bold;

}




/*footer*/
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  background-color:  #222;
  color: #eee;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  
}


.footer-redes {
  margin-bottom: 10px;
}

.footer-redes a {
  color: #eee;
  margin: 0 15px;
  font-size: 30px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-redes a:hover {
  color: #1d9cb9; /* verde vibrante, cambia a tu gusto */
  transform: scale(1.2);
}
#privacidad{
  color: #eee;
}



  
  

/*movil*/
/*@media screen and (max-width: 668px) {

  .respuesta {
    width: 90%;
    margin-bottom: 20px;
  }

  .modo-toggle {
    flex-direction: column;
    gap: 10px;
  }

  #debate, #siguiente {
    position: static;
    margin: 10px auto;
    display: block;
  }
}*/

@media (max-width: 768px) {
  body {
    padding: 10px;
    font-size: 16px;
  }

  #pregunta {
    font-size: 25px;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  

  .opcion {
    padding: 40px 25px;
    margin: 30px 0;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 18px;
    padding: 2rem, 1rem;
  }
  

  #botonesPostCuenta {
    display: flex;
    justify-content: space-between;
    
    width: 100%;
    gap: 5rem;
    margin-bottom: 3rem; 
    
    
  }
   #debate,
  #siguiente {
    max-width: 50%; 
    padding: 12px 10px;
    
    font-size: 16px;
    border-radius: 12px;
    text-align: center;
  }

  .temporizador {
    font-size: 20px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

}
body {
  overflow-x: hidden;
}


