html,
body,
#root {
  height: 100%;
}

body {
  margin: 0;
  background: #ffffff;
  color: #0a0a0a;
  font-family:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Noto Sans SC",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
}

html.dark body {
  background: #1a1a1a;
  color: #fafafa;
}

.boot-splash {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.boot-splash-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

html:not(.dark) .boot-splash-inner {
  color: rgba(10, 10, 10, 0.64);
}

.boot-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: currentColor;
  opacity: 0.75;
  animation: boot-pulse 1s ease-in-out infinite;
}

@keyframes boot-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.45;
  }
  50% {
    transform: scale(1);
    opacity: 0.85;
  }
}
