.youtube-facade {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 700px;
    margin: 20px 0;
    cursor: pointer;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.youtube-facade:hover {
    transform: scale(1.02);
}

.youtube-facade::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* Ratio 16:9 */
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 56px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.youtube-facade:hover .youtube-play-button {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.youtube-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 15px 15px;
    font-size: 16px;
    font-weight: 500;
}

.youtube-iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .youtube-facade {
        max-width: 100%;
    }
    
    .youtube-iframe {
        height: 200px;
    }
}