html,
body {
  margin: 0;
  background: #f8fafc;
}

.app-boot-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: #f8fafc;
  font-family: Inter, Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #274a95;
}

.app-boot-screen__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.app-boot-screen__name {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.app-boot-screen__spinner {
  width: 28px;
  height: 28px;
  margin-top: 8px;
  border: 3px solid #d6e0f5;
  border-top-color: #274a95;
  border-radius: 50%;
  animation: app-boot-screen-spin 0.8s linear infinite;
}

.app-boot-screen__seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes app-boot-screen-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-boot-screen__spinner {
    animation: none;
    border-top-color: #d6e0f5;
    background: #274a95;
  }
}
