.uc-chicken-hero img {
  animation: chickenBob 2.5s ease-in-out infinite;
  cursor: pointer;
  max-width: 320px !important;
}
.uc-chicken-hero img:hover {
  transform: scale(1.08) rotate(5deg) !important;
  animation: none !important;
}
@keyframes chickenBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}