/* Custom cursor base */
#custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  line-height: 40px;
  text-align: center;
  font-family: sans-serif;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  transition: transform 0.2s ease, background 0.3s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

/* When hovering interactive target */
#custom-cursor.hovered {
  width: 80px;
  height: 80px;
  background: rgba(0, 123, 255, 0.8);
  line-height: 80px;
}

/* Interactive elements */
.magnet-target {
  display: inline-block;
  position: relative;
  transition: transform 0.2s ease;
  z-index: 1;
}