/* ===== СТИЛИ ДЛЯ СИСТЕМЫ ЗАЩИТЫ ===== */
#protection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 9998;
    transition: background 0.3s ease;
}

#protection-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid var(--accent-primary);
    border-radius: var(--border-radius);
    padding: 20px 30px;
    color: var(--accent-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(10px);
    animation: pulse-glow 1s infinite;
}

#protection-message i {
    font-size: 24px;
    animation: float 2s ease-in-out infinite;
}

.protected-content {
    position: relative;
}

.protected-content::after {
    content: '🛡️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    opacity: 0.5;
    pointer-events: none;
}

/* Стили для кода */
pre, code {
    position: relative;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--border-radius-sm);
}

pre::before {
    content: '🔒 Защищенный код';
    position: absolute;
    top: -25px;
    left: 0;
    background: var(--accent-primary);
    color: var(--primary-black);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Эффект при попытке выделения */
::selection {
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent-primary);
}

::-moz-selection {
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent-primary);
}