/* Custom Directional Cursor (Bright Purple Theme) */
html, body {
  cursor: none !important;
}

a, button, input, select, textarea, label, [role="button"], [tabindex], .card, .btn {
  cursor: none !important;
}

.cur-base {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.cur-burst {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, rgba(0,102,204,0.45), rgba(0,184,169,0.45), rgba(192,132,252,0.45));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height, opacity;
}

.cur-directional {
  position: fixed; top: 0; left: 0;
  width: 50px; height: 54px;
  pointer-events: none; z-index: 99999;
  transform-origin: 25.4px 6.8px;
  will-change: transform;
}

.cur-arrow {
  transition: opacity 0.25s cubic-bezier(.2, .8, .2, 1), transform 0.25s cubic-bezier(.2, .8, .2, 1);
  transform-origin: 25.4px 6.8px;
  filter: drop-shadow(0 4px 6px rgba(15,42,68,0.12));
}

.cur-capsule {
  position: absolute;
  top: 6.8px; left: 25.4px;
  transform: translate(-50%, -50%) scale(0.5);
  background: rgba(192, 132, 252, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  opacity: 0;
  width: 8px;
  height: 8px;
  transition: all 0.3s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(192, 132, 252, 0.3);
}

.cur-directional.is-scrolling .cur-arrow {
  opacity: 0;
  transform: scale(0.5);
}
.cur-directional.is-scrolling .cur-capsule {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  width: 6px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,102,204,0.8), rgba(0,184,169,0.8), rgba(0,229,160,0.8), rgba(192,132,252,0.8), rgba(0,102,204,0.8));
  background-size: 100% 400%;
  animation: capsuleScrollGrad 1s linear infinite;
}

@keyframes capsuleScrollGrad {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

.cur-directional.is-text .cur-arrow {
  opacity: 0;
  transform: scale(0.5);
}
.cur-directional.is-text .cur-capsule {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  width: 3px;
  height: 28px;
  border-radius: 4px;
}

.cur-directional path.dir-fill {
  transition: fill 0.3s ease;
}

.cur-directional path.dir-grad-overlay {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cur-directional.is-clicking path.dir-grad-overlay {
  opacity: 1;
  transition: opacity 0.05s ease;
}

.cur-directional path.dir-stroke {
  transition: stroke 0.3s ease;
}

.dir-glass-backdrop {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  clip-path: path('M43.7146 40.6933L28.5431 6.34306C27.3556 3.65428 23.5772 3.69516 22.3668 6.32755L6.57226 40.6778C5.3134 43.4156 7.97238 46.298 10.803 45.2549L24.7662 40.109C25.0221 40.0147 25.2999 40.0156 25.5494 40.1082L39.4193 45.254C42.2261 46.2953 44.9254 43.4347 43.7146 40.6933Z');
}
