.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fafbfe;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modern-loader {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top: 6px solid #3b82f6;
  border-right: 6px solid #10b981;
  border-bottom: 6px solid #8b5cf6;
  filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
  animation: spin-custom 1.8s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}

.loader-core {
  width: 32px;
  height: 32px;
  background-color: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
  animation: pulse-custom 1.8s ease-in-out infinite;
}

.loading-text {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #64748b;
  text-transform: uppercase;
}

@keyframes spin-custom {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-custom {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* src/styles.scss */
button,
.btn {
  text-transform: none !important;
}
