/* Кнопка "Наверх" */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(139, 0, 0, 0.7); /* #8B0000 с прозрачностью 70% */
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#back-to-top.show {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-to-top:hover {
    background-color: rgba(139, 0, 0, 0.9); /* Увеличиваем непрозрачность при наведении */
}

#back-to-top i {
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}