* {
  cursor: none !important;
}

body {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 32px;
  height: 32px;
  border-color: #48f8ff;
  box-shadow: 0 0 10px #48f8ff;
}

.custom-cursor.hover-magnetic {
  width: 40px;
  height: 40px;
  border-color: #ff48f8;
  box-shadow: 0 0 20px #ff48f8;
  animation: pulse 1s ease-in-out infinite;
}

.custom-cursor.hover-text {
  width: 28px;
  height: 28px;
  border-color: #48ff8f;
  border-width: 3px;
}

.custom-cursor.hover-image {
  width: 50px;
  height: 50px;
  border-color: #fff;
  border-style: dashed;
  animation: rotate 2s linear infinite;
}

.custom-cursor.hover-button {
  width: 36px;
  height: 36px;
  border-color: #ffd700;
  box-shadow: 0 0 15px #ffd700;
}

.cursor-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: background 0.3s ease;
}

.cursor-trail.trail-magnetic {
  background: #ff48f8;
  width: 8px;
  height: 8px;
}

.cursor-trail.trail-bright {
  background: #48f8ff;
  box-shadow: 0 0 5px #48f8ff;
}

.cursor-ripple {
  position: fixed;
  border: 2px solid #48f8ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  animation: ripple-animation 0.3s ease-out forwards;
}

.cursor-ripple.ripple-magnetic {
  border-color: #ff48f8;
  box-shadow: 0 0 10px #ff48f8;
}

.cursor-text-label {
  position: fixed;
  background: rgba(72, 248, 255, 0.9);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.cursor-text-label.show {
  opacity: 1;
}

@keyframes ripple-animation {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.cursor-hover-scale {
  transition: transform 0.3s ease;
}

.cursor-hover-scale:hover {
  transform: scale(1.05);
}
