    /* ================================
   Telegram Join Floating Button
================================ */
.tg-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0088cc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,136,204,0.5);
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.tg-floating-btn:hover {
    transform: scale(1.1);
}