/* 1111Bet Marquee Styles */

.notice-marquee-container {
    width: 100%;
    max-width: 1200px;
    background: #292929;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(193, 181, 70, 0.3);
    overflow: hidden;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 2rem auto;
}

.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);
}

.icon-bell {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: #ffeb00;
}

.icon-bell::before {
    content: "\f0f3";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
}

/* --- Marquee Section --- */
.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 35px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice_list li i {
    color: #ffeb00;
    font-size: 16px;
}

.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);
}

.icon-download-app {
    display: block;
    width: 24px;
    height: 24px;
    color: #ffeb00;
}

.icon-download-app::before {
    content: "\f019";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
}

@media (max-width: 768px) {
    .notice-main {
        height: 50px;
    }
    .notice-label {
        padding: 0 10px;
    }
    .notice-label span:not(.icon-bell) {
        display: none;
    }
    .notice-action-icon {
        width: 50px;
    }
    .notice_list li {
        padding: 0 20px;
        font-size: 14px;
    }
}
