* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #0e0e16; min-height: 100vh; }
#root { min-height: 100vh; }
#loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; background: #0e0e16; color: #9090a8;
  font-family: sans-serif; font-size: 14px; flex-direction: column; gap: 12px;
}
.spinner {
  width: 32px; height: 32px; border: 3px solid #2e2e3a;
  border-top-color: #d4a843; border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }