@keyframes custom-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); } /* Daha yumuşak hareket için düşük yükseklik */
  }
  
  .animate-custom-bounce {
    animation: custom-bounce 1.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  }
  
  .text-stroke {
    -webkit-text-stroke: 1px #4b5563;
  }

  .menu-open .overlay {
    visibility: visible;
    opacity: 1;
}