
.scc-confetti{
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    pointer-events: none;
    z-index: 999999;
    background: linear-gradient(45deg,#9c0b43,#d63384,#ffcc70);
    animation: scc-burst 1.6s ease-out forwards;
}

@keyframes scc-burst{
    0%{
        transform: translate(0,0) scale(1);
        opacity:1;
    }
    100%{
        transform: translate(var(--dx), var(--dy)) rotate(720deg) scale(0.2);
        opacity:0;
    }
}

.scc-message{
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: linear-gradient(135deg,#9c0b43,#c2185b);
    color:#fff;
    padding:14px 20px;
    border-radius:18px;
    font-size:16px;
    font-weight:bold;
    z-index:999999;
    box-shadow:0 8px 25px rgba(156,11,67,.35);
    opacity:0;
    transform:translateY(20px);
    transition:all .35s ease;
    direction:rtl;
}

.scc-message.show{
    opacity:1;
    transform:translateY(0);
}
