body {
  margin: 0;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  background: #f8fafc;
}

.loader-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  animation: loaderFadeIn 0.3s ease-out;
}

.loader-dot-group {
  display: flex;
  gap: 4px;
  align-items: center;
}

.loader-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  animation: loaderBounce 1s ease-in-out infinite;
}

.loader-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.loader-dot:nth-child(3) {
  animation-delay: 0.3s;
}

.loader-brand {
  font-family: 'Figtree', 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1e3a5f;
  letter-spacing: 0.01em;
  white-space: nowrap;
  user-select: none;
}

@keyframes loaderFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderBounce {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
