/* Marquee Styles */
.notice-marquee-container {
    width: 100%;
    background: #171D27;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    overflow: hidden;
    margin: 20px 0;
}

.notice-marquee-content {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

.notice-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.notice-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.notice-marquee-container .notice-main .notice-icon .speaker {
    display: block;
    width: 17.8px;
    height: 18.8px;
    background: url("ring.png") no-repeat 50%/contain;
}

.marquee_box {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.custom-marquee {
    height: 100%;
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.custom-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.notice_list {
    list-style: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 20px;
    color: #fff;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .notice-marquee-container {
        border-radius: 6px;
        margin: 15px 0;
    }

    .notice-marquee-content {
        height: 50px;
    }

    .notice-icon {
        width: 50px;
        height: 50px;
    }
}
