.marquee-container {
    display: none;
    background: #d8d8d8a1;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    align-items: center;
    padding: 4px 0;
    z-index: 200;
    position: absolute;
    top: 0;
    left: 0;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: slide 60s linear infinite;
}

.marquee-content .lottery-block {
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    color: #070707;
    white-space: nowrap;
}

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