.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
    z-index: 2;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 68px;
    height: 68px;
    filter: drop-shadow(0 4px 20px rgba(111, 97, 193, 0.5));
}

@media (max-width: 768px) {
    .video-wrapper {
        max-width: 100%;
        border-radius: 8px;
    }
    .video-play-btn svg {
        width: 50px;
        height: 50px;
    }
}