/* NOUVEAU: Effet de splash au clic */
.sand-splash {
position: fixed;
width: 100px;
height: 100px;
pointer-events: none;
background: radial-gradient(circle, rgba(255,206,132,0.6) 0%, rgba(255,206,132,0) 70%);
border-radius: 50%;
z-index: 4;
animation: sand-splash 0.8s ease-out forwards;
}
@keyframes sand-splash {
0% {
transform: scale(0.2);
opacity: 0.8;
}
100% {
transform: scale(1.5);
opacity: 0;
}
}