.fm-wrap {
    position: relative;
    width: 60%;
    /* Reduced width */
    margin: 5vh auto;
    /* Centered and reduced margin */
    z-index: 10;
}

.fm-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fm-item {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-link {
    display: block;
    position: relative;
    padding: 1.2rem 2.4vw;
    /* Reduced by 60% */
    font-size: 2vw;
    /* Reduced by 60% */
    line-height: 1;
    font-family: 'Integral CF', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 1;
}

.fm-link:hover {
    color: transparent;
}

.fm-marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    background: #0f0f0f;
    transform: translate3d(0, 101%, 0);
}

.fm-marquee-wrap {
    width: 100%;
    height: 100%;
    transform: translate3d(0, -101%, 0);
}

.fm-marquee-inner {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    animation: fm-scroll 15s linear infinite;
    will-change: transform;
}

@keyframes fm-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.fm-content-item {
    display: flex;
    align-items: center;
    padding: 0 0.8vw;
    /* Reduced */
    white-space: nowrap;
}

.fm-marquee span {
    font-size: 2vw;
    /* Reduced */
    font-family: 'Integral CF', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

.fm-img {
    width: 4.8vw;
    /* Reduced */
    height: 3.2vw;
    /* Reduced */
    margin: 0 1.2vw;
    /* Reduced */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    border-radius: 4px;
    /* Reduced */
}

/* Responsive */
@media screen and (max-width: 768px) {
    .fm-wrap {
        width: 90%;
    }

    .fm-link {
        font-size: 1.5rem;
        /* Reduced */
        padding: 1rem 1rem;
    }

    .fm-marquee span {
        font-size: 1.5rem;
        /* Reduced */
    }

    .fm-img {
        width: 40px;
        /* Reduced for mobile */
        height: 24px;
        /* Reduced for mobile */
        border-radius: 4px;
        /* Rectangular with slight round */
        background-color: #000;
        background-size: contain;
        /* Ensure image fits within bounds */
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
    }
}