/* second line mini info + speed variation for fun (extra dynamic) */

.bottom-ticker {
    background: var(--secondary_color);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    position: relative;

}
.marquee-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: scrollLeft 22s linear infinite;
}

.bottom-ticker:hover .marquee-content {
    animation-play-state: paused;
}
.small-marquee {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.small-text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--secondary_color);
    padding: 0 5px;
    border-radius: 40px;
    color: var(--white_color);
    letter-spacing: 2px;
    position: relative;
}
.small-text:not(:last-child)::before{
    content: "—";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white_color);
    font-size: 10px;
    right: -15px;
}
/* dynamic keyframes - continuous rotation effect (scrolling) */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}