.mouse-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2147483646;
}

.mouse-fx-dot,
.mouse-fx-ring,
.mouse-fx-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.mouse-fx-dot {
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  border-radius: 999px;
  background: #ff2a2a;
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.85);
}

.mouse-fx-ring {
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 42, 42, 0.72);
  box-shadow: 0 0 20px rgba(255, 42, 42, 0.2);
}

.mouse-fx-trail {
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 999px;
  background: rgba(255, 45, 45, 0.9);
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.45);
}

@media (pointer: fine) {
  body {
    cursor: none;
  }
}

@media (pointer: coarse), (hover: none) {
  .mouse-fx {
    display: none !important;
  }
}
