.yvp-auto-videos {
    clear: both;
    width: 100%;
    margin: 20px 0;
}

.yvp-video-wrapper {
    width: 100%;
    margin-bottom: 30px;
    float: left;
    clear: both;
}

.yvp-video-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    text-align: left;
    width: 100%;
    float: left;
}

.yvp-video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0;
    float: left;
}

.yvp-thumbnail-container {
    position: relative;
    cursor: pointer;
    width: 100%;
    float: left;
}

.yvp-thumbnail {
    width: 100%;
    display: block;
    float: left;
}

.yvp-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(23, 23, 23, 0.8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.yvp-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.yvp-iframe {
    border: none;
    width: 100%;
    float: left;
}

.yvp-watermark {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    padding: 2px 5px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    pointer-events: none;
    z-index: 10;
}

.yvp-protection-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
    background: transparent;
    pointer-events: all;
}

.yvp-protection-overlay-bottom {
    position: absolute;
    bottom: 0;
    right: 48px;
    width: 70px;
    height: 40px;
    z-index: 2;
    background: transparent;
    pointer-events: all;
}

.yvp-error {
    color: #dc3232;
    padding: 10px;
    background: #f7f7f7;
    border-left: 4px solid #dc3232;
    float: left;
    width: 100%;
}

.yvp-screen-recording-message {
    background: black;
    color: white;
    padding: 20px;
    text-align: center;
    float: left;
    width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .yvp-video-container {
        max-width: 100%;
    }
    
    .yvp-play-button {
        width: 50px;
        height: 35px;
    }
}