.notice-marquee-container {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(135deg, #9B5432 0%, #8A4A2C 50%, #7A4025 100%);
    border-radius: 25px;
    box-shadow: 
        0 6px 25px rgba(155, 84, 50, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: #fff;
    font-family: Arial, sans-serif;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 1200px;
}

.notice-marquee-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.notice-main {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.notice-label {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 2px solid rgba(255, 215, 0, 0.4);
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.icon-speaker {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #9B5432;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.notice-label span:not(.icon-speaker) {
    color: #FFD700;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.marquee_box {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.custom-marquee {
    height: 100%;
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.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;
    margin: 0;
    padding: 0;
    gap: 80px;
}

.notice_list li {
    font-size: 16px;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.highlight-green {
    color: #00FF00;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
}

.highlight-blue {
    color: #3366EE;
    font-weight: bold;
}

.notice-action-icon {
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid rgba(255, 215, 0, 0.4);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notice-action-icon:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.icon-download-app {
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, #FFD700, #B8941F);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #9B5432;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.notice-action-icon:hover .icon-download-app {
    background: linear-gradient(45deg, #FFED4E, #D4AF37);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    transform: rotate(5deg);
}

@media (max-width: 768px) {
    .notice-main {
        height: 50px;
    }
    
    .notice-label {
        padding: 0 12px;
    }
    
    .icon-speaker {
        width: 28px;
        height: 28px;
        margin-right: 8px;
        font-size: 14px;
    }
    
    .notice-label span:not(.icon-speaker) {
        font-size: 14px;
    }
    
    .notice-action-icon {
        width: 60px;
    }
    
    .icon-download-app {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .notice_list li {
        font-size: 14px;
    }
    
    .notice_list {
        gap: 60px;
    }
    
    .custom-marquee {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .notice-marquee-container {
        border-radius: 20px;
    }
    
    .notice-label {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        padding: 0 10px;
    }
    
    .notice-action-icon {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        width: 50px;
    }
    
    .notice_list li {
        font-size: 13px;
    }
    
    .notice_list {
        gap: 40px;
    }
}