body {
    font-family: 'Poppins', sans-serif;
    background-color: #0b0f19;
    color: #e2e8f0;
}

/* Card & Container Style */
.card-custom {
    background: #161e2e;
    border: 1px solid #243044;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Neon Accent Button */
.btn-neon {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-neon:hover {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    color: #fff;
}

/* Player Frame */
.video-container {
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #334155;
}

/* Queue List Custom Scroll */
.queue-box {
    max-height: 450px;
    overflow-y: auto;
}

.queue-box::-webkit-scrollbar {
    width: 6px;
}

.queue-box::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}