/* Mouse Follow Effect */
.cursor-follow {
  position: fixed;
  width: 12px;
  height: 12px;
  background-color: #ffeb56;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.05s ease-out;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.cursor-follow.active {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Hide default cursor on interactive elements */
body {
  cursor: none;
}

a, button, .clickable {
  text-decoration: none;
}

/* Show default cursor on form inputs */
input, textarea, select {
  cursor: text !important;
}

/* Responsive: Hide on mobile devices */
@media (max-width: 768px) {
  .cursor-follow {
    display: none;
  }
  
  body, a, button, .clickable {
    cursor: auto !important;
  }
}