body {
  font-family: 'Inter', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.custom-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03) translateY(-1px); }
}
.animate-breathe {
  animation: breathe 3s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes float-zzz {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translate(14px, -24px) scale(1.1); }
}
.animate-zzz-1 { animation: float-zzz 2.5s infinite 0.2s; }
.animate-zzz-2 { animation: float-zzz 2.5s infinite 1.1s; }
.animate-zzz-3 { animation: float-zzz 2.5s infinite 1.9s; }

@keyframes jump-siren {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-4px) scale(1.1); filter: drop-shadow(0 0 6px rgba(225, 29, 72, 0.6)); }
  60% { transform: translateY(0) scale(1.05); }
}
.animate-jump-siren {
  animation: jump-siren 1.2s infinite ease-in-out;
}
