@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

body {
  position: fixed;
  inset: 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

#loading {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 12;
}

#loading.hidden {
  opacity: 0;
  transition: opacity 0.35s ease;
}
