/* 原版白色手指与点击圆环；只控制动画，不触发目标的点击事件。 */
.app-hand-cue{--hand-size:40px;--hand-duration:1.55s;--hand-delay:0s;--hand-angle:-34deg;--hand-color:#6cf3ff;position:relative;display:block;width:var(--hand-size);height:var(--hand-size);transform:rotate(var(--hand-angle));transform-origin:50% 50%;pointer-events:none;user-select:none;overflow:visible;}
.app-hand-cue .app-hand-glyph{position:relative;z-index:2;display:block;width:100%;height:100%;filter:grayscale(1) brightness(1.2) contrast(1.04);text-shadow:0 1px 1px rgba(0,0,0,.7);transform-origin:50% 12%;font-family:"Segoe UI Emoji","Apple Color Emoji",sans-serif!important;font-size:var(--hand-size)!important;font-weight:400!important;font-style:normal!important;line-height:1!important;animation:reference-hand-tap var(--hand-duration) cubic-bezier(.22,1,.36,1) var(--hand-delay) infinite;}
.app-hand-cue .app-hand-ripple{position:absolute;z-index:1;left:49%;top:4px;width:12px;height:12px;border:1px solid var(--hand-color);border-radius:50%;text-decoration:none;opacity:0;animation:reference-hand-ripple var(--hand-duration) ease-out var(--hand-delay) infinite;}
.app-hand-cue.is-paused :is(.app-hand-glyph,.app-hand-ripple){animation-play-state:paused;}
.app-hand-cue[hidden]{display:none!important;}
@keyframes reference-hand-tap{0%,34%,100%{transform:translateY(3px) scale(1);}46%{transform:translateY(-1px) scale(.93);}58%{transform:translateY(2px) scale(1.03);}}
@keyframes reference-hand-ripple{0%,40%,100%{opacity:0;transform:translate(-50%,-50%) scale(.35);}48%{opacity:.9;}72%{opacity:0;transform:translate(-50%,-50%) scale(1.9);}}
@media(prefers-reduced-motion:reduce){.app-hand-cue :is(.app-hand-glyph,.app-hand-ripple){animation:none!important;}.app-hand-cue .app-hand-glyph{transform:translateY(2px);}.app-hand-cue .app-hand-ripple{opacity:.7;transform:translate(-50%,-50%);}}
