/* Splash styles (moved from index.html)
   Background color: 0xFF3479C6 -> #3479C6 */
#flutter-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3479C6;
  z-index: 9999;
  opacity: 0;
  transform: translateY(6px) scale(0.998);
  transition: opacity 360ms cubic-bezier(.2,.9,.2,1), transform 420ms cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}

#flutter-splash.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#flutter-splash.hidden {
  opacity: 0;
  transform: translateY(-8px) scale(0.996);
  pointer-events: none;
}

.splash-inner {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.splash-logo {
  width: 96px;
  height: 96px;
  background-image: url('images/pos.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1) opacity(.95);
}

.splash-text {
  font-size: 16px;
  margin-top: 24px;
  font-weight: 400;
}

.splash-spinner {
  width: 32px;
  height: 32px;
  border: 4px solid rgba(255,255,255,0.18);
  border-top-color: #fff;
  border-radius: 50%;
  animation: fs-spin 1s linear infinite;
  margin: 0 auto;
}

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