/* blessing-effect.css */
body {
    cursor: url('https://psstatic.cdn.bcebos.com/aife/fudai_1770654429000.svg'), auto;
}

a, button, input, textarea, select, span, 
.wp-element-button, .wp-block-button__link,
.menu-item a, .nav-link, .page-numbers {
    cursor: url('https://psstatic.cdn.bcebos.com/aife/pointer_1770654371000.svg'), pointer;
}

.blessing-wish {
    position: fixed;
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    pointer-events: none;
    animation: blessingFadeOut 1.8s forwards;
    text-shadow: 0 0 8px rgba(0,0,0,0.5);
    z-index: 10000;
    user-select: none;
    white-space: nowrap;
}

@keyframes blessingFadeOut {
    0% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translateY(-60px) scale(1.2);
    }
}
