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

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

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

#loading-lottie {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading-fallback {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 82, 82, 0.92);
  animation: spin 0.9s linear infinite;
}

#loading-error {
  display: none;
  max-width: 320px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  text-align: center;
  line-height: 1.45;
  font-size: 14px;
}

/* נשימה איטית, עדינה, יוקרתית */
@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; }
}

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