
.stars, .twinkling, .clouds {
	position:absolute;
	display:block;
	top:0; bottom:0;
	left:0; right:0;
	width:100%; height:100%;
}

.stars {
	z-index: 0;
	background: #000 url('./img/YKY28eT.png') repeat top center;
}

.twinkling{
	z-index: 1;
	background:transparent url('./img/XYMF4ca.png') repeat top center;
	animation: move-twink-back 200s linear infinite;
}

.clouds{
	z-index: 2;
    background:transparent url('./img/mHbScrQ.png') repeat top center;
	animation: move-clouds-back 200s linear infinite;
}

@keyframes move-twink-back {
	from {background-position:0 0;}
	to {background-position:-10000px 5000px;}
}

@keyframes move-clouds-back {
	from {background-position:0 0;}
	to {background-position:10000px 0;}
}


/* ALIENT TPYE LLOVERAS DIGITAL */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap');

/* Centrar el texto sobre el background */
.alien-text {
	font-family: 'Orbitron', sans-serif;
	font-size: 100px;
	font-weight: 900;
	color: rgba(0, 255, 0, 1);
	letter-spacing: 15px;
	text-shadow: 
		0 0 10px rgba(0, 255, 0, 0.8),
		0 0 20px rgba(0, 255, 0, 0.6),
		0 0 30px rgba(0, 255, 0, 0.4),
		0 0 40px rgba(0, 255, 0, 0.2);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	opacity: 0;
	animation: fadeIn 4s linear forwards;
	z-index: 3; /* Para que esté sobre las nubes */
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}


/* SEE MORE */
        /* Contenedor de la flecha */
.see-more {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 40px;
            cursor: pointer;
}

        /* Texto "See More" */
.see-more p {
            font-size: 14px;
            margin: 5px 0;
            color: rgba(0, 255, 0, 1);
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
        }


/* EXPLORE BUTTON */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* EXPLORE BUTTON */
.explore-button {
    font-family: 'Press Start 2P', sans-serif;
    width: 250px;
    height: 50px;
    border: 2px dashed rgba(0, 255, 0, 0.8);
    border-radius: 8px; /* Esquinas ligeramente redondeadas */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(0, 255, 0, 1);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    cursor: pointer;
    animation: flicker 2s ease-in-out infinite alternate;
    position: absolute;
    bottom: 10%; /* Ajusta la posición más abajo */
    left: 50%;
    transform: translateX(-50%);
}

/* Animación de parpadeo suave */
@keyframes flicker {
    0% { opacity: 1; text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); }
    30% { opacity: 0.85; text-shadow: 0 0 8px rgba(0, 255, 0, 0.7); }
    50% { opacity: 0.7; text-shadow: 0 0 6px rgba(0, 255, 0, 0.5); }
    80% { opacity: 0.9; text-shadow: 0 0 9px rgba(0, 255, 0, 0.75); }
    100% { opacity: 1; text-shadow: 0 0 10px rgba(0, 255, 0, 0.8); }
}



/* RESPONSIVE */

/* Estilos para tablets y móviles */
@media screen and (max-width: 1024px) {
    .alien-text {
        font-size: 60px;
        letter-spacing: 10px;
    }

    .explore-button {
        width: 200px;
        height: 45px;
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .alien-text {
        font-size: 40px;
        letter-spacing: 5px;
        top: 20%; /* Mover más arriba */
    }

    .explore-button {
        width: 180px;
        height: 40px;
        font-size: 14px;
        bottom: 15%;
    }
}

@media screen and (max-width: 480px) {
    /* Centrar la burbuja y su texto en la parte superior */
    .bubble {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 100px; /* Ajusta el tamaño según sea necesario */
        height: 100px;
    }

    .help-text {
        position: absolute;
        top: 22%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 16px;
        text-align: center;
        width: 80%;
        color: white;
    }

    /* Colocar los iconos en la parte inferior en fila */
    .icon-container {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }

    .icon-box img {
        width: 70%;
        height: 70%;
    }
}


/* OVERLAY BUTTON*/ 
.explore-button-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 187.5pt;
    height: .520833333in;
    cursor: pointer;
    z-index: 9999; /* Asegura que esté delante */
    background: transparent;
}


/* Evita la selección de texto en toda la página */
* {
    user-select: none;  /* Bloquea la selección de texto */
    -webkit-user-select: none; /* Para Safari y Chrome */
    -moz-user-select: none; /* Para Firefox */
    -ms-user-select: none; /* Para Internet Explorer */
}

/* Aplica la configuración a todos los div */
div {
    user-select: none; /* Evita la selección de contenido dentro de divs */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    pointer-events: auto; /* Permite interacción con los divs */
}
