html, body{
	width: 100%;
}
/* =====ESTRUCTURA PRINSIPAL =====*/
.container{
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #000;
}
/* ======CONTENEDOR DE LASERES =====*/
.laser-container{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}
.laser{
	position: absolute;
	width: 4px;
	height: 100%;
	opacity: 0.7;
	background: linear-gradient(to top, rgba(0, 255, 0, 0) 0%, rgba(0, 255, 0, 1) 50%, rgba(0, 255, 0, 0)100%);
}
#laser1 {left: 10%; animation: laser-up 3s linear infinite;}
#laser2 {left: 30%; animation: laser-down 3s linear infinite;}
#laser3 {left: 50%; animation: laser-up 3s linear infinite;}
#laser4 {left: 70%; animation: laser-down 3s linear infinite;}
#laser5 {left: 90%; animation: laser-up 3s linear infinite;}
#laser6 {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(
		to right,	
		rgba(0, 255, 0, 0) 0%, 
		rgba(0, 255, 0, 1) 50%, 
		rgba(0, 255, 0, 0) 100%);
	animation: move-left-right 3s linear infinite;
	opacity: 0.7;
}
/* ======== ANIMACIONES =======*/
@keyframes glow-pulse{
	from{
		box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
		text-shadow: 0 0 5px #00ff00;
	}
	to {
		box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
		text-shadow: 0 0 15px #00ff00;
	}
}
@keyframes laser-up{
	0% { transform: translateY(100%) scaleY(0);}
	50% { transform: translateY(0) scaleY(1);}
	100% { transform: translateY(-100%) scaleY(0);}
}
@keyframes laser-down{
	0% { transform: translateY(-100%) scaleY(0); }
	50% { transform: translateY(0) scaleY(1);}
	100% { transform: translateY(100%) scaleY(0);}
}
@keyframes move-left-right{
	0%{ transform: translateX(-100%) scaleX(0);}
	50%{transform: translateX(0) scaleX(0.8);}
	100% { transform: translateX(100%) scaleX(0);}
}
/* ====== CONENEDOR DE TEXTO PRINCIPAL ======*/
.text-container{
	opacity: 1;
	transition:opacity 5s ease;
	top: 0;
	left: 0;
	position: absolute;
	width: 99%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content; center;
	align-items: center;
	z-index: 10;
	color: #00ff00;
	text-align: center;
	background-color: #000;
	/* Efecto glow */
	text-shadow: 0 0 10px #00ff00;
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
	border: 1px solid #00ff00;
	border-radius: 10px;
	padding-bottom: 20px;
	/* Aniumacion de parpadeo sutil */
	animation: glow-pulse 2s infinite alternate;
	/* Transicion para desvanecer 
	transition: opacity 1s ease, visibility 1s ease;	*/
}
.text-container h1{
	font-size: 4em;
	font-style: italic;
	margin-top: 15%;
}
.text-container h2{
	font-size: 3.5em;
	margin: 0.5 0;
}
.text-container h3{
	font-size: 3em;
	margin: 0.5em 0;
	line-height: 1.5em;
}
/* ======== MENSAJE DE ADVERTENCIA ====== */
#contentmensajeAdvertencia {
    opacity: 1;
    transition: opacity 1s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mensajeAdvertencia {
    background-color: rgba(0, 20, 0, 0.9);
    border: 3px solid #00FF00;
    padding: 20px;
    text-align: center;
    width: 50%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    color: #01DF74;
    font-family: Arial, sans-serif;
    border-radius: 10px;
}

#mensajeAdvertencia h2 {
    color: #01DF74;
    font-size: 2.0em;
    margin-bottom: 20px;
}

#mensajeAdvertencia p {
    font-size: 1.3em;
    line-height: 1.4;
    margin: 15px 0;
    color: #39FF14;
}

#continuarBtn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #00FF00;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

#continuarBtn:hover {
    background-color: #00CC00;
    transform: scale(1.05);
}

/* Scroll personalizado */
#mensajeAdvertencia::-webkit-scrollbar {
    width: 8px;
}

#mensajeAdvertencia::-webkit-scrollbar-thumb {
    background: #00FF00;
    border-radius: 4px;
}

/* Clase para no scroll */
body.noscroll {
    overflow: hidden;
    height: 100vh;
}
.btnLang > button{
	color: #39FF14;
	margin:0.5em;
    padding: 0.5em;
    border-radius: 5px;
    background:#000;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
@media screen and (max-width: 800px) {
    #mensajeAdvertencia {
        width: 95%;
        height: auto;
        max-height: 85vh;
        padding: 5px;
        margin: 10px;
    }
    
    #mensajeAdvertencia h2 {
        font-size: 1.6em;
    }
    
    #mensajeAdvertencia p {
        font-size: 1.1em;
        color: #01DF74; /* Mantener color consistente */
    }
    
    #continuarBtn {
        padding: 10px 25px;
        font-size: 1.1em;
    }
    
    /* Ocultar completamente en m¨®vil */
    #contentmensajeAdvertencia.mobile-hidden {
        display: none !important;
    }
	.img_left{ display:none;}
	.img_right{display:none;}
}

