.news-ticker-bar {
    position: relative;
    z-index: 1055;
    width: 100%;
    background: linear-gradient(90deg, #06101f 0%, #0a1a33 50%, #06101f 100%);
    border-bottom: 1px solid rgba(0, 255, 212, 0.14);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.news-ticker-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.news-ticker-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00bcd4, #00ffd4);
    color: #03111d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-ticker-content {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.news-ticker-text {
    display: inline-block;
    color: #dce9ff;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.news-ticker-text.is-changing {
    opacity: 0;
    transform: translateY(-8px);
}

@media (max-width: 768px) {
    .news-ticker-inner {
        min-height: 38px;
        gap: 10px;
        padding: 7px 0;
    }

    .news-ticker-label {
        min-width: 60px;
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    .news-ticker-text {
        font-size: 0.88rem;
    }
}
