/* --- L89 Marquee Styles --- */
.notice-marquee-container {
    width: 100%;
    background: #13815e; 
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: #fff;
    border: 1px solid #FFD700;
    max-width: 1200px;
    margin: 0 auto;
}

.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.5);
}

.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: #145A32;
    font-weight: bold;
}

.notice-label span:not(.icon-bell) {
    color: #FFD700;
    font-weight: bold;
    font-size: 16px;
}

.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;
    margin: 0;
    padding: 0;
}

.notice_list li {
    padding: 0 50px;
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.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.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notice-action-icon:hover {
    background: rgba(255, 215, 0, 0.15);
}

.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: #145A32;
    transition: transform 0.3s ease;
}

.notice-action-icon:hover .icon-action {
    transform: scale(1.1);
}

@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-text {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}