

.glow-dancing {

  background-color: #0a0a0a;

  color: #00ffc3;

  padding: 1rem 2rem;

  border: 2px solid #00ffc3;

  border-radius: 8px;

  animation: glowDance 1.5s infinite ease-in-out;

  transition: transform 0.3s ease;

}



.glow-dancing:hover {

  transform: scale(1.05);

  animation-duration: 0.8s;


}

/* KOCA SINAN */


@keyframes glowBreath {
  0%   { box-shadow: 0 0 5px #00ffc3; transform: scale(1); }
  50%  { box-shadow: 0 0 25px #00ffc3; transform: scale(1.07); }
  100% { box-shadow: 0 0 5px #00ffc3; transform: scale(1); }
}


#mega-menu-item-19 > a:hover {
  animation: glowBreath 2.5s ease-in-out;
}

@keyframes glowWhisper {
  0%   { box-shadow: 0 0 2px #00ffc3; transform: scale(1); }
  50%  { box-shadow: 0 0 8px #00ffc3; transform: scale(1.02); }
  100% { box-shadow: 0 0 2px #00ffc3; transform: scale(1); }
}

#mega-menu-item-19 > a {
  animation: glowWhisper 6s ease-in-out infinite;
  transition: box-shadow 0.6s ease, transform 0.6s ease;
  will-change: box-shadow, transform;
  color: #00ffc3;
  border: 1px solid #00ffc3;
  border-radius: 6px;
  background-color: #0a0a0a;
  font-weight: 500;
  letter-spacing: 0.3px;
}