/* YouTube Facade (Lite Embed) Styles */
.youtube-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures thumbnail covers the area */
    opacity: 0.9;
    transition: opacity 0.3s;
}

.youtube-facade:hover img {
    opacity: 1;
}

/* Play Button Styling */
.youtube-facade .play-btn {
    position: absolute;
    width: 68px;
    height: 48px;
    background-color: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    z-index: 10;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-facade:hover .play-btn {
    background-color: #ff0000;
}

.youtube-facade .play-btn:before {
    content: '';
    display: block;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    /* Arrow shape */
    border-color: transparent transparent transparent #fff;
}

/* Ensure iframe takes full space when loaded */
.youtube-facade iframe {
    width: 100%;
    height: 100%;
    border: none;
}