.target-cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 999999;
}

.target-cursor-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary, #ec4899);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease;
}

.target-cursor-corner {
    display: none;
}

.corner-tl,
.corner-tr,
.corner-br,
.corner-bl {
    display: none;
}
