.loading_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.loader_brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Aptos', 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.loader_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.loader_icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.loader_title {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.loader_tag {
  margin: 0 0 1.75rem;
  font-size: 0.8rem;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.loading {
  border: 3px solid rgba(59, 130, 246, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border-top-color: #3b82f6;
  animation: loader-spin 0.85s ease-in-out infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

body.dark-theme .loading_wrap {
  background: #0f172a;
}
