/* Базовая CSS защита от копирования контента */

/* Отключение выделения текста */
.protected-content {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* Отключение выделения на мобильных устройствах */
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    
    /* Отключение drag and drop */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    
    /* Дополнительная защита */
    pointer-events: auto;
    -webkit-print-color-adjust: exact;
}

/* Защита изображений */
.protected-content img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    
    pointer-events: none;
    -webkit-touch-callout: none;
}

/* Убираем возможность выделения для всех текстовых элементов */
.protected-content p,
.protected-content h1,
.protected-content h2,
.protected-content h3,
.protected-content h4,
.protected-content h5,
.protected-content h6,
.protected-content div,
.protected-content span,
.protected-content li,
.protected-content blockquote,
.protected-content code,
.protected-content pre {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Скрытие выделения при случайном выделении */
.protected-content::selection {
    background: transparent;
}

.protected-content::-moz-selection {
    background: transparent;
}

/* Защита от печати - размытие при печати */
@media print {
    .protected-content {
        filter: blur(5px);
        -webkit-filter: blur(5px);
    }
    
    .no-print {
        display: none !important;
    }
}

/* Блокировка контекстного меню */
.protected-content {
    -webkit-context-menu: none;
    context-menu: none;
}

/* Дополнительная защита для мобильных */
@media (max-width: 768px) {
    .protected-content {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
}

/* Защита от копирования через outline */
.protected-content *:focus {
    outline: none !important;
}

/* Предотвращение выделения через double-click */
.protected-content {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    tap-highlight-color: transparent;
}