/* iOS PWA Splash Screen Animation */
.ios-splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #009ef7 0%, #0077cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.ios-splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.ios-splash-screen .splash-content {
  text-align: center;
  color: white;
}

.ios-splash-screen .splash-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  animation: splashPulse 1.5s ease-in-out infinite;
}

.ios-splash-screen .splash-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  animation: splashFadeIn 0.8s ease-out;
}

.ios-splash-screen .splash-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  animation: splashFadeIn 1s ease-out;
}

@keyframes splashPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes splashFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark mode support */
[data-theme="dark"] .ios-splash-screen {
  background: linear-gradient(135deg, #1e1e2d 0%, #252536 100%);
}

