.marquee {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    padding: 0;

    mix-blend-mode: difference;
}

.marquee::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #02024f;
    mix-blend-mode: multiply;
    z-index: -1;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marquee 90s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    white-space: nowrap;
    color: #fff;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
