
.fullscreen-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-content {
  text-align: center;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.loading-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: white;
  animation: loading 1s infinite ease-in-out;
}

.loading-text {
  color: white;
  font-size: 14px;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}



body {
  margin: 0;
  padding: 0;
  overflow-y: auto;
  background: black;
  color: white;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
}

canvas {
  display: block;
}

.content-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.text-content {
  max-width: 600px;
  text-align: center;
  line-height: 1.6;
}

.text-content p {
  margin: 1.5rem 0;
  font-size: 1.2rem;
}
