/* 酷咔音乐鼠标kkmp3.com全局隐藏原生鼠标 动态鼠标样式 提供 */
* { 
  cursor: none !important; 
}

#custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  background-image: url('https://kkmp3.com/upload/kk1.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-10%, -10%);
  will-change: transform;
  animation: float 0.7s infinite alternate ease-out;
  transition: transform 0.05s ease;
}

@keyframes float {
  0% { transform: translate(-10%, -10%) scale(1); }
  100% { transform: translate(-10%, -12%) scale(1.02); }
}

/* 手机端隐藏自定义鼠标（只在手机生效） */
@media (max-width: 768px) {
  #custom-cursor {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  html, body {
    cursor: default !important;
  }
}
