/* React 마운트 전 부트 로딩 화면 — 번들 로드 동안 흰 화면 방지 (#root 안 정적 placeholder 용) */
.boot-loading {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  color: #667;
  font-size: 0.95rem;
  font-family: 'Pretendard', -apple-system, 'Segoe UI', sans-serif;
}

.boot-loading p {
  margin: 0;
}

.boot-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid #e2e7f0;
  border-top-color: #2456e6;
  border-radius: 50%;
  animation: boot-spin 0.8s linear infinite;
}

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