.ecind-bar {
    width: 100%;
    background: #101820;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 999;
    position: relative;
}

.ecind-inner {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
}

.ecind-label {
    flex: 0 0 auto;
    padding: 0 18px;
    height: 42px;
    display: flex;
    align-items: center;
    background: #f5b301;
    color: #101820;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 12px;
}

.ecind-ticker {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.ecind-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: ecindTicker 120s linear infinite;
    will-change: transform;
    min-width: max-content;
}

.ecind-bar:hover .ecind-track {
    animation-play-state: paused;
}

.ecind-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 34px;
    min-height: 42px;
    border-right: 1px solid rgba(255,255,255,.10);
}

.ecind-item strong {
    color: #ffffff;
    font-weight: 700;
}

.ecind-item span {
    color: #f5b301;
    font-weight: 800;
}

.ecind-item em {
    font-style: normal;
    font-size: 12px;
    opacity: .86;
    color: #cfd8dc;
}

.ecind-up em {
    color: #36d399;
}

.ecind-down em {
    color: #ff6b6b;
}

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

@media (max-width: 768px) {
    .ecind-inner {
        min-height: 38px;
    }

    .ecind-label {
        height: 38px;
        padding: 0 12px;
        font-size: 11px;
    }

    .ecind-item {
        min-height: 38px;
        padding: 0 16px;
        font-size: 13px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .ecind-track {
        animation: none;
        transform: none;
    }
}
