/**
 * 单视频播放器锁定状态样式（对比模式激活时，自 style.css 迁入）
 */

.video-main-area.locked {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.video-main-area.locked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    pointer-events: none;
    border-radius: var(--radius-md);
}

.video-main-area.locked::after {
    content: '🔒 对比模式已激活';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
    font-size: 14px;
    font-weight: bold;
    z-index: 1001;
    pointer-events: none;
    border: 2px solid var(--border-accent);
    box-shadow: var(--shadow-lg);
}

#singleVideoArea.locked {
    position: relative;
    opacity: 0.6;
}

#singleVideoArea.locked .video-controls-bar {
    pointer-events: none;
    opacity: 0.5;
}

#singleVideoArea.locked .video-container {
    pointer-events: none;
}

/* 视频放大状态下的样式调整（自 style.css 迁入） */
.video-layout-container.expanded .video-sidebar-area {
    display: none !important;
}

.video-layout-container.expanded .video-main-area {
    width: 100%;
}
