/* Стили для красивой кнопки Telegram */
.telegram-button {
    position: relative;
    transition: all 0.4s ease;
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.telegram-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Эффект "блеска" при наведении */
.telegram-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.8s;
    z-index: -1;
}

.telegram-button:hover::after {
    left: 120%;
}

/* Анимация иконки */
.telegram-icon {
    transition: transform 0.3s ease;
}

.telegram-button:hover .telegram-icon {
    transform: translateX(5px);
}