/* YouVibe Media Protect Styles
   禁止媒体文件通过右键/拖拽/长按等方式被下载 */
   
/* 1. 对所有受保护媒体禁用用户选择 */
img.content-image,
video.content-video,
.preview-thumbnail img,
.preview-thumbnail video,
.media-protected,
img.media-protected-img {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    pointer-events: auto;
}

/* 2. 隐藏 video 的原生下载按钮（WebKit 兼容） */
video::-webkit-media-controls-download-button {
    display: none !important;
    -webkit-appearance: none !important;
}

video::-internal-media-controls-download-button {
    display: none !important;
}

/* 3. 隐藏 video 的 Picture-in-Picture 按钮（部分浏览器） */
video::-webkit-media-controls-toggle-closed-captions-button {
    /* 保留字幕按钮，不隐藏 */
}

/* 4. 容器级保护：禁用容器内文本选择 */
.media-protected-container,
.preview-thumbnail,
.content-image-container {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

/* 5. 避免用户通过图片元素被选中触发复制 */
img.content-image::selection,
video.content-video::selection {
    background: transparent !important;
}