.notice-marquee-container {
    width: 100%;
    background: #2c2c2c;
    border-radius: 8px;
    overflow: hidden;
    color: #ccc;
    font-family: Arial, sans-serif;
    border-top: 1px solid #f0c354;
    border-bottom: 1px solid #f0c354;
    max-width: 1200px;
    margin: 2rem auto;
}

.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 15px;
    gap: 8px;
}

.icon-bell {
    font-size: 18px;
    color: #f0c354;
}

.notice-label span:not(.icon-bell) {
    color: #ccc;
    font-weight: bold;
    font-size: 14px;
}

.marquee_box {
    flex: 1;
    height: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.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: #ccc;
}

.notice_list li strong {
    color: #f0c354;
}

.notice-action-icon {
    flex-shrink: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.notice-action-icon:hover {
    opacity: 0.8;
}

.icon-download-app {
    font-size: 22px;
    color: #f0c354;
    transition: all 0.3s ease;
}

.notice-action-icon:hover .icon-download-app {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .notice-main { height: 40px; }
    .notice-label span:not(.icon-bell) { display: none; }
    .notice_list li { padding: 0 30px; font-size: 13px; }
}

.glow-text {
    color: #f0c354;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(240, 195, 84, 0.7);
}