body {
  margin: 0;
  background: #030308;
  color: #E2E4F0;
  font-family: 'Rajdhani', 'Inter', system-ui, sans-serif;
}

#root {
  min-height: 100vh;
}

.initial-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030308;
  z-index: 9999;
  transition: opacity 0.3s;
}

.initial-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(123, 92, 255, 0.3);
  border-top-color: #7B5CFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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