/* PWA Splash Screen - #3F4A2C olive green background, centered mascot logo */

/* Web app capabile pages get splash on load */
.pwa-splash {
  position: fixed;
  inset: 0;
  background-color: #3F4A2C;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: splash-fade 0.6s ease-out 1.2s forwards;
}

.pwa-splash img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

@keyframes splash-fade {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}