.sifency-modern-cursor {
    --sf-cursor-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sifency-cursor-dot,
.sifency-cursor-follower {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    will-change: transform;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-radius 0.3s, transform 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sifency-modern-cursor.is-clicking .sifency-cursor-dot {
    transform: translate(-50%, -50%) scale(0.5) !important;
}

.sifency-modern-cursor.is-clicking .sifency-cursor-follower {
    transform: translate(-50%, -50%) scale(0.8) !important;
    background-color: var(--sf-cursor-color) !important;
    opacity: 0.5;
}

/* =========================================
   TYPES: IMAGE, ICON, TEXT 
========================================= */

/* TYPE: IMAGE */
.type-image .sifency-cursor-follower {
    display: none;
}

.type-image .sifency-cursor-dot {
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
}

.type-image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s;
}

.type-image.is-hovering img {
    transform: scale(1.3) rotate(15deg);
}

/* TYPE: ICON */
.type-icon .sifency-cursor-follower {
    display: none;
}

.type-icon .sifency-cursor-dot {
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
}

.type-icon i,
.type-icon svg {
    width: 30px;
    height: 30px;
    color: var(--sf-cursor-color);
    fill: var(--sf-cursor-color);
    transition: transform 0.3s;
}

.type-icon.is-hovering i,
.type-icon.is-hovering svg {
    transform: scale(1.5);
}

/* TYPE: TEXT */
.type-text .sifency-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--sf-cursor-color);
    border-radius: 50%;
}

.type-text .cursor-text {
    position: absolute;
    left: 15px;
    top: 15px;
    letter-spacing: 1px;
    background: var(--sf-cursor-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.type-text.is-hovering .cursor-text {
    transform: scale(1.1);
}

/* =========================================
   STYLES 1-10 (Standard Lerp) 
========================================= */
.style-classic .sifency-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--sf-cursor-color);
    border-radius: 50%;
}

.style-classic .sifency-cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid var(--sf-cursor-color);
    border-radius: 50%;
}

.style-classic.is-hovering .sifency-cursor-follower {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
}

.style-difference {
    mix-blend-mode: difference;
}

.style-difference .sifency-cursor-dot {
    display: none;
}

.style-difference .sifency-cursor-follower {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
}

.style-difference.is-hovering .sifency-cursor-follower {
    width: 60px;
    height: 60px;
}

.style-glass .sifency-cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.style-glass.is-hovering .sifency-cursor-follower {
    width: 60px;
    height: 60px;
    background: var(--sf-cursor-color);
}

.style-neon .sifency-cursor-dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}

.style-neon .sifency-cursor-follower {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--sf-cursor-color);
    box-shadow: 0 0 10px var(--sf-cursor-color), inset 0 0 10px var(--sf-cursor-color);
}

.style-blob .sifency-cursor-follower {
    width: 40px;
    height: 40px;
    background: var(--sf-cursor-color);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobShape 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes blobShape {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.style-outline .sifency-cursor-follower {
    width: 30px;
    height: 30px;
    border: 4px solid var(--sf-cursor-color);
    border-radius: 50%;
}

.style-outline.is-hovering .sifency-cursor-follower {
    background: var(--sf-cursor-color);
}

.style-spotlight .sifency-cursor-follower {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--sf-cursor-color) 0%, transparent 60%);
    opacity: 0.15;
    border-radius: 50%;
}

.style-square .sifency-cursor-follower {
    width: 20px;
    height: 20px;
    border: 2px solid var(--sf-cursor-color);
    transition: transform 0.3s, border-radius 0.3s;
}

.style-square.is-hovering .sifency-cursor-follower {
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 50%;
}

.style-brutal .sifency-cursor-follower {
    width: 30px;
    height: 30px;
    background: var(--sf-cursor-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: spinSlow 5s linear infinite;
}

@keyframes spinSlow {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.style-shadow .sifency-cursor-follower {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
}

/* ============================================================
   STYLE 11: INJECTED SCRIPT ENGINE
============================================================ */
[data-cursor] {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    will-change: transform;
}

[data-cursor="0"] {
    width: 8px;
    height: 8px;
    background: var(--sf-cursor-color);
    border-radius: 50%;
    transition: transform 0.05s linear;
}

[data-cursor="1"] {
    width: 36px;
    height: 36px;
    border: 2px solid var(--sf-cursor-color);
    border-radius: 50%;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

body[class*="cursor-hover--"] [data-cursor="1"] {
    width: 60px;
    height: 60px;
    background-color: var(--sf-cursor-color);
    opacity: 0.15;
    border-color: transparent;
}