body {
  inset: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: fixed;
  background: #ffffff;
  font-family: sans-serif;
}

/* Splash Screen */
#loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: white;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

#loading.hide {
  opacity: 0;
  pointer-events: none;
}

#loading img {
  width: 120px;
  animation: slowpulse 2.2s ease-in-out infinite;
  opacity: 0.95;
}

/* נשימה איטית, עדינה, יוקרתית */
@keyframes slowpulse {
  0%   { transform: scale(1.00); opacity: 0.9; }
  50%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1.00); opacity: 0.9; }
}