/* ==========================================================================
   LK Videos - Native UIkit 3 Responsive Lite YouTube Facade
   ========================================================================== */

.lk-video-wrapper {
    margin: 24px auto;
    clear: both;
}

.lk-video-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #0f172a;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    user-select: none;
}

.lk-video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.lk-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}

.lk-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0,0,0.2,1), filter 0.25s ease;
    pointer-events: none;
}

.lk-video-play-btn svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.lk-video-time-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 0.78rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
    font-family: monospace;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.lk-video-facade:hover .lk-video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 6px 20px rgba(255, 0, 0, 0.5));
}

.lk-video-facade:hover .lk-video-thumb {
    transform: scale(1.02);
    opacity: 0.95;
}

.lk-video-facade:focus-visible {
    outline: 3px solid #ff0000;
    outline-offset: 3px;
}

.lk-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}
