.bnote-boot {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  box-sizing: border-box;
  color: #17345f;
  background: #fff;
  font: 600 16px/1.5 system-ui, sans-serif;
  text-align: center;
}
.bnote-loader-symbol, .loading-state::before {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
  animation: bnote-logo-turn 1.8s linear infinite;
}
.bnote-boot .bnote-loader-symbol { width: min(48vw, 180px); height: auto; aspect-ratio: 1; flex-basis: auto; }
.bnote-loader-name { color: #1769e8; font-size: 32px; line-height: 1.2; font-weight: 800; }
.loading-state::before {
  content: '';
  display: block;
  background: url('/bnote-symbol-outlined.png') center / contain no-repeat;
  margin: 0 auto 14px;
}
.loading-state > svg.spinning { display: none; }
@keyframes bnote-logo-turn { to { transform: rotate(360deg); } }
svg.bnote-spinner { display: inline-block; flex-shrink: 0; vertical-align: middle; animation: bnote-logo-turn 1.8s linear infinite; }
.loading-state > svg.bnote-spinner { display: none; }
.bnote-request-activity { position: fixed; z-index: 10000; bottom: max(20px, env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; padding: 12px 20px; max-width: calc(100vw - 24px); border: 1px solid #dce6f4; border-radius: 16px; background: #fff; color: #17345f; box-shadow: 0 8px 30px #17345f22; pointer-events: none; font-family: system-ui,sans-serif; }
.bnote-request-activity span { display: grid; gap: 2px; }.bnote-request-activity strong { color: #1769e8; }.bnote-request-activity small { white-space: nowrap; }
@media (prefers-reduced-motion: reduce) {
  .bnote-loader-symbol, .loading-state::before, svg.bnote-spinner { animation: none !important; }
}
