.app-loader {
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: #f8f8fc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.app-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.app-loader-spinner {
  border: 5px solid #eee;
  border-top: 5px solid #9d80f6;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  animation: spin 1.05s linear infinite;
  margin-bottom: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
.app-loader-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.app-loader-text {
  color: #8863e7;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.8px;
}
