.telegram-join-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
}

.telegram-join-button a img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.telegram-join-button a:hover img {
    transform: scale(1.1);
}

.telegram-join-button a::after {
    content: "Join Telegram";
    position: absolute;
    right: 60px;
    bottom: 14px;
    background: #0088cc;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.telegram-join-button a:hover::after {
    opacity: 1;
}
