/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 22 2026 | 22:28:17 */
/* ============================================
   МЯГКАЯ ПУЛЬСАЦИЯ TELEGRAM-КНОПКИ
   Деликатная, не отвлекает от чтения
   ============================================ */

.tg-chat-button {
    animation: tgChatPulseSoft 3s ease-in-out infinite;
    will-change: box-shadow;
    border-radius: 50%;
}

/* Мягкая одиночная волна */
@keyframes tgChatPulseSoft {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 221, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0);
    }
}

/* Плавное увеличение при наведении */
.tg-chat-button:hover {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}