.notice-marquee-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    background: #5a001a;
    border-radius: 50px;
    overflow: hidden;
    color: #fff;
    font-family: Arial, sans-serif;
    border: 1px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.notice-main {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
}

.notice-label {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.icon-bell {
    font-size: 22px;
    color: #FFD700;
    animation: bell-ring 2.5s infinite ease-in-out;
}

.notice-label span:not(.icon-bell) {
    display: none;
}

.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(50%); }
    100% { transform: translateX(-100%); }
}

.notice_list {
    list-style: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.notice_list li {
    padding: 0 40px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.notice_list li strong {
    color: #FFD700;
}

.notice-action-icon {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.notice-action-icon:hover {
    opacity: 0.8;
}

.action-icon-img {
    font-size: 18px;
    color: #FFD700;
}

.action-text {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.glow-text {
    color: #FFEB3B;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 235, 59, 0.7);
}

@keyframes bell-ring {
    0%, 10%, 100% { transform: rotate(0); }
    2% { transform: rotate(15deg); }
    4% { transform: rotate(-15deg); }
    6% { transform: rotate(10deg); }
    8% { transform: rotate(-10deg); }
}

@media (max-width: 768px) {
    .notice-marquee-container {
        max-width: 95%;
    }
    .notice_list li {
        padding: 0 25px;
        font-size: 13px;
    }
    .notice-label, .notice-action-icon {
        padding: 0 15px;
    }
}