@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Macondo&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: Monospace;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
	background-image: url('./assets/image-01.webp');
	background-size: cover;
	/* Ensures the image covers the entire viewport */
	background-position: center;
	/* Centers the image */
	background-repeat: no-repeat;
	/* Prevents the image from repeating */
	background-color: #fff;
	/* Fallback color in case the image fails to load */
	color: #444;
	/* Text color for readability */
	margin: 0;
	/* Removes default margin */
	overflow: hidden;
	/* Ensures no scrollbars if unnecessary */
}

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

#info {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 1; /* TODO Solve this in HTML */
}

a, button, input, select {
	pointer-events: auto;
}

.lil-gui {
	z-index: 2 !important; /* TODO Solve this in HTML */
}

@media all and ( max-width: 640px ) {
	.lil-gui.root { 
		right: auto;
		top: auto;
		max-height: 50%;
		max-width: 80%;
		bottom: 0;
		left: 0;
	}
}

#overlay {
	position: absolute;
	font-size: 16px;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(0,0,0,0.7);
}

	#overlay button {
		background: transparent;
		border: 0;
		border: 1px solid rgb(255, 255, 255);
		border-radius: 4px;
		color: #ffffff;
		padding: 12px 18px;
		text-transform: uppercase;
		cursor: pointer;
	}

#notSupported {
	width: 50%;
	margin: auto;
	background-color: #f00;
	margin-top: 20px;
	padding: 10px;
}



h1{
	font-size: 3.0em;
	color: white;
	font-family: "Macondo", cursive;
}
h3{
	font-size: 1.0em;
	color: white;
	margin-top:-15px;
}
#progress-barholder{
   background-color: rgba(30, 30, 31, 0.307);
   position: fixed;
   left: 50%; /* Position from the left */
   bottom: 10px; /* Position at the bottom */
   transform: translateX(-50%); /* Adjust to center */
   width: 320px;
   color:white;
   font-family: "Macondo", cursive;
   padding: 5px;
   border-radius: 8px;
}
.progress {
   background-color: rgba(233, 236, 239, 0.307);
   border: none;
   border-radius: 8px;
   height: 15px;
   overflow: hidden;
   width:100%;
 
 }
 
 .progress-bar {
   background-color: #faca0a;
   color: #fff;
   height: 100%;
   overflow: hidden;
 }
 button{
   background-color: rgba(233, 236, 239, 0.307);
   border: 1px solid white;
   border-radius: 8px;
   color: white;
   font-size: 0.8em;
 
 }
 #progess-report{
	position: absolute;
	top:73px;
	left: 150px;;
 }

 /* Fullscreen loading screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 24, 24, 0.9); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it stays on top */
  }
  
  /* HTML: <div class="loader"></div> */
.loader {
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    white-space: pre;
    font-size: 30px;
    line-height: 1.2em;
    height:1.2em;
    overflow: hidden;
	color: white;
  }
  .loader:before {
    content:"Loading...\A⌰oading...\A⌰⍜ading...\A⌰⍜⏃ding...\A⌰⍜⏃⎅ing...\A⌰⍜⏃⎅⟟ng...\A⌰⍜⏃⎅⟟⋏g...\A⌰⍜⏃⎅⟟⋏☌...\A⌰⍜⏃⎅⟟⋏☌⟒..\A⌰⍜⏃⎅⟟⋏☌⟒⏁.\A⌰⍜⏃⎅⟟⋏☌⟒⏁⋔"; 
    white-space: pre;
    display: inline-block;
    animation: l39 1s infinite steps(11) alternate;
  }
  
  @keyframes l39 {
    100%{transform: translateY(-100%)}
  }
