.marquee-container {
    background-color: #fff3cd;
    padding: 8px 16px;
}

.marquee-content {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: scroll-left 35s linear infinite;
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc3545;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
