* {
    cursor: none !important;
}

#cur-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #F4001A;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s, width 0.2s, height 0.2s, background 0.2s;
}

#cur-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid #000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}

body.hovering #cur-dot {
    width: 12px;
    height: 12px;
    background: #1a1510;
}

body.hovering #cur-ring {
    width: 46px;
    height: 46px;
    opacity: 0.3;
}

.sparkle-star {
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transform-origin: center;
    opacity: 0;
    animation: star-life 0.7s ease-out forwards;
}

@keyframes star-life {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(20deg);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2) rotate(60deg) translateY(-12px);
    }
}

.click-ripple {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #F4001A;
    pointer-events: none;
    z-index: 99996;
    transform: translate(-50%, -50%) scale(1);
    animation: ripple 0.6s ease-out forwards;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(14);
        opacity: 0;
    }
}