:root {
    --brand-dark-bg: #1C1C1C;
    --accent-gold: #C9A86A;
    --light-text: #D1D1D1;
}

.notice-marquee-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    background: var(--brand-dark-bg);
    border-radius: 50px;
    overflow: hidden;
    color: var(--light-text);
    font-family: Arial, sans-serif;
    border: 1px solid var(--accent-gold);
}

.notice-main {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
}

.notice-label {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.icon-bell {
    font-size: 18px;
    color: var(--accent-gold);
}

.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(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: 14px;
    font-weight: 500;
    color: var(--light-text);
}

.notice_list li strong {
    color: var(--accent-gold);
}

.notice-action-icon {
    display: none;
}

.glow-text {
    color: var(--accent-gold);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(201, 168, 106, 0.7);
}