.social-button {
    position: fixed;
    z-index: 99999;
    right: 40px;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.589);
    border: none;
    border-radius: 0; /* Убираем скругление, так как используем clip-path */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
    /* Обрезаем кнопку в форме ромба */
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.social-button:hover {
    transform: scale(1.1); /* Масштабирование при hover */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Золотистое свечение */
}

.social-icon {
    width: 60px; /* Уменьшаем иконку, чтобы она вписалась в ромб */
    height: 60px;
    filter: brightness(100) grayscale(100) opacity(100);
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.social-button:hover .social-icon {
    transform: scale(1.1); /* Масштабирование при hover */
    filter: none;
    opacity: 1;
}

.social-button.discord {
    top: calc(65% - 75px);
}

/*.social-button.vk {
    top: 65%;
}*/

.social-button.telegram {
    top: calc(57% + 75px);
}