.bn-breaking-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #b30000;
    color: #fff;
    padding: 8px 16px;
    overflow: hidden;
    position: relative;
}

.bn-badge {
    flex-shrink: 0;
    background: #fff;
    color: #b30000;
    font-weight: 700;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bn-ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 24px;
}

.bn-ticker-content {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    position: absolute;
    animation: bn-scroll 30s linear infinite;
}

.bn-ticker-content:hover,
.bn-breaking-bar.paused .bn-ticker-content {
    animation-play-state: paused;
}

.bn-ticker-content a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.bn-ticker-content a:hover {
    text-decoration: underline;
}

@keyframes bn-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bn-ticker-pause {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.8;
}

.bn-ticker-pause:hover { opacity: 1; }

@media (max-width: 600px) {
    .bn-breaking-bar { padding: 6px 10px; gap: 8px; }
    .bn-badge { font-size: 11px; padding: 2px 8px; }
    .bn-ticker-content a { font-size: 13px; }
}

/* ===== Style: Flash (ফেড হয়ে একটা একটা করে বদলায়) ===== */
.bn-breaking-style-flash .bn-ticker-content {
    position: static;
    animation: none;
    display: block;
    white-space: normal;
    transition: opacity 0.2s ease;
}

.bn-breaking-style-flash .bn-ticker-content a {
    font-size: 15px;
    font-weight: 600;
}

/* ===== Style: Static List (স্ক্রল ছাড়া পাশাপাশি কয়েকটা) ===== */
.bn-breaking-style-static .bn-ticker-content {
    position: static;
    animation: none;
    display: flex;
    gap: 10px;
    align-items: center;
    white-space: normal;
    flex-wrap: wrap;
}

.bn-static-sep {
    color: rgba(255,255,255,0.5);
}
