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

body {
  margin: 0;
  overflow: hidden;
 
    
}
canvas {
  display: block;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #fff;
}

#loading-img {
  width: 100px;
  animation: shake 2s infinite alternate ease-in-out;
  margin-bottom: 30px;
}

@keyframes shake {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(20px);
  }
}

#progress-container {
  width: 80%;
  height: 30px;
  background: #444;
  border-radius: 30px;
  overflow: hidden;
  border: 4px solid white;
}

#progress-bar {
  width: 0%;
  height: 100%;
  background: #9370DB;
  transition: width 0.2s ease;
  border-radius: 30px;
}

/* 👉 texts hovering */
.overlay-text {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  z-index: 20;
  font-family: "Press Start 2P", cursive;
  pointer-events: none;
  text-align: center;
}

.bottom-right-text {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
  z-index: 20;
  font-family: Arial, sans-serif;
  pointer-events: none;
  text-align: right;
}

.container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  pointer-events: none; 
}

.neon {
  font-size: 16px;
  font-family: 'Press Start 2P', cursive;
  color: #fff; /* white */
  text-shadow:
    0 0 2px #fff,
    0 0 5px #fff,
    0 0 10px #fff;
  margin: 0;
  background: none;
  line-height: 1.5;
}


h1 {
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

  

 
