/* ═══════════════════════════════════════════════════════
   ctmy.css — CTMY.FUN 共享样式
   被 index.html、go.html、404.html 共同引用
   目前包含：自定义光标变量、洒花特效样式
   ═══════════════════════════════════════════════════════ */

/* ── 自定义光标 ── */
:root {
    --cursor-default: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' style='font-size:24px'><text y='24'>🍭</text></svg>"), auto;
    --cursor-pointer: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' style='font-size:24px'><text y='24'>🍡</text></svg>"), pointer;
}

/* ── 洒花特效 ── */
.confetti-emoji {
    position: fixed;
    pointer-events: none;
    user-select: none;
    z-index: 999;
    font-size: 25px;
    animation: ctmy-fall 1s ease-out forwards;
}
@keyframes ctmy-fall {
    0%   { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0.5) rotate(var(--tr)); opacity: 0; }
}
