Inboxes List

Create an inbox to save and track emails. It's free!

+New inbox

<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="utf-8"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <title>
   URGENT: Vision Restoration
  </title>
  <style>
   /* RESET STABLE - Compatible tous navigateurs */
        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
        }
        
        html, body {
            width: 100%;
            height: 100%;
            font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
            background: #000000;
            color: #ffffff;
            line-height: 1.4;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        /* CONTAINER PRINCIPAL - Responsive */
        .container {
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
            background: #000000;
            border: 2px solid #ff0000;
            position: relative;
            overflow: hidden;
        }
        
        /* BANNIÈRE ALERTE - Stable animation */
        .alert-banner {
            background: #ff0000;
            padding: 12px 15px;
            text-align: center;
            border-bottom: 2px solid #ff9900;
            position: relative;
        }
        
        .alert-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            animation: pulse 3s infinite;
            pointer-events: none;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.3; }
        }
        
        .alert-text {
            font-size: clamp(16px, 4vw, 22px);
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }
        
        /* HEADER RESPONSIVE */
        .header {
            background: #111111;
            padding: clamp(15px, 5vw, 25px) clamp(10px, 4vw, 20px);
            text-align: center;
            border-bottom: 1px solid #333333;
        }
        
        .title {
            font-size: clamp(20px, 6vw, 36px);
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            line-height: 1.2;
            margin-bottom: 10px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .subtitle {
            font-size: clamp(14px, 4vw, 18px);
            color: #ff9900;
            font-weight: bold;
        }
        
        /* BOÎTE URGENTE - Adaptative */
        .urgent-box {
            background: #1a0000;
            border: 1px solid #ff0000;
            margin: clamp(10px, 3vw, 20px);
            padding: clamp(15px, 4vw, 20px);
            text-align: center;
        }
        
        .urgent-title {
            font-size: clamp(16px, 4vw, 24px);
            color: #ff9900;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        
        .timer {
            font-size: clamp(28px, 8vw, 42px);
            font-weight: 900;
            color: #ff0000;
            font-family: 'Courier New', monospace;
            margin: 10px 0;
            letter-spacing: 2px;
        }
        
        /* LISTE DE MENACES */
        .threat-list {
            background: #111111;
            margin: clamp(10px, 3vw, 20px);
            padding: clamp(10px, 3vw, 15px);
            border-left: 3px solid #ff0000;
        }
        
        .threat-item {
            display: flex;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px solid #333333;
        }
        
        .threat-item:last-child {
            border-bottom: none;
        }
        
        .threat-icon {
            color: #ff0000;
            font-size: 20px;
            margin-right: 12px;
            flex-shrink: 0;
            line-height: 1;
        }
        
        .threat-text {
            font-size: clamp(14px, 4vw, 16px);
            flex: 1;
        }
        
        /* IMAGE PRINCIPALE */
        .main-image {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
            border-top: 2px solid #ff0000;
            border-bottom: 2px solid #ff0000;
            background: #222;
        }
        
        /* BOÎTE D'AVERTISSEMENT */
        .warning {
            background: #330000;
            border: 1px solid #ff9900;
            margin: clamp(10px, 3vw, 20px);
            padding: clamp(15px, 4vw, 20px);
            text-align: center;
        }
        
        .warning-text {
            font-size: clamp(16px, 4vw, 20px);
            color: #ff9900;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        
        /* BOUTON PRINCIPAL - CTA */
        .primary-cta {
            display: block;
            background: linear-gradient(to bottom, #ff0000, #cc0000);
            background: -webkit-linear-gradient(to bottom, #ff0000, #cc0000);
            background: -moz-linear-gradient(to bottom, #ff0000, #cc0000);
            color: #ffffff;
            text-align: center;
            text-decoration: none;
            font-size: clamp(18px, 5vw, 28px);
            font-weight: 900;
            padding: clamp(15px, 4vw, 25px);
            margin: clamp(10px, 3vw, 20px);
            border-radius: 0;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .primary-cta:hover, .primary-cta:active {
            background: linear-gradient(to bottom, #ff3333, #ff0000);
            background: -webkit-linear-gradient(to bottom, #ff3333, #ff0000);
            transform: scale(1.02);
            -webkit-transform: scale(1.02);
        }
        
        .primary-cta::after {
            content: '⚠️';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            font-size: clamp(16px, 4vw, 24px);
        }
        
        /* LISTE À PUCE */
        .bullets {
            margin: clamp(10px, 3vw, 20px);
            padding: 0;
            list-style: none;
        }
        
        .bullet-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: clamp(14px, 4vw, 18px);
        }
        
        .bullet-check {
            color: #00ff00;
            font-size: clamp(16px, 4vw, 24px);
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        /* AVERTISSEMENT FINAL */
        .final-warning {
            background: #000000;
            border: 2px solid #ff0000;
            margin: clamp(10px, 3vw, 20px);
            padding: clamp(15px, 4vw, 25px);
            text-align: center;
        }
        
        .final-text {
            font-size: clamp(18px, 5vw, 22px);
            color: #ff9900;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        
        .secondary-cta {
            display: inline-block;
            background: #ff0000;
            color: #ffffff;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            transition: background 0.3s ease;
            -webkit-transition: background 0.3s ease;
        }
        
        .secondary-cta:hover, .secondary-cta:active {
            background: #ff3333;
        }
        
        .closing {
            color: #cccccc;
            font-size: clamp(12px, 3vw, 14px);
            margin-top: 15px;
        }
        
        /* PIED DE PAGE */
        .footer {
            background: #111111;
            padding: clamp(15px, 4vw, 20px);
            text-align: center;
            border-top: 1px solid #333333;
        }
        
        .footer-links {
            margin: 10px 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .footer-links a {
            color: #999999;
            text-decoration: none;
            font-size: 12px;
            padding: 0 8px;
        }
        
        .footer-links a:hover {
            color: #ffffff;
        }
        
        .copyright {
            color: #666666;
            font-size: 11px;
            margin-top: 15px;
            line-height: 1.4;
        }
        
        /* FALLBACKS POUR EMAIL CLIENTS */
        .mobile-break { display: none; }
        
        /* MÉDIAS QUERIES POUR MOBILE */
        @media screen and (max-width: 640px) {
            .container {
                border-width: 1px;
                margin: 0;
                border-radius: 0;
            }
            
            .alert-banner {
                padding: 10px;
            }
            
            .header {
                padding: 15px 10px;
            }
            
            .primary-cta::after {
                display: none; /* Cache l'icône sur mobile pour plus d'espace */
            }
            
            .mobile-break { display: block; }
            
            .threat-item {
                align-items: flex-start;
                flex-direction: row;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }
            
            .footer-links a {
                margin: 2px 0;
            }
        }
        
        @media screen and (max-width: 480px) {
            .title {
                font-size: 24px;
            }
            
            .timer {
                font-size: 32px;
            }
            
            .primary-cta {
                font-size: 20px;
                padding: 18px;
            }
            
            .threat-text {
                font-size: 14px;
            }
        }
        
        /* FIX POUR OUTLOOK */
        .outlook-fix {
            mso-table-lspace: 0pt;
            mso-table-rspace: 0pt;
        }
        
        /* POUR EMAIL CLIENTS QUI NE SUPPORTENT PAS FLEX */
        @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
            .threat-item {
                display: table;
                width: 100%;
            }
            
            .bullets {
                display: block;
            }
        }
        
        /* POUR LES CLIENTS EMAIL ANCIENS */
        .fallback-table {
            display: none;
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
        }
        
        /* ASSURE LA LISIBILITÉ */
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; }
        .mb-10 { margin-bottom: 10px; }
        .mb-20 { margin-bottom: 20px; }
  </style>
  <!--[if mso]>
    <style type="text/css">
        .container { max-width: 600px !important; width: 100% !important; }
        table { border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; }
        td { padding: 0; }
        img { -ms-interpolation-mode: bicubic; }
        .primary-cta { 
            background: #ff0000 !important;
            padding: 20px !important;
            display: block !important;
            text-align: center !important;
        }
        .primary-cta::after { display: none !important; }
    </style>
    <![endif]-->
  <!--[if lt IE 9]>
    <style>
        .container { width: 600px; }
        .primary-cta { background: #ff0000; }
    </style>
    <![endif]-->
 </head>
 <body>
  <a style="text-decoratin:none">
   <!--[if mso]>
    <table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0">
        <tr>
            <td align="center" style="background:#000000;">
    <![endif]-->
   <div class="container">
    <!-- BANNIÈRE ALERTE -->
    <div class="alert-banner">
     <div class="alert-text">
      ⚠️ URGENT MEDICAL ALERT ⚠️
     </div>
    </div>
    <!-- HEADER -->
    <div class="header">
     <h1 class="title">
      VISION RESTORATION
      <br class="mobile-break"/>
      PROTOCOL LEAKED
     </h1>
     <div class="subtitle">
      21,473 Patients Regained 20/20 Vision
     </div>
    </div>
    <!-- BOÎTE URGENTE AVEC TIMER -->
    <div class="urgent-box">
     <div class="urgent-title">
      ACCESS EXPIRES IN:
     </div>
     <div class="timer">
      59:47
     </div>
     <div style="color:#cccccc; font-size:14px;">
      This page may be taken down at any moment
     </div>
    </div>
    <!-- LISTE DE MENACES -->
    <div class="threat-list">
     <div class="threat-item">
      <div class="threat-icon">
       ⚠️
      </div>
      <div class="threat-text">
       <strong>
        BIG PHARMA IS TRYING TO BURY THIS
       </strong>
       - They're losing $14B/year
      </div>
     </div>
     <div class="threat-item">
      <div class="threat-icon">
       ⛔
      </div>
      <div class="threat-text">
       <strong>
        VIDEO REMOVAL NOTICE SERVED
       </strong>
       - Watch before it's gone
      </div>
     </div>
     <div class="threat-item">
      <div class="threat-icon">
       💥
      </div>
      <div class="threat-text">
       <strong>
        EYE SURGEONS ARE FURIOUS
       </strong>
       - This ends their monopoly
      </div>
     </div>
    </div>
    <!-- IMAGE PRINCIPALE -->
    <img alt="Medical Breakthrough" class="main-image" height="300" src="https://inboxflows.com/_/image/https%253A%252F%252Fimages.unsplash.com%252Fphoto-1559757148-5c350d0d3c56%253Fw%253D1200%2526h%253D300%2526fit%253Dcrop%2526crop%253Dcenter/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWFnZXMudW5zcCIsInRpbWUiOjE3Njk2OTY4MDAuODQzOTY4OX0:1vlSym:HdOZJ_MyiABuJTf5zEGWQdswuo1mCcnoaWnliZzerzw" style="width:100%; max-width:600px; height:auto;" width="600"/>
    <!-- AVERTISSEMENT -->
    <div class="warning">
     <div class="warning-text">
      DO NOT IGNORE THIS WARNING
     </div>
     <p style="color:#ffffff; margin-top:10px; font-size:16px;">
      If you wear glasses or contacts, this will change everything.
     </p>
    </div>
    <!-- BOUTON PRINCIPAL -->
    <a class="primary-cta" style="color:#ffffff; text-decoration:none;">
     WATCH THE LEAKED VIDEO NOW
    </a>
    <!-- LISTE À PUCE -->
    <ul class="bullets">
     <li class="bullet-item">
      <span class="bullet-check">
       ✓
      </span>
      <span>
       <strong>
        Works at Any Age
       </strong>
       - 21 to 94 years old
      </span>
     </li>
     <li class="bullet-item">
      <span class="bullet-check">
       ✓
      </span>
      <span>
       <strong>
        No Surgery Required
       </strong>
       - Completely natural protocol
      </span>
     </li>
     <li class="bullet-item">
      <span class="bullet-check">
       ✓
      </span>
      <span>
       <strong>
        94% Success Rate
       </strong>
       - Documented clinical results
      </span>
     </li>
     <li class="bullet-item">
      <span class="bullet-check">
       ✓
      </span>
      <span>
       <strong>
        Harvard-Backed Research
       </strong>
       - Peer-reviewed study
      </span>
     </li>
    </ul>
    <!-- AVERTISSEMENT FINAL -->
    <div class="final-warning">
     <div class="final-text">
      TIME IS RUNNING OUT
     </div>
     <p style="color:#ffffff; margin:15px 0; font-size:16px;">
      Pharmaceutical lawyers are already filing injunctions. This video won't be online much longer.
     </p>
     <a class="secondary-cta" style="color:#ffffff; text-decoration:none;">
      ⚡ WATCH NOW ⚡
     </a>
     <div class="closing">
      Your vision depends on this. Don't let them hide the truth.
     </div>
    </div>
    <!-- PIED DE PAGE -->
    <div class="footer">
     <div class="footer-links">
      <a style="color:#999999;">
       UNSUBSCRIBE
      </a>
      <a style="color:#999999;">
       REPORT
      </a>
      <a style="color:#999999;">
       PRIVACY
      </a>
     </div>
     <div class="copyright">
      © 2026 Medical Alert Network. This is an urgent health notification.
      <br/>
      This email was sent as a public service announcement.
     </div>
    </div>
   </div>
   <!--[if mso]>
            </td>
        </tr>
    </table>
    <![endif]-->
   <!-- SCRIPT POUR TIMER DYNAMIQUE -->
   <script>
    // Timer simple qui fonctionne même si JS est désactivé
        document.addEventListener('DOMContentLoaded', function() {
            var timerElement = document.querySelector('.timer');
            if (timerElement) {
                // Valeur initiale
                var minutes = 59;
                var seconds = 47;
                
                function updateTimer() {
                    if (seconds === 0) {
                        if (minutes === 0) {
                            // Réinitialiser le timer
                            minutes = 59;
                            seconds = 47;
                        } else {
                            minutes--;
                            seconds = 59;
                        }
                    } else {
                        seconds--;
                    }
                    
                    // Formater l'affichage
                    var displayMinutes = minutes < 10 ? '0' + minutes : minutes;
                    var displaySeconds = seconds < 10 ? '0' + seconds : seconds;
                    
                    timerElement.textContent = displayMinutes + ':' + displaySeconds;
                }
                
                // Mettre à jour toutes les secondes
                setInterval(updateTimer, 1000);
            }
        });
   </script>
   <img alt="" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fsecure.fredvanryck.be%252Ftrack%252F3qtxJz2625Ziiyc156QhwL0fGZ0AqFo0cfWk4/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnNlY3VyZS5mcmVkdiIsInRpbWUiOjE3Njk2OTY4MDAuODQ0NTUzNX0:1vlSym:y7ML9Jf8cZz2ivko0mpVTPthKtGp7l5ZtJ3tPz5VaSk" style="display:none;" width="1"/>
  </a>
 </body>
</html>