.news-ticker {
    background-color: #f8e5ff;
    border-bottom: 2px solid #d44aff;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #5a189a;
    position: relative;
    z-index: 1000;
}
.news-ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 55s linear infinite;
}
@keyframes ticker {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
