.app-loading-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 24, 30, 0.45);
  backdrop-filter: blur(2px);
  z-index: 3000;
}

.app-loading-overlay.is-active {
  display: flex;
}

.app-loading-card {
  background: rgba(15, 19, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 26px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #f1f5f9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.app-loading-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}
