html[data-theme='light'] {
  --text-color: #000000;
  --background: #f7f8fa;
}

html[data-theme='dark'] {
  --text-color: #bcbec4;
  --background: #1f2024;

}

#boot-splash {
  position: fixed;
  inset: 0;
  z-index: 999999;

  background: var(--background);
  color: var(--text-color);
}

.boot-splash-overlay {
  position: fixed;
  inset: 0;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
}

.boot-splash-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.boot-splash-logo {
  width: 80px;
  height: 80px;
  animation: boot-pulse 2s ease-in-out infinite;
}

.boot-splash-logo svg {
  width: 100%;
  height: 100%;
}

.boot-splash-brand h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.boot-splash-brand p {
  margin-top: 6px;
  font-size: 13px;
  color: #999;
}

.boot-splash-loader {
  display: flex;
  gap: 8px;
}

.boot-splash-loader span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
  animation: boot-dot-bounce 1.4s ease-in-out infinite both;
}

.boot-splash-loader span(1) {
  animation-delay: -0.32s;
}

.boot-splash-loader span(2) {
  animation-delay: -0.16s;
}

@keyframes boot-pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes boot-dot-bounce {
  0%,80%,100% { transform: scale(.6); opacity: .4; }
  40% { transform: scale(1); opacity: 1;  }
}

