/* Smooth Scroll */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

#wheelCanvas {
    /* Muter selama 5 detik dengan perlambatan gradual */
    transition: transform 5s cubic-bezier(0.2, 0, 0.1, 1);
    transform-origin: center;
}

.wheel-outer {
    background: white;
    box-shadow: 0 0 0 8px rgba(255,255,255,0.5);
}

/* Modal/Pop up animation */
@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}