@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@1,700&display=swap');

html, body {
    margin: 0; padding: 0;
    width: 100%; height: 100vh;
    overflow: hidden;
    background: #000;
}

.vq-video-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#yt-player {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
}

.vq-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(8, 8, 16, 0.3) 0%, rgba(8, 8, 16, 0.85) 100%);
    z-index: 1;
}

.vq-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    z-index: 2;
}

.vq-root {
    font-family: 'Inter', sans-serif;
    width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; color: #fff;
    z-index: 5;
}

.vq-card {
    position: relative; z-index: 10;
    width: 90%; max-width: 420px;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.vq-title {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 64px;
    line-height: 1; 
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    padding-bottom: 0.15em;
    margin-bottom: -0.1em;
}

.vq-subtitle-row {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 30px;
}

.vq-line { width: 20px; height: 1px; background: rgba(255,255,255,0.2); }
.vq-subtitle { font-size: 10px; font-weight: 700; letter-spacing: 0.4em; color: #fce944; text-transform: uppercase; }

.vq-queue-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px; padding: 25px; margin-bottom: 25px;
}

.vq-stat-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 5px;}
.vq-queue-number {
    font-size: 80px; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, #fff, #6366f1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.vq-hint-small { font-size: 11px; color: rgba(255,255,255,0.3); }

.vq-discord-btn {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    
    width: fit-content;
    margin: 0 auto 15px;
    
    background: #5865F2; 
    color: #fff;
    border: none; 
    border-radius: 14px; 
    padding: 16px 32px;
    font-size: 13px; 
    font-weight: 700; 
    text-transform: uppercase;
    text-decoration: none; 
    transition: 0.2s;
}

.vq-discord-btn:hover { background: #4752c4; transform: translateY(-2px); }

.vq-hint { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 25px; }
.vq-hint span { color: #fff; }

.vq-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); margin-bottom: 20px; }

.vq-status-bar {
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

.vq-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #14b8a6; box-shadow: 0 0 10px #14b8a6;
    animation: pulse 2s infinite;
}

.vq-status-text {
    font-size: 11px; font-weight: 800; color: #14b8a6; letter-spacing: 0.2em;
}

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.vq-logo { position: absolute; top: 30px; left: 30px; display: flex; align-items: center; gap: 10px; z-index: 20; }
.vq-logo-bar { width: 25px; height: 3px; background: #6366f1; border-radius: 2px; }
.vq-logo-text { font-size: 10px; font-weight: 800; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); text-transform: uppercase; }

.vq-player {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background: rgba(10, 10, 18, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.vq-track-name {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vq-player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.vq-play-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.vq-play-btn:hover {
    transform: scale(1.1);
}

.vq-play-btn svg {
    width: 18px;
    height: 18px;
}

.vq-volume-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
}

.vq-volume-icon {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.5);
}

#volume-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}