/* Стиль для кнопки */
.button-dust-effect {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-dust-effect:hover {
    background-color: #2980b9;
}

/* Стиль для пыли */
.dust-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;  /* Размер частицы, как пиксель */
    height: 3px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: dust-animation 1s forwards;
}

/* Анимация разлета пыли */
@keyframes dust-animation {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1) translateX(0) translateY(0); /* Перемещение частиц */
    }
}
