/* Reset general */
* {
  margin: 0;
  padding: 0;
  border: 0;
}

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: white;
  font-family: sans-serif;
  overflow-x: hidden;
  width: 100%;
  /* min-height: 200vh; */ /* Permite scroll al cargar */
  position: relative;
}

/* Fondo de imagen para body */
/* body {
  background-image: url('../img/xtipp_bkg.png');
  background-size: cover;
  background-position: center;
  overflow-y: scroll;
} */

/* Contenedor principal */
#ct {
  position: fixed;
  display: inline-block;
  width: 100%;
  height: 100vh;
  background-image: url('../img/bkg.jpg');
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
}

/* Overlay para rotación o scroll */
 #overlay-scroll {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 9999;
        touch-action: auto; /* ✅ permite scroll en iOS */
      }

/* Lottie animations (ocultos por defecto) */
#lottie-rotate,
#lottie-slide {
  width: 150px;
  height: 150px;
  display: none;
}

/* Texto del overlay */
#overlay-text {
  margin-top: 1rem;
  display: none;
}

/* Falso contenido para activar scroll */
#filler {
  height: 100vh;
}
