body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  height: 100vh;
  margin: 0;
  background-color: #000000;
}

.loading-title {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.progress-container {
  width: 120px;
  height: 8px;
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: #ec0080;
  transition: width 0.4s ease;
}
