.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 4px rgba(255, 204, 0, 0.6);
    background: linear-gradient(to bottom, #0a0a0a, #0a0a0a 90%, #ffcc00);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 10s linear infinite;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.glow {
    text-shadow: 0 0 8px #ffcc00, 0 0 15px #ffcc00, 0 0 20px #ffcc00, 0 0 30px rgba(255, 204, 0, 0.6);
}