/* Стилизация для сообщения */
#rotate-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    z-index: 9999;
    text-align: center;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

/* Когда сообщение показывается */
#rotate-message.show {
    opacity: 1;
}