#video-showcase-wrapper {
    background-color: #050508;
    color: #ffffff;
    overflow-x: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-bottom: 4rem;
}

.video-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: #00ff88;
    box-shadow: 0 10px 25px -10px rgba(0, 255, 136, 0.15);
}

/* --- Ultra-Flat Custom Video Seeker Scrubber --- */

.webeffx-seeker {
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    height: 14px !important;
    background: transparent !important; /* Keep container transparent */
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

/* 1. Kill the Webkit (Chrome/Safari/Edge) default track background block */
.webeffx-seeker::-webkit-slider-runnable-track {
    width: 100% !important;
    height: 3px !important; /* Forces the track itself to be flat and 3px */
    background: #3f3f46 !important; /* The flat grey background line */
    border: none !important;
    box-shadow: none !important;
    border-radius: 999px !important;
}

/* 2. Kill the Firefox default track background block */
.webeffx-seeker::-moz-range-track {
    width: 100% !important;
    height: 3px !important;
    background: #3f3f46 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 999px !important;
}

/* 3. The Flat Blue Thumb */
.webeffx-seeker::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #4F46E5 !important;
    cursor: pointer !important;
    border: none !important; 
    box-shadow: none !important; 
    margin-top: -4.5px !important; /* Centers the 12px thumb perfectly on the 3px track */
    transition: transform 0.1s ease;
}

.webeffx-seeker::-moz-range-thumb {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #4F46E5 !important;
    cursor: pointer !important;
    border: none !important;
    box-shadow: none !important;
}

.webeffx-seeker::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}


#webeffx-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#webeffx-lightbox.active {
    display: flex;
    opacity: 1;
}