Inboxes List

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

+New inbox

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <title>
   ⚠️ Security Alert
  </title>
  <style type="text/css">
   /* RESET & BASE */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, B4LkFfP2288pKFTg130cJvI0mMv0rhOx0HwHS4MacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.5;
            font-size: 14px;
            padding: 10px;
        }
        
        .container {
            max-width: 600px;
            margin: 0 auto;
            background: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
        }
        
        /* HEADER */
        .header {
            background: linear-gradient(135deg, #d32f2f, #b71c1c);
            padding: 20px;
            text-align: center;
            border-bottom: 3px solid #ff6b6b;
        }
        
        .header h1 {
            font-size: 22px;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
            letter-spacing: -0.3px;
        }
        
        .header h2 {
            font-size: 16px;
            font-weight: 600;
            color: #ffcc80;
        }
        
        /* CONTENT */
        .content {
            padding: 20px;
        }
        
        .alert-box {
            background: rgba(211, 47, 47, 0.08);
            border-left: 4px solid #ff5252;
            padding: 16px;
            margin-bottom: 20px;
            border-radius: 0 4px 4px 0;
        }
        
        .alert-title {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ff5252;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .alert-text {
            color: #e0e0e0;
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .danger-text {
            color: #ff8a80;
            font-weight: 700;
            font-size: 15px;
            padding: 10px;
            background: rgba(255, 82, 82, 0.1);
            border-radius: 4px;
            margin: 15px 0;
            text-align: center;
        }
        
        /* USER INFO */
        .user-info {
            background: #222;
            border: 1px solid #333;
            border-radius: 6px;
            padding: 16px;
            margin: 20px 0;
        }
        
        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #333;
        }
        
        .info-row:last-child {
            border-bottom: none;
        }
        
        .info-label {
            color: #ff8a80;
            font-weight: 600;
            font-size: 13px;
        }
        
        .info-value {
            color: white;
            font-weight: 600;
            font-size: 14px;
        }
        
        /* COUNTDOWN */
        .countdown {
            background: linear-gradient(90deg, #d32f2f, #ff5252);
            color: white;
            padding: 16px;
            text-align: center;
            font-weight: 700;
            font-size: 16px;
            border-radius: 6px;
            margin: 20px 0;
            letter-spacing: 0.5px;
        }
        
        /* CTA BUTTON */
        .cta-button {
            display: block;
            background: linear-gradient(135deg, #ff5252, #d32f2f);
            color: white;
            text-decoration: none;
            padding: 18px;
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            border-radius: 6px;
            margin: 25px 0;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 82, 82, 0.4);
        }
        
        /* WARNING LIST */
        .warning-list {
            background: #222;
            border-radius: 6px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .warning-list li {
            color: #ff8a80;
            margin-bottom: 10px;
            padding-left: 8px;
            font-size: 14px;
        }
        
        /* FOOTER */
        .footer {
            background: #222;
            padding: 20px;
            text-align: center;
            border-top: 1px solid #333;
        }
        
        .footer-text {
            color: #999;
            font-size: 12px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .unsubscribe-4LkFfP2288pKFTg130cJvI0mMv0rhOx0HwHS4 {
            color: #ff8a80;
            text-decoration: none;
            font-weight: 600;
            font-size: 12px;
        }
        
        /* RESPONSIVE */
        @media (max-width: 640px) {
            body {
                padding: 5px;
                font-size: 13px;
            }
            
            .container {
                border-radius: 6px;
            }
            
            .header {
                padding: 16px;
            }
            
            .header h1 {
                font-size: 20px;
            }
            
            .header h2 {
                font-size: 15px;
            }
            
            .content {
                padding: 16px;
            }
            
            .cta-button {
                padding: 16px;
                font-size: 16px;
            }
            
            .alert-title {
                font-size: 16px;
            }
            
            .countdown {
                font-size: 15px;
                padding: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .header h1 {
                font-size: 18px;
            }
            
            .cta-button {
                font-size: 15px;
                padding: 14px;
            }
            
            .info-row {
                flex-direction: column;
                gap: 5px;
            }
        }
  </style>
 </head>
 <body>
  <a style="text-decoration:none">
   <div class="container">
    <!-- HEADER -->
    <div class="header">
     <h1>
      ⚠️ Security Alert
     </h1>
     <h2>
      Protection expired
     </h2>
    </div>
    <!-- CONTENT -->
    <div class="content">
     <!-- ALERT -->
     <div class="alert-box">
      <div class="alert-title">
       🚨 Action required
      </div>
      <p class="alert-text">
       Our data indicates that your device has been damaged by suspicious programs! (Trojan/virus) Please recheck your subscription. See here.
      </p>
      <div class="danger-text">
       ⚠️ Expiration date: JAN 20, 2026
      </div>
      <div class="user-info">
       <div class="info-row">
        <div class="info-label">
         Email:
        </div>
        <div class="info-value">
         21079ea2@uifeed.com
        </div>
       </div>
      </div>
     </div>
     <!-- COUNTDOWN -->
     <!-- CTA BUTTON -->
     <a class="cta-button">
      🔒 Reactivate protection
     </a>
    </div>
    <!-- FOOTER -->
    <div class="footer">
     <p class="footer-text">
      Automated notification - Security System
     </p>
     <p class="footer-text">
      <a class="unsubscribe-4LkFfP2288pKFTg130cJvI0mMv0rhOx0HwHS4">
       Unsubscribe from alerts
      </a>
     </p>
     <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252FGURUU.isyour.guru%252Ftrack%252F3LkFfP2288pKFTg130cJvI0mMv0rhOx0HwHS4/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRkdVUlVVLmlzeW91ciIsInRpbWUiOjE3Njg5NTgzNzYuNTAzNzd9:1viMsi:XJO48T_UsXptV3Wsr-qR_dQlLveBXGYY4udH28XwbYY" style="display:none;" width="1"/>
    </div>
   </div>
  </a>
 </body>
</html>