#initial-loader {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0e14;
  opacity: 1;
  transition: opacity 0.2s;
}

#initial-loader .loader-content {
  text-align: center;
}

#initial-loader .spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 4px solid rgba(16, 185, 129, 0.2);
  border-top-color: #10b981;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#initial-loader .loader-text {
  margin-top: 16px;
  color: #6b7280;
  font-family: system-ui, sans-serif;
}

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