.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue-glow);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  transition: width 0.2s, height 0.2s;
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}
