.msc-menu-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    width: 100%;
    padding: 5px 0;
    align-items: center;
    scroll-behavior: smooth;
}
.msc-menu-container::-webkit-scrollbar {
    display: none;
}
.msc-menu-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.3s ease;
    position: relative;
    margin: 0 5px;
    gap: 4px;
}
.msc-menu-item:active {
    transform: scale(0.95);
}
.msc-menu-item .msc-title {
    white-space: nowrap;
    line-height: 1;
    font-weight: 500;
}
.msc-menu-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #e74c3c;
    color: #ffffff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
    line-height: 1;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: msc-pulse 2s infinite;
}
@keyframes msc-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}