/* Botão que revela o vídeo */
.yt-hidden-play-toggle-btn {
    background: #fb0a3d;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 8px 30px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition:
        width 0.2s ease,
        font-size 0.2s ease;
}

.yt-hidden-play-toggle-btn:hover {
    transform: scale(1.01);
    font-size: 18px;
}

.yt-hidden-play-toggle-btn-icon {
    font-size: 28px;
}

/* Container interno que mantém o aspect ratio 16:9 */
.yt-hidden-play-aspect {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.yt-hidden-play-aspect iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Wrapper que anima a abertura/fechamento do vídeo */
.yt-hidden-play-wrapper {
    overflow: hidden;
    max-height: 0;              /* começa oculto */
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* estado aberto: ocupa praticamente o mesmo espaço do vídeo 16:9 */
.yt-hidden-play-wrapper.is-open {
    max-height: 510px;
    opacity: 1;
}
