.news-ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #333;
    padding: 8px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.news-ticker {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}

.news-ticker-content {
    display: inline-block;
    animation: ticker 150s linear infinite;
    padding-right: 50px;
}

.news-ticker-item {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.news-ticker-item:not(:last-child)::after {
    content: " | ";
    color: rgba(255, 255, 255, 0.5);
    margin: 0 15px;
}

.news-ticker-item:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}