html, body {
  margin: 0;
  padding: 0;
  background-color: #050505;
  color: white;
  font-family: 'Rajdhani', sans-serif;
  overflow: hidden; /* Prevent scrollbars */
}

canvas {
  display: block;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#loading h1 {
  margin-top: 20px;
  font-size: 24px;
  letter-spacing: 2px;
  color: #00e0ff;
  animation: pulse 1.5s infinite;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid #333;
  border-top: 4px solid #00e0ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}