.ao-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg, #000000);
  background-attachment: fixed;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: all;
}

.ao-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ao-loader-logo {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 46px;
  letter-spacing: 6px;
  line-height: 1;
  user-select: none;
  color: rgba(255, 255, 255, 0.9);
}

.ao-loader-sub {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.ao-loader-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: ao-spin 0.8s linear infinite;
}

@keyframes ao-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .ao-loader-spinner {
    animation-duration: 1.6s;
  }
}
