/* 
   Classic Videoke Marquee CSS
   High-contrast, professional karaoke style
*/

.videoke-marquee-wrapper {
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, #111 0%, #000 50%, #111 100%);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 10px 0;
}

.marquee-label {
    background: #0044cc;
    color: white;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    z-index: 10;
    position: relative;
    box-shadow: 5px 0 15px rgba(0,0,0,0.5);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.marquee-label::before {
    content: '▶';
    margin-right: 8px;
    font-size: 10px;
    color: #00ffcc;
}

.marquee-scroll-area {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee-track {
    white-space: nowrap;
    display: inline-block;
    padding-left: 20px;
    animation: videokeScroll 40s linear infinite;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.queue-index {
    color: #ffdd00; /* Classic Videoke Yellow */
    font-weight: 800;
}

.marquee-msg {
    color: #00ffcc;
    font-style: italic;
    opacity: 0.8;
}

@keyframes videokeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Since we repeated content, we scroll half way to loop */
}

/* Pause animation on hover for user accessibility */
.videoke-marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .marquee-label {
        font-size: 11px;
        padding: 0 10px;
    }
    .marquee-track {
        font-size: 15px;
        animation-duration: 30s;
    }
}
