/* Marquee Replacement */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #222a35;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.running-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-animation 20s linear infinite;
    color: #ffcc00;
    font-weight: Anime Crunchy;
    font-size: 16px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Hover effects for text if needed */
.running-text:hover {
    animation-play-state: paused;
}