.dw-ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #0c1b2a;
    color: #00ffcc;
    padding: 10px 0;
    font-weight: 600;
    font-size: 14px;
}

.dw-ticker-move {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: tickerMove 25s linear infinite;
}

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