/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }
  body{
    font-size: 62.5%;
    font-family: 'Essay Normal', Arial, sans-serif !important;
  }
  h1{
    font-size: 2.5rem;
  }
  h3{
    font-size: 1.8rem;
  }
  h1,h2,h3{
    color: #fff;
    text-align: center;
  }
  li{
    color: #f17222;
    font-size: 1.5rem;
  }
  li > span{
    color: #5e1eff;
  }
  p{
    color: #fff;
    font-size: 1.2rem;
  }
  .instrucciones{
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 2rem;
   
  
  }
  
  /* Animación de deslizamiento */
  @keyframes slideDown {
    from {
      transform: translateY(-30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(-30px);
      opacity: 0;
    }
  }
  
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  
  .modal.fade.show .modal-dialog {
    animation: slideDown 0.3s;
  }
  
  .modal.fade:not(.show) .modal-dialog {
    animation: slideUp 0.3s;
  }
  
  .modal-title {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
  }
  
  .hvr-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
  }
  
  .hvr-bob:active,
  .hvr-bob:focus,
  .hvr-bob:hover {
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-duration: 0.3s, 1.5s;
    animation-duration: 0.3s, 1.5s;
    -webkit-animation-delay: 0s, 0.3s;
    animation-delay: 0s, 0.3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
  }
  
  .modal {
  
  
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  
  }
  
  .modal-content {
    background-color: #121212;
    padding: 20px;
    border: 1px solid #121212;
    border-radius: 2rem;
   
  }
  
  
  
  .close-btn {
    display: block;
    margin-top: 20px;
    /* Espacio entre el contenido y el botón de cerrar */
    margin-left: auto;
    /* Centrado horizontal */
    margin-right: auto;
    /* Centrado horizontal */
    background-color: #5e1eff;
    /* Color azul */
    border: none;
    color: #fff;
    /* Texto blanco */
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
    font-size: 1rem;
    /* Efecto de transición */
  }
  
  .close-btn:hover {
    background-color: #f17222;
  }
  
  li {
    color: #f17222;
    font-size: 1.5rem;
  }
  
  li>span {
    color: #5e1eff;
  }
  
  p {
    color: #fff;
    font-size: 1.2rem;
  }
  .glass-modal-content {
    background: rgba(255, 255, 255, 0.1); /* fondo semi-transparente */
    border-radius: 20px;
    backdrop-filter: blur(10px); /* desenfoque principal */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); /* borde sutil */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); /* profundidad */
  }
  

.glass-modal-content h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 2em;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.22);
  }
  
  .glass-modal-content ul {
    text-align: left;
    margin-bottom: 22px;
    color: #f6f6f6;
    font-size: 1.08em;
    padding-left: 20px;
  }
  
  .glass-modal-content ul li {
    margin-bottom: 7px;
    list-style: disc;
    opacity: 0.92;
  }
  
  #continue-btn {
    background: rgba(255,255,255,0.35);
    border: none;
    border-radius: 12px;
    padding: 10px 32px;
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(31,38,135,0.18);
    transition: background 0.2s, color 0.2s;
  }
  #continue-btn:hover {
    background: rgba(255,255,255,0.55);
    color: #111;
  }
  
  @keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
  }
  