/* MARQUEE NOTICE STYLES - TK666 BANGLADESH */
.notice-marquee-container {
    width: 100%;
    max-width: 1200px;
    background: #1B1A19;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(84, 83, 85, 0.3);
    overflow: hidden;
    margin: 20px auto;
}

.notice-marquee-content {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

.notice-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.notice-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.speaker {
    position: relative;
    width: 24px;
    height: 20px;
    background: #fbbf24;
    border-radius: 4px 0 0 4px;
    display: inline-block;
}

.speaker::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 4px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fbbf24;
}

.speaker::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 2px;
    width: 12px;
    height: 16px;
    border: 2px solid #fbbf24;
    border-left: none;
    border-radius: 0 50% 50% 0;
}

.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;
    padding: 0 20px;
}

.notice_list li {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-right: 50px;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: color 0.3s ease;
}

.notice_list li:hover {
    color: #fbbf24;
}

.notice_list li:last-child {
    margin-right: 0;
}

/* VIP badge styling */
.vip-badge {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 10px;
    font-weight: bold;
    margin-left: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .notice-marquee-container {
        border-radius: 6px;
        margin: 15px 0;
    }

    .notice-marquee-content {
        height: 50px;
    }

    .notice-icon {
        width: 50px;
        height: 50px;
    }

    .speaker {
        width: 20px;
        height: 16px;
    }

    .notice_list li {
        font-size: 12px;
        margin-right: 30px;
    }

    .vip-badge {
        font-size: 10px;
        padding: 3px 8px;
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .notice-marquee-container {
        margin: 10px 0;
    }

    .notice-marquee-content {
        height: 45px;
    }

    .notice-icon {
        width: 45px;
        height: 45px;
    }

    .speaker {
        width: 18px;
        height: 14px;
    }

    .notice_list li {
        font-size: 11px;
        margin-right: 25px;
    }

    .vip-badge {
        font-size: 9px;
        padding: 2px 6px;
        margin-left: 10px;
    }
}
