/* 🧵 Stitch Container */
.stitch-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    z-index: 5;
    pointer-events: none;
}

#stitch {
    width: 100px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

#stitch.peek {
    transform: translateY(-20px);
    opacity: 1;
    animation: stitchWave 1.2s ease-in-out infinite alternate;
}

@keyframes stitchWave {
    0% { transform: translateY(-20px) rotate(-3deg); }
    100% { transform: translateY(-10px) rotate(3deg); }
}

/* 🌟 Cursor */
#glow-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: rgba(0,174,255,0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 8px rgba(0,174,255,0.8), 0 0 20px rgba(0,174,255,0.5);
    transition: transform 0.05s ease-out;
}

/* 🌠 Spark particles */
.spark {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0,174,255,0.7);
    box-shadow: 0 0 8px rgba(0,174,255,0.6);
    z-index: 9998;
    will-change: transform, opacity;
}
