/* A compact macOS-style pointer: crisp white contour, black center, soft lift. */
.demo-cursor {
  width: 17px;
  height: 23px;
  background: #fbfbfd;
  clip-path: polygon(0 0, 0 100%, 29% 74%, 46% 100%, 61% 91%, 44% 66%, 78% 66%);
  filter:
    drop-shadow(0 0 1.35px rgba(255, 255, 255, 0.96))
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.52));
}

.demo-cursor::after {
  position: absolute;
  inset: 1.15px;
  background: #050609;
  clip-path: inherit;
  content: "";
}
