#app-loader {
  position: fixed;
  inset: 0;
  background: #0c0c0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

#app-loader .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(162, 126, 94, 0.1);
  border-top-color: #a27e5e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#app-loader .label {
  color: #a27e5e;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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