/* ========================================================
   MOTEUR D'EFFETS SPÉCIAUX POUR LES CADEAUX KIKOOTCHAT
   ======================================================== */

/* Effet secousse sur la webcam (Cadeaux Bombe, Marteau) */
.fx-shake {
    animation: kktShake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* Filtre de Glace (Cadeau Iceberg) appliqué sur la vidéo */
.fx-ice {
    filter: blur(1px) hue-rotate(180deg) saturate(1.8) !important;
    background: rgba(0, 180, 216, 0.2) !important;
    mix-blend-mode: color-dodge;
    pointer-events: none;
}

/* Filtre Flash Disco / Club */
.fx-disco {
    animation: kktDisco 0.4s infinite alternate;
    pointer-events: none;
}

/* Les animations de mouvements */
@keyframes kktShake {
    10%, 90% { transform: translate3d(-2px, 0, 0); }
    20%, 80% { transform: translate3d(3px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-6px, 0, 0); }
    40%, 60% { transform: translate3d(6px, 0, 0); }
}

@keyframes kktDisco {
    0% { background: rgba(255, 0, 128, 0.3); filter: hue-rotate(0deg); }
    100% { background: rgba(0, 255, 255, 0.3); filter: hue-rotate(360deg); }
}
