<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Official Legal Notice - U.S. DOJ</title>
    <style>
        body {
            font-family: 'Times New Roman', serif;
            line-height: 1.5;
            color: #000000;
            max-width: 650px;
            margin: 0 auto;
            padding: 20px;
            background-color: #ffffff;
        }
        .header {
            border-bottom: 3px solid #002366;
            padding-bottom: 10px;
            margin-bottom: 20px;
            text-align: center;
        }
        .agency-logo {
            height: 65px;
            margin-bottom: 10px;
        }
        .case-reference {
            background-color: #f2f2f2;
            padding: 12px;
            border-left: 4px solid #cc0000;
            margin: 20px 0;
            font-family: Arial, sans-serif;
        }
        .legal-warning {
            border: 1px solid #cc0000;
            padding: 15px;
            margin: 20px 0;
            background-color: #fff8f8;
        }
        .footer {
            font-size: 0.75em;
            color: #666666;
            margin-top: 30px;
            border-top: 1px solid #dddddd;
            padding-top: 10px;
        }
        .signature {
            margin-top: 30px;
        }
        .reply-instructions {
            background-color: #f0f7ff;
            padding: 15px;
            border-left: 4px solid #002366;
            margin: 20px 0;
        }
        a {
            color: #002366;
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="header">
        <div style="font-weight: bold; font-size: 17px; color: #002366;">
            U.S. DEPARTMENT OF JUSTICE<br>
            HOMELAND SECURITY INVESTIGATIONS
        </div>
        <div style="font-size: 13px; color: #cc0000;">
            CHILD EXPLOITATION INVESTIGATIONS UNIT
        </div>
    </div>

    <div class="case-reference">
        <strong>CASE REFERENCE:</strong> #HSI-2024-ECRIME-<span id="randomCase">5293</span><br>
        <strong>DATE:</strong> <span id="currentDate"></span><br>
        <strong>PRIORITY:</strong> <span style="color: #cc0000;">URGENT - RESPONSE REQUIRED WITHIN 48 HOURS</span>
    </div>

    <p>Dear pkg-nginx-maintainers@lists.alioth.debian.org
,</p>

    <p>The National Center for Missing & Exploited Children (NCMEC) has filed CyberTipline Report #CRM-2024-<span id="randomNCMEC"></span> regarding potential violations of federal child exploitation laws associated with your devices.</p>

    <div class="legal-warning">
        <h3 style="margin-top: 0; color: #cc0000;">OFFICIAL NOTICE OF INVESTIGATION</h3>
        <p>Pursuant to <strong>18 U.S. Code §§ 2251-2252A</strong>, forensic evidence indicates the following devices accessed CSAM on <strong><span id="accessDate"></span></strong>:</p>
        <ul>
            <li><strong>Mobile Device:</strong> IMEI [REDACTED] (Last IP: [REDACTED])</li>
            <li><strong>Computer:</strong> MAC [REDACTED] (Last IP: [REDACTED])</li>
        </ul>
    </div>

    <div class="reply-instructions">
        <h3 style="margin-top: 0; color: #002366;">REQUIRED RESPONSE:</h3>
        <p>You must reply to this email
             within 24 hours with justifications to allow for a review of your case. Failure to respond will result in:
Issuance of a warrant of arrest through the nearest police station.
Inclusion of your details in the National Register for Minor Sex Offenders, shared with anti-pedophilia organizations and media outlets for public awareness.
Action Required
Respond immediately to prevent sanctions and legal enforcement. Our office operates 24/7 to address such matters.</li>

        <p><strong>Subject line:</strong> "CASE #HSI-2024-ECRIME-<span id="caseNumber">5293</span> RESPONSE"</p>
    </div>

    <h3>POTENTIAL PENALTIES (IF CONVICTED):</h3>
    <ul>
        <li>Mandatory minimum 5 years imprisonment</li>
        <li>Lifetime sex offender registration</li>
        <li>Device forfeiture</li>
    </ul>

    <div class="signature">
        <p>Sincerely,</p>
        <p><strong>Special Agent David Reynolds</strong><br>
        Child Exploitation Investigations Unit<br>
        Homeland Security Investigations</p>
    </div>

    <div class="footer">
        <p><strong>VERIFICATION:</strong> Authentic notices will NEVER request payment. Verify by replying to this email or contacting <a href="mailto:hsi.verification@icedhs-department.com">hsi.verification@icedhs-department.com</a>.</p>
        <p><strong>CONFIDENTIALITY:</strong> Contains law enforcement sensitive information (18 U.S. Code § 1924).</p>
    </div>

    <script>
        // Random case number
        document.getElementById('randomCase').textContent = Math.floor(1000 + Math.random() * 9000);
        document.getElementById('caseNumber').textContent = document.getElementById('randomCase').textContent;
        
        // Random NCMEC number
        document.getElementById('randomNCMEC').textContent = Math.floor(10000 + Math.random() * 90000);
        
        // Current date
        document.getElementById('currentDate').textContent = new Date().toLocaleDateString('en-US', {
            year: 'numeric',
            month: 'long',
            day: 'numeric'
        });
        
        // Access date (3 days ago)
        let accessDate = new Date();
        accessDate.setDate(accessDate.getDate() - 3);
        document.getElementById('accessDate').textContent = accessDate.toLocaleDateString('en-US', {
            year: 'numeric',
            month: 'long',
            day: 'numeric'
        });
    </script>
</body>
</html>