.HSK {
  position: absolute;
  left: 80%;
  top: 18%;
  transform: translate(-50%, -50%) scale(0.08);
  z-index: 998;
  transition: filter 0.3s ease-in-out;
   animation: neon-glow 1.5s ease-in-out infinite alternate;
}

.HSK:hover {
  /* Kích hoạt animation khi rê chuột */
  animation: neon-glow 0.5s ease-in-out infinite alternate;
}

/* Định nghĩa các bước của hoạt ảnh */
@keyframes neon-glow {
  0% {
    /* Trạng thái ban đầu */
    filter: drop-shadow(0 0 5px #4ccccb) drop-shadow(0 0 10px #4ccccb);
  }
  100% {
    /* Trạng thái phát sáng cực đại và rung nhẹ */
    transform: translate(-50%, -50%) scale(0.08) translate(1px, -1px);
    filter: drop-shadow(0 0 20px #4ccccb) drop-shadow(0 0 50px #4ccccb) brightness(1.2);
  }
}