/* cubre toda la pantalla */
#age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* modal centrado */
#age-gate-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;        /* o el ancho que prefieras */
  max-width: 90%;    /* para pantallas pequeñas */
  background: #fff;
  color: #000;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  z-index: 10000;    /* por encima del overlay */
}

/* botones con estilo base del tema */
#age-gate-modal button {
  margin: 0 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
}

@media (max-width: 600px) {
  /* Reducir ancho del modal en móvil */
  #age-gate-modal {
    width: 80%;
    padding: 1rem;
  }

  /* Ajustes de los botones */
  #age-gate-modal button {
    /* Tamaño compacto */
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    /* Ocupan casi la mitad para sentarse lado a lado */
    width: 45%;
    /* Separación mínima entre ellos */
    margin: 0.25rem 0.5rem;
    /* Para que respeten el width en línea */
    display: inline-block;
  }
}
