body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

#root {
  min-height: 100vh;
}

.app-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #0a0a0a;
}

.app-loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid rgb(255 255 255 / 10%);
  border-top-color: #dc2626;
  border-radius: 50%;
  animation: initial-loader-spin 0.8s linear infinite;
}

@keyframes initial-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
