.notice-marquee-container {
    width: 100%;
    background: #3D0014;
    backdrop-filter: blur(5px);
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), inset 0 0 5px rgba(0,0,0,0.5);
    overflow: hidden;
    color: #fff;
    border: 1px solid #FFD700;
    padding: 0;
}

.notice-main {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.notice-label {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 215, 0, 0.4);
}

.icon-bell {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #8C0F2D;
    font-weight: bold;
}

.notice-label span:not(.icon-bell) {
    color: #ffd700;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* --- Marquee Section --- */
.marquee_box {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.custom-marquee {
    height: 100%;
    display: flex;
    align-items: center;
    animation: marquee 25s 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;
    margin: 0;
    padding: 0;
}

.notice_list li {
    padding: 0 50px;
    font-size: 15px;
    font-weight: 500;
    color: #f0f0f0;
}

.notice_list li strong {
    color: #ffd700;
}

.notice-action-icon {
    flex-shrink: 0;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 215, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notice-action-icon:hover {
    background: rgba(255, 215, 0, 0.2);
}

.icon-action {
    display: block;
    width: 28px;
    height: 28px;
    background: #ffd700;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #8C0F2D;
    font-weight: bold;
    transition: all 0.3s ease;
}

.notice-action-icon:hover .icon-action {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {
    .notice-main {
        height: 45px;
    }
    .notice-label {
        padding: 0 10px;
    }
    .notice-label span:not(.icon-bell) {
        display: none;
    }
    .notice-action-icon {
        width: 50px;
    }
    .notice_list li {
        padding: 0 30px;
        font-size: 14px;
    }
}

/* Glow effect for important text */
.glow-text {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    font-weight: bold;
}