.nav-market-status-li {
    list-style: none;
    padding: 0;
    margin-left: 14px;
    align-self: center;
    margin-top: 8px;
}

.nav-market-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 8px;
    background: rgba(61,214,176,.07);
    border: 1px solid rgba(61,214,176,.25);
    cursor: default;
    user-select: none;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav-market-status:hover {
    background: rgba(61,214,176,.13);
    border-color: rgba(61,214,176,.45);
    box-shadow: 0 0 12px rgba(61,214,176,.15);
}

.status-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1c8c5c;
    box-shadow: 0 0 0 0 var(--color-pulse,rgba(21,89,69,.5));
    flex-shrink: 0;
    animation: statusPulse 2.4s ease-in-out infinite;
}

@keyframes statusPulse {
    0%   { box-shadow: 0 0 0 0 var(--color-pulse,rgba(21,89,69,.5)); }
    60%  { box-shadow: 0 0 0 5px rgba(21,89,69,0); }
    100% { box-shadow: 0 0 0 0 rgba(21,89,69,0); }
}

.status-text-wrapper {
    position: relative;
    height: 20px;
    min-width: 310px;
    overflow: hidden;
}

.status-text {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #2a3a33;
    line-height: 20px;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.status-text.current {
    transform: translateY(0);
    opacity: 1;
}

.status-text.next {
    transform: translateY(100%);
    opacity: 0;
}

@media (max-width: 1024px) {
    .nav-market-status-li {
        display: none !important;
    }
}
