/* Общие стили */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('/static/background.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}

/* Нижнее меню */
.menu {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    background: url('/static/icons/menu-background.png') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.menu-item {
    font-size: 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.menu-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 3px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.menu-item:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 1));
}

/* Шрифты */
@font-face {
    font-family: "CircleBold";
    src: url("/static/fonts/Circle-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}