        :root {
            --bg: #050a0f;
            --accent: #00f2ff;
            --accent-dim: rgba(0, 242, 255, 0.2);
            --text: #a0b0c0;
            --panel-bg: rgba(10, 20, 30, 0.95);
            --highlight: #ffcf00;
            --critical: #ff4444;
            --high: #ffaa00;
            --medium: #44ff44;
            --low: #8888ff;
        }
        ::-webkit-scrollbar {
            width: 0px;
        }

        body {
            background-color: var(--bg);
            background-image: 
                radial-gradient(var(--accent-dim) 1px, transparent 1px),
                linear-gradient(180deg, rgba(5,10,15,0.8) 0%, rgba(0,20,40,0.9) 100%);
            background-size: 20px 20px, 100% 100%;
            color: var(--text);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 40px;
            min-height: 100vh;
        }

        .container {
            margin: 0 auto;
            border: 1px solid var(--accent-dim);
            padding: 30px;
            background: var(--panel-bg);
            box-shadow: 0 0 80px rgba(0, 200, 255, 0.15);
            position: relative;
            backdrop-filter: blur(5px);
        }

        .container::before {
            content: "\f024";
            position: absolute;
            border-radius: 2px;
            font-family: "Font Awesome 6 Free";
            top: -10px;
            left: 20px;
            background: var(--accent);
            color: #000;
            padding: 2px 10px;
            font-size: 10px;
            font-weight: 900;
        }

        .container::after {
            content: " ФОРЕНЗИКА // ЮРИДИЧЕСКАЯ СИСТЕМАТИЗАЦИЯ";
            position: absolute;
            border-radius: 2px;
            top: -10px;
            left: 42px;
            background: var(--accent);
            color: #000;
            padding: 2px 7px;
            font-size: 10px;
            font-weight: 900;
        }

        h1, h2, h3 {
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        h1 {
            border-bottom: 3px solid var(--accent);
            padding-bottom: 15px;
            margin-bottom: 30px;
            text-align: left;
            font-size: 1.8em;
            text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
        }

        h2 {
            color: var(--highlight);
            margin-top: 35px;
            padding-left: 15px;
            border-left: 4px solid var(--accent);
            font-size: 1.4em;
        }

        h3 {
            color: #d0e0ff;
            font-size: 1.1em;
            margin-top: 25px;
        }

        .section {
            margin-bottom: 35px;
            border: 1px solid var(--accent-dim);
            padding: 25px;
            background: rgba(5, 15, 25, 0.6);
            border-radius: 5px;
        }

        .section-title {
            color: var(--accent);
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
            font-size: 1.1em;
            letter-spacing: 1px;
        }

        /* Таблица систематизации */
        .methods-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.95em;
        }

        .methods-table th {
            background: rgba(0, 30, 60, 0.9);
            color: var(--accent);
            text-transform: uppercase;
            padding: 18px 12px;
            text-align: left;
            border: 1px solid var(--accent-dim);
            letter-spacing: 1px;
            font-weight: 700;
        }

        .methods-table td {
            padding: 16px 12px;
            border: 1px solid var(--accent-dim);
            vertical-align: top;
            line-height: 1.5;
        }

        .methods-table tr:nth-child(even) {
            background: rgba(10, 25, 40, 0.4);
        }

        .methods-table tr:hover {
            background: rgba(0, 100, 150, 0.15);
            transition: background 0.3s;
        }

        .method-number {
            text-align: center;
            font-weight: bold;
            color: var(--accent);
            font-size: 1.1em;
            width: 50px;
        }

        .method-name {
            color: var(--highlight);
            font-weight: bold;
        }

        .evidence-strength {
            font-weight: bold;
            padding: 4px 10px;
            border-radius: 3px;
            display: inline-block;
            font-size: 0.85em;
        }

        .strength-max {
            background: rgba(255, 68, 68, 0.15);
            color: var(--critical);
            border: 1px solid var(--critical);
        }

        .strength-high {
            background: rgba(255, 170, 0, 0.15);
            color: var(--high);
            border: 1px solid var(--high);
        }

        .strength-very-high {
            background: rgba(255, 0, 255, 0.15);
            color: #ff00ff;
            border: 1px solid #ff00ff;
        }

        .strength-medium {
            background: rgba(68, 255, 68, 0.15);
            color: var(--medium);
            border: 1px solid var(--medium);
        }

        .strength-low {
            background: rgba(136, 136, 255, 0.15);
            color: var(--low);
            border: 1px solid var(--low);
        }

        .legal-value {
            color: #d0e0ff;
            font-size: 0.9em;
            line-height: 1.6;
        }

        .fact-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 5px;
            margin: 15px 0;
            border-left: 4px solid var(--accent);
        }

        .evidence-model {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .model-level {
            background: rgba(0, 30, 50, 0.7);
            padding: 20px;
            border-radius: 5px;
            border-top: 3px solid var(--accent);
        }

        .model-title {
            color: var(--highlight);
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .model-title i {
            margin-right: 10px;
            color: var(--accent);
        }

        .status-dot {
            height: 12px;
            width: 12px;
            background-color: var(--accent);
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            box-shadow: 0 0 8px var(--accent);
        }

        .conclusion {
            margin-top: 50px;
            padding: 30px;
            border: 2px dashed var(--accent);
          /*text-align: center;*/
            font-size: 1.2em;
            color: var(--accent);
            background: rgba(0, 40, 80, 0.3);
            border-radius: 5px;
        }

        .quote {
            font-style: italic;
            border-left: 3px solid var(--highlight);
            padding-left: 20px;
            margin: 25px 0;
            color: #d0e0f0;
            font-size: 1.1em;
            line-height: 1.7;
        }

        .tech-badge {
            display: inline-block;
            background: rgba(0, 100, 200, 0.2);
            color: var(--accent);
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 0.85em;
            margin: 2px;
            border: 1px solid rgba(0, 200, 255, 0.3);
        }

        .chain-link {
            text-align: center;
            margin: 20px 0;
            color: var(--accent);
            font-size: 2em;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px dotted var(--accent-dim);
            transition: all 0.2s;
        }

        a:hover {
            color: var(--highlight);
            border-bottom: 1px solid var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            border: 1px solid var(--accent-dim);
            margin: 15px 0;
        }

        video {
            max-width: 100%;
            border: 1px solid var(--accent-dim);
        }

        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
            margin: 30px 0;
        }

        .highlight {
            color: var(--highlight);
            font-weight: bold;
        }

        .term {
            color: var(--accent);
            font-style: italic;
        }

        .dpi-abbr {
            color: var(--highlight);
            text-decoration: underline dotted;
            cursor: help;
        }

        .diagram-section {
            margin: 40px 0;
            padding: 25px;
            border: 1px solid var(--accent-dim);
            background: rgba(5, 15, 25, 0.6);
            border-radius: 5px;
        }

        .diagram-title {
            color: var(--highlight);
            font-size: 1.3em;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .diagram-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }

        .diagram-block {
            background: rgba(0, 30, 50, 0.7);
            border: 1px solid var(--accent-dim);
            border-radius: 5px;
            padding: 20px;
            text-align: center;
            min-width: 180px;
            transition: transform 0.3s;
        }

        .diagram-block:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .diagram-block i {
            font-size: 2em;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .infographic-arrow {
            color: var(--accent);
            font-size: 1.5em;
        }

        .effects-section {
            margin: 40px 0;
        }

        .effects-title {
            color: var(--highlight);
            font-size: 1.3em;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-dim);
        }

        .phased-array-infographic {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .infographic-item {
            background: rgba(0, 30, 50, 0.7);
            border: 1px solid var(--accent-dim);
            border-radius: 5px;
            padding: 15px;
            text-align: center;
            min-width: 160px;
            transition: all 0.3s;
        }

        .infographic-item:hover {
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
        }

        .infographic-item i {
            font-size: 1.8em;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .infographic-title {
            color: var(--highlight);
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 0.9em;
        }

        .infographic-desc {
            font-size: 0.8em;
            color: var(--text);
            line-height: 1.4;
        }

        .ops-analysis {
            margin: 40px 0;
            padding: 25px;
            border: 1px solid var(--accent-dim);
            background: rgba(5, 15, 25, 0.6);
            border-radius: 5px;
        }

        .tools-list {
            list-style: none;
            padding: 0;
        }

        .tool-item {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--accent-dim);
        }

        .tool-item:last-child {
            border-bottom: none;
        }

        .tool-item h3 {
            color: var(--highlight);
            margin-bottom: 10px;
        }

        .description {
            color: #d0e0ff;
            font-style: italic;
            margin-bottom: 15px;
        }

        .effect {
            background: rgba(0, 30, 50, 0.5);
            padding: 15px;
            border-radius: 5px;
            border-left: 3px solid var(--accent);
        }

        .effect strong {
            color: var(--highlight);
        }

        .summary {
            margin-top: 40px;
            padding: 25px;
            border: 2px dashed var(--accent-dim);
            border-radius: 5px;
            background: rgba(0, 40, 80, 0.2);
        }

        .summary h2 {
            color: var(--accent);
            /*text-align: center;*/
        }

        .subpoint {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .subpoint h3 {
            color: #ffcf00;
            margin-bottom: 5px;
        }

    .message-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .message-block {
        background: rgba(10, 25, 40, 0.7);
        border: 1px solid var(--accent-dim);
        border-radius: 5px;
        padding: 20px;
        margin: 20px 0;
    }
    
    .message-header {
        text-align: center;
        margin-bottom: 20px;
        color: var(--accent);
        font-size: 0.9em;
        letter-spacing: 1px;
    }
    
    .message-content {
        line-height: 1.6;
    }
    
    .uppercase-block {
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--highlight);
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .separator {
        border: none;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
        margin: 20px 0;
    }
    
    .holo-frame {
        background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(255, 207, 0, 0.1));
        border: 2px solid var(--accent);
        border-radius: 5px;
        padding: 25px;
        margin: 20px 0;
        text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    }
    
    .timeline {
        position: relative;
        padding-left: 30px;
        margin: 20px 0;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--accent);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 25px;
    }
    
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -36px;
        top: 5px;
        width: 12px;
        height: 12px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 0 8px var(--accent);
    }
    
    .timeline-date {
        color: var(--highlight);
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .timeline-content {
        background: rgba(0, 30, 50, 0.3);
        padding: 15px;
        border-radius: 5px;
        border-left: 3px solid var(--accent);
    }

    .table-wrapper {
        overflow-x: auto;
        margin: 20px 0;
    }
    
    .controls input:focus {
        border-color: var(--accent);
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    }
    
    .constellation-cell {
        font-family: monospace;
        letter-spacing: 3px;
        line-height: 1.2;
    }
    
    @media (max-width: 768px) {
        .evidence-model {
            grid-template-columns: 1fr;
        }
        
        .methods-table {
            font-size: 0.85em;
        }
        
        .methods-table th,
        .methods-table td {
            padding: 10px 8px;
        }
    }

    .table-wrapper {
        overflow-x: auto;
        margin: 20px 0;
    }
    
    .controls input:focus {
        border-color: var(--accent);
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    }
    
    @media (max-width: 768px) {
        .methods-table {
            font-size: 0.85em;
        }
        
        .methods-table th,
        .methods-table td {
            padding: 10px 8px;
        }
        
        #articlesTable th:nth-child(1),
        #articlesTable td:nth-child(1) {
            display: none;
        }
        
        #lawsTable th:nth-child(5),
        #lawsTable td:nth-child(5) {
            display: none;
        }
    }


    /*----------------------------





    ------------------------------*/

        .container::before {
            content: "\f024";
            position: absolute;
            border-radius: 2px;
            font-family: "Font Awesome 6 Free";
            top: -10px;
            left: 20px;
            background: var(--accent);
            color: #000;
            padding: 2px 10px;
            font-size: 10px;
            font-weight: 900;
        }

        .container::after {
            content: " ОПЕРАТИВНЫЙ АНАЛИЗ // ИПСО // SOFT POWER TARGET";
            position: absolute;
            border-radius: 2px;
            top: -10px;
            left: 42px;
            background: var(--accent);
            color: #000;
            padding: 2px 7px;
            font-size: 10px;
            font-weight: 900;
        }

        h2 {
            color: var(--highlight);
            margin-top: 45px;
            padding-left: 15px;
            border-left: 4px solid var(--accent);
        }

        .section-title {
            color: var(--accent);
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
            font-size: 1.1em;
            letter-spacing: 1px;
        }

        /* Таблица */
        .analysis-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.95em;
        }

        .analysis-table td {
            padding: 16px 12px;
            border: 1px solid var(--accent-dim);
            vertical-align: top;
            line-height: 1.5;
        }

        .analysis-table tr:nth-child(even) {
            background: rgba(40, 10, 25, 0.4);
        }

        .analysis-table tr:hover {
            background: rgba(150, 0, 50, 0.15);
            transition: background 0.3s;
        }

        .phase-number {
            text-align: center;
            font-weight: bold;
            color: var(--accent);
            font-size: 1.1em;
            width: 50px;
        }

        .phase-name {
            color: var(--highlight);
            font-weight: bold;
        }

        .risk-level {
            font-weight: bold;
            padding: 4px 10px;
            border-radius: 3px;
            display: inline-block;
            font-size: 0.85em;
        }

        .risk-max {
            background: rgba(255, 68, 68, 0.15);
            color: var(--critical);
            border: 1px solid var(--critical);
        }

        .risk-high {
            background: rgba(255, 170, 0, 0.15);
            color: var(--high);
            border: 1px solid var(--high);
        }

        .risk-medium {
            background: rgba(68, 255, 68, 0.15);
            color: var(--medium);
            border: 1px solid var(--medium);
        }

        .risk-low {
            background: rgba(136, 136, 255, 0.15);
            color: var(--low);
            border: 1px solid var(--low);
        }

        .analysis-value {
            color: #d0e0ff;
            font-size: 0.9em;
            line-height: 1.6;
        }

        .threat-model {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .model-title {
            color: var(--highlight);
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .model-title i {
            margin-right: 10px;
            color: var(--accent);
        }

        .status-dot {
            height: 12px;
            width: 12px;
            background-color: var(--accent);
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            box-shadow: 0 0 8px var(--accent);
        }

        .quote {
            font-style: italic;
            border-left: 3px solid var(--highlight);
            padding-left: 20px;
            margin: 25px 0;
            color: #d0e0f0;
            font-size: 1.1em;
            line-height: 1.7;
        }

        .chain-link {
            text-align: center;
            margin: 20px 0;
            color: var(--accent);
            font-size: 2em;
        }
