/* Maintains your original design but for the thumbnail */
.cpve-portrait-video-wrapper {
    position: relative;
    width: auto;
    max-height: 80vh;
    margin: 0 auto;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cpve-video-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cpve-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 12px;
    border: none;
    padding: 0;
    cursor: pointer;
}

.cpve-play-button::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

/* Maintain your existing iframe styling for when it loads */
.cpve-portrait-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .cpve-portrait-video-wrapper {
        max-width: 90vw;
        width: 90%;
        height: auto;
        aspect-ratio: 9/16;
    }
}