
.ticker-tape {
    background: #FF1030; 
    color: #fff;
    padding: 12px 0; 
    overflow: hidden; 
    white-space: nowrap;
    border-bottom: 2px solid #050505; 
    border-top: 2px solid #050505;
}
.ticker-text {
    display: inline-block; 
    padding-left: 100%;
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    animation: marquee 20s linear infinite;
}
@keyframes marquee { 
    0% { transform: translate(0, 0); } 
    100% { transform: translate(-100%, 0); } 
}
