/* Native-style splash screen styles (loaded before app JS) */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
  transition: opacity 0.4s ease-out;
}

#splash-screen .splash-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 16px;
  animation: splash-pulse 1.5s ease-in-out infinite;
}

#splash-screen .splash-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.5px;
}

#splash-screen .splash-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 6px;
  font-family: system-ui, sans-serif;
}

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

.noscript-message {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-family: system-ui, sans-serif;
}

.noscript-message h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.noscript-message p {
  color: #666;
  max-width: 400px;
  margin: 0 auto;
}
