.video-container-wrapper .video-wrapper {
    position: relative;
    cursor: pointer;
}

.video-container-wrapper .video-wrapper video {
    display: block;
}

.video-container-wrapper .play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-container-wrapper .video-wrapper.playing .play-button-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-container-wrapper .custom-play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 0;
}

.video-container-wrapper .custom-play-button:hover {
    transform: scale(1.1);
}

.video-container-wrapper .custom-play-button svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

