#app-loading {
  display: none;
}

.js-enabled #app-loading {
  align-items: center;
  background: #f8fafc;
  color: #1e3a5f;
  display: flex;
  font: 500 14px/1.5 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  justify-content: center;
  min-height: 100vh;
}

.js-enabled #seo-fallback {
  display: none;
}

.app-loading-mark {
  align-items: center;
  display: flex;
  gap: 10px;
}

.app-loading-dot {
  animation: app-loading-pulse 1.2s ease-in-out infinite;
  background: #1e3a5f;
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

@keyframes app-loading-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}