/* COMMUNITY BUTTON */

.community-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;

    width: 70px;
    height: 70px;

    background: linear-gradient(135deg, #008CFF, #4FC3FF);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0,140,255,0.6);

    transition: all 0.3s ease;
}

.community-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,140,255,0.9);
}

.community-icon {
    width: 40px;
    height: 40px;
}
