/* Modern Ticker Design */
.breaking-news-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /*background: linear-gradient(90deg, #d10000 0%, #a00000 100%);*/
    background: #01652b;
    color: white;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    font-family: 'SolaimanLipi', 'Noto Sans Bengali', Arial, sans-serif;
    height: 31px;
    align-items: center;
}

.ticker-header {
    background: rgba(0,0,0,0.15);
    padding: 0 20px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.ticker-header i {
    margin-right: 10px;
    color: #ffcc00;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.ticker-content ul {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding-left: 100%;
    animation: ticker-scroll 80s linear infinite;
}

.ticker-content li {
    display: flex;
    align-items: center;
    padding: 0 30px;
    white-space: nowrap;
}

.ticker-bullet {
    color: rgba(255,255,255,0.6);
    margin-right: 12px;
    font-size: 20px;
}

.ticker-time {
    background: rgba(0,0,0,0.2);
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 15px;
    font-size: 13px;
    font-family: Arial;
}

.ticker-content a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.ticker-content a:hover {
    color: #ffcc00;
}

.no-news {
    padding: 0 20px;
    font-style: italic;
    color: rgba(255,255,255,0.7);
}

/* Slower scrolling speed */
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breaking-news-ticker {
        height: auto;
        flex-direction: column;
    }
    
    .ticker-header {
        width: 100%;
        
        justify-content: center;
    }
    
    .ticker-content {
        height: 40px;
    }
    
    .ticker-content li {
        padding: 0 15px;
    }
    
    .ticker-time {
        display: none;
    }
}

@media (max-width: 480px) {
    .ticker-bullet {
        display: none;
    }
    
    .ticker-content ul {
        animation-duration: 120s;
    }
}