body {
    cursor: none;
}
.custom-cursor {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid #c084a0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                height 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.25s ease,
                background 0.25s ease,
                opacity 0.25s ease;
    mix-blend-mode: normal;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    top: 0;
    left: 0;
    will-change: transform;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #c084a0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease,
                height 0.15s ease,
                background 0.2s ease,
                opacity 0.2s ease;
    top: 0;
    left: 0;
    will-change: transform;
}

.custom-cursor.hover {
    width: 56px;
    height: 56px;
    border-color: #c084a0;
    background: rgba(192, 132, 160, 0.12);
}

.custom-cursor.div-hover {
    width: 64px;
    height: 64px;
    border-color: #5eaaa8;
    background: rgba(94, 170, 168, 0.1);
    border-width: 1.5px;
}

.custom-cursor.text-hover {
    width: 3px;
    height: 28px;
    border-radius: 2px;
    background: #c084a0;
    border-color: transparent;
}

.custom-cursor-dot.text-hover {
    opacity: 0;
}

.custom-cursor.image-hover {
    width: 60px;
    height: 60px;
    background: rgba(192, 132, 160, 0.15);
    border-color: #c084a0;
    border-style: dashed;
}

.custom-cursor.input-hover {
    width: 2px;
    height: 24px;
    border-radius: 2px;
    background: #c084a0;
    border-color: transparent;
    animation: blink 1s step-end infinite;
}

.custom-cursor-dot.input-hover {
    opacity: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}