#app-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  transition: opacity 0.3s ease;
}

#app-loading img {
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  object-fit: contain;
}

.app-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgb(249 115 22 / 20%);
  border-top-color: #f97316;
  border-radius: 50%;
  animation: app-loading-spin 0.8s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .app-loading-spinner { animation-duration: 1.6s; }
}
