#splash-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #faf9f7;
  z-index: 9999;
  transition: opacity 0.3s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}
#splash-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
#splash-subtitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}
#splash-fact-label {
  font-size: 10px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
#splash-fact {
  font-size: 13px;
  color: #999;
  max-width: 300px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 28px;
}
#splash-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e5e5;
  border-top-color: #e5956e;
  border-radius: 50%;
  animation: splash-spin 0.8s linear infinite;
}
@keyframes splash-spin {
  to { transform: rotate(360deg); }
}
