/* BlackHatSEOCourse.com - Telegram floating button */
#bhs-telegram-float {
    position: fixed;
    right: 20px;
    bottom: 92px;
    z-index: 10000;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #229ED9;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#bhs-telegram-float:hover,
#bhs-telegram-float:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

#bhs-telegram-float svg {
    width: 31px;
    height: 31px;
    display: block;
}

@media (max-width: 760px) {
    #bhs-telegram-float {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 82px;
    }

    #bhs-telegram-float svg {
        width: 29px;
        height: 29px;
    }
}
