lite-youtube {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.lite-youtube-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lite-youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

lite-youtube:hover .lite-youtube-thumbnail {
    opacity: 0.8;
}

.lite-youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

lite-youtube:hover .lite-youtube-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.lite-youtube-play-button svg {
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lite-youtube-play-button {
        width: 56px;
        height: 40px;
    }
}
