/* Основний контейнер кнопки */
.telegram-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px; /* Збільшуємо ширину контейнера */
    height: 100px; /* Збільшуємо висоту контейнера */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
}

/* SVG з текстом */
.circle-text {
    position: absolute;
    width: 130px;
    height: 130px;
    pointer-events: none;
    animation: spin 10s linear infinite;
    overflow: visible;
}

/* Стиль для тексту */
.circle-text text {
    font-size: 22px;
    font-weight: bold;
    fill: rgb(255 121 178);
}

/* Пульсуюче коло для логотипа */
.pulse-circle {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #0088cc;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

/* Логотип Telegram */
.pulse-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Анімація для обертання всього SVG */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Анімація для пульсуючого кола */
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
