header {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 5px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 30px;
    z-index: 1;
}

.menu-toggle {
    background: none;
    border: none;
    color: #FFF;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 4;
}

.menu {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    display: none;
    position: absolute;
    right: 10px;
    top: 60px;
    z-index: 1001;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0;
    padding: 0;
}

.menu a {
    color: #FFF;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color .2s;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-discord {
    align-items: center;
    color: #FFF;
    display: flex;
    margin-right: 20px;
    text-decoration: none;
    transition: color .3s ease;
}

.footer-discord:hover {
    color: #00aced;
}

.footer-discord img {
    height: 40px;
    margin-right: 10px;
    transition: transform .3s ease;
}

.footer-discord img:hover {
    transform: rotate(15deg) scale(1.2);
}

.info-image {
    height: 40px;
    margin-right: 20px;
    z-index: 2;
    transition: transform .3s ease; /* Добавлено для анимации */
}

.info-image:hover {
    transform: scale(1.6); /* Добавлено для увеличения при наведении */
}
@media (max-width: 768px) {
    .footer-discord img {
        content: url('/static/images/mobile/discord.png'); /* Замените на путь к мобильному изображению */
        height: 30px; /* Опционально: можно изменить размер для мобильных устройств */
    }
	}