/* Marquee Ticker Styles */
.notice-marquee-container {
    width: 100%;
    background: #161616;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 20px auto;
    padding: 0;
}

.notice-main {
    width: 100%;
    height: 60px;
    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, 255, 255, 0.1);
}

.notice-label .icon-left {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.notice-label .icon-left i {
    color: #f39c12;
    font-size: 16px;
}

.notice-label span:not(.icon-left) {
    font-weight: bold;
    color: #78E02C;
}

/* --- Marquee Section --- */
.marquee_box {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.custom-marquee {
    height: 100%;
    display: flex;
    align-items: center;
    animation: marquee 10s 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 40px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.notice_list li:hover {
    color: #78E02C;
}

.notice_list li i {
    margin-right: 8px;
    font-size: 16px;
}

.notice_list li.highlight {
    color: #f1c40f;
    font-weight: bold;
}

.notice_list li.highlight i {
    color: #f1c40f;
}

.notice_list li.winner {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.notice_list li.winner i {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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, 255, 255, 0.1);
    cursor: pointer;
    transition: background-color 0.2s;
}

.notice-action-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.notice-action-icon .icon-right i {
    color: #27ae60;
    font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notice-main {
        height: 50px;
    }
    
    .notice-label {
        padding: 0 10px;
    }
    
    .notice-label span:not(.icon-left) {
        display: none;
    }
    
    .notice-action-icon {
        width: 50px;
    }
    
    .notice_list li {
        font-size: 12px;
        padding: 0 30px;
    }
    
    .notice_list li i {
        font-size: 14px;
    }
}
