.banner {
    background: linear-gradient(to left,#840012, #ff0000, #840012);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 30px;
}

.text {
    color: #000000;
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.circle {
    width: 10px;
    height: 10px;
    background-color: #000000;
    border-radius: 50%;
    margin: 15px;
}

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

.controls {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

button {
    padding: 8px 16px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555;
}

.info {
    margin-top: 20px;
    text-align: center;
    color: #666;
    max-width: 600px;
}