body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-family: monospace;
	background-color: rgb(0, 0, 0);

}

.wrapperContainer {
	position: relative;
	width: 732px;
	height: 555px;
	border: 2px solid rgb(255 255 255 / 80%);
	overflow: hidden;
	background: black;
	/* perspective: 900px; */
	/* transform: scale(1.2); */
}

/* .wrapperContainer33 { */
	/* position: relative; */
	/* width: 732px; */
	/* height: 555px; */
	/* background: black; */
	/* overflow: hidden; */
	/* perspective: 900px; */

	/* outline: 2px solid rgba(255, 255, 255, 0.8); */ 
	/* outline-offset: 0;  */
/* } */


.containerGame {
	position: relative;
	user-select: none;
	width: 100%;
	height: 100%;
	background-size: cover;
	overflow: hidden;

}

#loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.loaderText {
	margin-bottom: 12px;
	letter-spacing: 2px;
	font-size: 14px;
}

.loaderBar {
	width: 320px;
	height: 12px;
	border: 2px solid #fff;
}

.loaderProgress {
	height: 100%;
	width: 0%;
	background-color: #00ff3c;
	transition: width 0.2s linear;
}

.playButton {
	margin-bottom: 23px;
	padding: 6px 48px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 2px;
	font-family: monospace;
	color: #fff;
	background: linear-gradient(180deg, #00e60c, #0bb82e);
	border: 2px solid #fff;
	border-radius: 8px;
	cursor: pointer;
}

#noConnection {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 20;
}

.noConnectionText {
	margin-bottom: 16px;
	font-size: 14px;
	letter-spacing: 2px;
	font-family: monospace;
}

#retryConnection {
    padding: 6px 28px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: monospace;
    color: #000000;
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
}

@keyframes spin {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(360deg)
	}
}

.spinner {
    border: 4px solid #ffffffa0;
    border-radius: 50%;
    border-top: 4px solid #ffffff20;
    width: 15px;
    height: 15px;
    animation-name: spin;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.notification {
    position: absolute;
    bottom: 0;
    left: 0;
    width: -webkit-fill-available;
    background-color: green;
    color: white;
    text-align: left;
    font-size: 15px;
    padding: 14px;
    display: none;
    transition: transform 0.3s;
    z-index: 10000;
    user-select: none;
    font-family: system-ui, Helvetica, Arial, sans-serif;
}

@media (min-width: 600px) {
	.notification {
		text-align: center;
	}
}

.matrix-effect {
    position: absolute;
    width: 200%;
    height: 218%;
    left: 51.5%;
    top: 20%;
    transform: translate(-50%, -50%) rotateX(61deg);
    background: linear-gradient(to right, rgba(0,255,0,0.25) 2px, transparent 2px),
		linear-gradient(to bottom, rgba(0,255,0,0.25) 2px, transparent 2px);
    background-size: 80px 80px;
    animation: matrix 1.5s linear infinite;
    filter: drop-shadow(0 0 6px #00ff00);
 
    pointer-events: none;
}

.matrix-effect2 {
	position: fixed;  /* fijo respecto al viewport */
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	transform: none;  /* opcional, ajusta según quieras */
	background: linear-gradient(to right, rgba(0,255,0,0.25) 2px, transparent 2px),
		linear-gradient(to bottom, rgba(0,255,0,0.25) 2px, transparent 2px);
	background-size: 80px 80px;
	animation: matrix 1.5s linear infinite;
	filter: drop-shadow(0 0 6px #00ff00);

	pointer-events: none;
}


@keyframes matrix {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 0 80px;
	}
}

.close_connection {
	background: #000;
	color: #fff;
	font-family: monospace;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: -webkit-fill-available;
	height: -webkit-fill-available;
	text-align: center;
	flex-direction: column;
	gap: 10px;
}