.bottom-menu-improved {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2D1B69 0%, #8500cc 100%);
    padding: 8px 0 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.menu-improved {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.menu-item-improved {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 8px 4px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 60px;
}

.menu-item-improved:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.menu-item-improved.active {
    background: rgba(255, 255, 255, 0.15);
}


.menu-icon {
    font-size: 20px;
    margin-bottom: 4px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.menu-label {
    font-size: 10px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}