/* 1. ??????????? ? */
.sunny-yt-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 12px;
}

/* 2. ???????????? */
.yt-thumb-container, .yt-main-img {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    z-index: 1;
}

/* 3. ????????????????????? ? */
.yt-header-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
    z-index: 5;
    padding: 12px 15px;
}

.yt-title-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* 4. ???????????????????? ? */
.yt-play-button-official {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 10 !important; /* ??????????? */
    display: flex !important; /* ???????????? */
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* 5. ?????????????iframe????????????? */
.sunny-yt-facade.is-playing .yt-play-button-official,
.sunny-yt-facade.is-playing .yt-header-overlay {
    display: none !important; /* ??????????????? */
}

.sunny-yt-facade iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 50 !important;
    background: #000;
}