
.market-ticker {
    display: flex;
    align-items: center;
    overflow: hidden;

   background: rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;

    height: 44px;
    margin: 12px 0 18px;
    padding: 0 20px;
}

.market-ticker-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    width: max-content;
    flex-shrink: 0;

    animation: tickerMove 90s linear infinite;
}

.market-news-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;

    padding: 6px 12px;
    border-radius: 999px;

   background: rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(255,255,255,0.08);

    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
}

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

@media (max-width: 767px) {
    .market-ticker {
        height: 40px;
        border-radius: 12px;
    }

    .market-ticker-label {
        padding: 0 10px;
        font-size: 11px;
    }

    .market-news-item {
        font-size: 11px;
        padding: 5px 9px;
    }

    .market-ticker-track {
        animation-duration: 70s;
    }
}