#appBootSplash {
  position: fixed;
  inset: 0;
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
}

.app-boot-splash__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  min-width: min(16rem, 88vw);
  padding: 0.5rem 1rem 0;
  background: transparent;
}

.app-boot-splash__logo {
  display: block;
  width: min(17.5rem, 72vw);
  height: auto;
}

.app-boot-splash__card--error {
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  border: 1px solid #fecaca;
  background: #fef2f2;
}

.app-boot-splash__spinner {
  width: 1.75rem;
  height: 1.75rem;
  border: 3px solid rgba(232, 120, 36, 0.22);
  border-top-color: #e87824;
  border-radius: 50%;
  animation: app-boot-spin 0.75s linear infinite;
}

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

.app-boot-splash__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
}

.app-boot-splash__detail {
  margin: 0;
  font-size: 0.82rem;
  color: #991b1b;
  text-align: center;
  max-width: 28rem;
}
