
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0d1b2a;
    display: flex;
    justify-content: space-around;
    padding: 4px 2px;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
    z-index: 9999;
}

.menu-item {
    text-align: center;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.icon-wrap {
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    margin:0 auto;
    transition: all 0.3s ease;
    animation: float 2s infinite ease-in-out;
}

.icon-img, .icon-emoji {
    font-size:26px;
    width:26px;
    height:26px;
    transition: all 0.3s ease;
}

@keyframes float {
    0% {transform: translateY(0);}
    50% {transform: translateY(-3px);}
    100% {transform: translateY(0);}
}

.menu-item.active {
    color:#00ff99;
}

.menu-item.active .icon-wrap {
    background:#00ff99;
    border-radius:50%;
    transform: scale(1.3);
}

/* Hide on desktop/laptop */
@media screen and (min-width: 768px){
    .bottom-menu{
        display:none !important;
    }
}
