Inboxes List

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

+New inbox

<!DOCTYPE html>
<html lang="en-US">
 <head>
  <meta charset="utf-8"/>
  <meta content="width=device-width, initial-scale=1.0, user-scalable=yes" name="viewport"/>
  <title>
   CloudCore US - Payment Declined | Action Required
  </title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&amp;display=swap" rel="stylesheet"/>
  <style>
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 24px 16px;
      background: linear-gradient(145deg, #0B1120 0%, #1A253C 100%);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* MODERN GLASS CARD */
    .premium-card {
      max-width: 580px;
      width: 100%;
      margin: 0 auto;
      background: #FFFFFF;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 32px 64px -20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
    }

    /* HEADER - DARK GRADIENT US THEME */
    .us-header {
      background: linear-gradient(135deg, #0B2B5E 0%, #1A3A6E 50%, #0F2B4F 100%);
      padding: 32px 28px 24px;
      position: relative;
      overflow: hidden;
    }

    .us-header::after {
      content: "★";
      position: absolute;
      bottom: -20px;
      right: -20px;
      font-size: 120px;
      opacity: 0.08;
      color: white;
      pointer-events: none;
    }

    .header-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }

    .logo-white img {
      max-width: 140px;
      filter: brightness(0) invert(1);
      height: auto;
    }

    .us-badge {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      padding: 6px 14px;
      border-radius: 100px;
      color: white;
      font-weight: 700;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(255,255,255,0.2);
      letter-spacing: 0.3px;
    }

    .header-title h1 {
      color: white;
      font-size: 34px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 8px;
      letter-spacing: -0.8px;
    }

    .header-title p {
      color: rgba(255,255,255,0.85);
      font-size: 15px;
      font-weight: 500;
    }

    /* CRITICAL ALERT BAR */
    .critical-alert {
      background: #FEF2F2;
      padding: 16px 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-bottom: 1px solid #FECACA;
    }

    .alert-icon {
      width: 44px;
      height: 44px;
      background: #DC2626;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 22px;
      font-weight: 800;
      box-shadow: 0 0 0 0 rgba(220,38,38,0.4);
      animation: softPulse 2s infinite;
    }

    @keyframes softPulse {
      0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.3); }
      70% { box-shadow: 0 0 0 12px rgba(220,38,38,0); }
      100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
    }

    .alert-text-block {
      flex: 1;
    }

    .alert-title {
      color: #991B1B;
      font-weight: 800;
      font-size: 15px;
      margin-bottom: 2px;
    }

    .alert-sub {
      color: #6B7280;
      font-size: 13px;
      font-weight: 500;
    }

    /* MAIN BODY */
    .main-body {
      padding: 28px;
    }

    /* ACCOUNT SUMMARY CARD */
    .account-summary {
      background: #F8FAFE;
      border-radius: 24px;
      padding: 20px;
      border: 1px solid #E9EFF5;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .account-icon-large {
      width: 56px;
      height: 56px;
      background: linear-gradient(145deg, #1E3A8A, #2563EB);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 26px;
    }

    .account-details h3 {
      font-size: 18px;
      font-weight: 700;
      color: #0F172A;
      margin-bottom: 4px;
    }

    .account-details p {
      color: #5B6E8C;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .status-badge {
      background: #E6F0FF;
      color: #1E40AF;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 30px;
      font-weight: 600;
    }

    /* STATS GRID */
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 24px;
    }

    .stat-card {
      background: #F8FAFE;
      border-radius: 20px;
      padding: 18px;
      border: 1px solid #E9EFF5;
    }

    .stat-label {
      color: #6C7F9E;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .stat-number {
      font-size: 34px;
      font-weight: 800;
      color: #0F172A;
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-desc {
      color: #5B6E8C;
      font-size: 12px;
    }

    .storage-bar {
      height: 6px;
      background: #E2E8F0;
      border-radius: 4px;
      margin: 12px 0 6px;
      overflow: hidden;
    }

    .storage-fill {
      height: 100%;
      width: 98%;
      background: #DC2626;
      border-radius: 4px;
    }

    .storage-warning {
      color: #DC2626;
      font-size: 11px;
      font-weight: 700;
    }

    /* FILES AFFECTED SECTION */
    .files-section {
      background: #FFFFFF;
      border-radius: 24px;
      padding: 20px;
      border: 1px solid #E9EFF5;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }

    .files-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .files-header h3 {
      font-size: 17px;
      font-weight: 700;
      color: #0F172A;
    }

    .risk-badge {
      background: #FEF2F2;
      color: #B91C1C;
      font-weight: 700;
      font-size: 12px;
      padding: 4px 12px;
      border-radius: 40px;
    }

    .file-categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .file-cat {
      text-align: center;
      padding: 14px 8px;
      background: #F8FAFE;
      border-radius: 18px;
      border: 1px solid #E9EFF5;
    }

    .file-cat-emoji {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .file-cat-name {
      font-weight: 700;
      color: #0F172A;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .file-cat-count {
      color: #6C7F9E;
      font-size: 11px;
      font-weight: 500;
    }

    /* TIMER DANGER CARD */
    .timer-danger {
      background: linear-gradient(135deg, #1E293B, #0F172A);
      border-radius: 24px;
      padding: 22px 24px;
      margin-bottom: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .timer-left h4 {
      color: #94A3B8;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .timer-left .days-big {
      font-size: 44px;
      font-weight: 800;
      color: #F97316;
      line-height: 1;
    }

    .timer-left .days-big small {
      font-size: 16px;
      color: #94A3B8;
      font-weight: 500;
    }

    .timer-right {
      text-align: right;
    }

    .timer-right .hours-count {
      font-size: 22px;
      font-weight: 700;
      color: #F97316;
      margin-bottom: 4px;
    }

    .timer-right .deadline-date {
      color: #94A3B8;
      font-size: 12px;
    }

    /* PROMO CARD - US SPECIAL OFFER */
    .us-promo {
      background: linear-gradient(135deg, #F0F4FF, #FFFFFF);
      border-radius: 28px;
      padding: 28px;
      border: 2px solid #2563EB;
      margin-bottom: 20px;
      position: relative;
    }

    .promo-flag {
      position: absolute;
      top: -12px;
      right: 20px;
      background: #2563EB;
      color: white;
      font-weight: 800;
      font-size: 13px;
      padding: 6px 20px;
      border-radius: 60px;
      box-shadow: 0 4px 12px rgba(37,99,235,0.3);
      letter-spacing: 0.5px;
    }

    .promo-title {
      font-size: 22px;
      font-weight: 800;
      color: #0F172A;
      margin-bottom: 8px;
    }

    .promo-desc {
      color: #5B6E8C;
      margin-bottom: 18px;
      font-size: 14px;
    }

    .price-block {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 24px;
    }

    .price-old {
      color: #94A3B8;
      font-size: 18px;
      text-decoration: line-through;
    }

    .price-new {
      font-size: 44px;
      font-weight: 800;
      color: #2563EB;
      line-height: 1;
    }

    .price-new small {
      font-size: 16px;
      color: #6C7F9E;
      font-weight: 500;
    }

    /* CTA BUTTON - //offers.atelierdelbellessere.it/4PrNSj4880WyBE346nsoylkgpiu72GFWGGEZOGGOGMFL66956YESG1120r5 (no hover effects, fully static) */
    .cta-button-static {
      background: linear-gradient(135deg, #2563EB, #1E40AF);
      color: white !important;
      font-weight: 700;
      font-size: 17px;
      padding: 16px 28px;
      border-radius: 60px;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      border: none;
      box-shadow: 0 8px 18px -6px rgba(37,99,235,0.4);
      transition: none;
      cursor: pointer;
    }

    .cta-button-static:active, .cta-button-static:focus, .cta-button-static:hover {
      background: linear-gradient(135deg, #2563EB, #1E40AF);
      color: white;
      transform: none;
      box-shadow: 0 8px 18px -6px rgba(37,99,235,0.4);
    }

    .security-badges {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      color: #6C7F9E;
      font-size: 12px;
      font-weight: 500;
    }

    .help-link {
      text-align: center;
      margin-top: 16px;
    }

    .help-link a {
      color: #2563EB;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
    }

    /* FOOTER */
    .footer-us {
      background: #F8FAFE;
      padding: 28px;
      text-align: center;
      border-top: 1px solid #E9EFF5;
    }

    .footer-icons {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 20px;
      font-size: 24px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #6C7F9E;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
    }

    /* Unsubscribe link uses //offers.atelierdelbellessere.it/6bTpIk4880ADkB346tpcggtxqqr72DYXUDAYUDRIUJMJ66956NWCQ1120f5 */
    .unsubscribe-link {
      color: #DC2626 !important;
    }

    .copyright {
      color: #94A3B8;
      font-size: 11px;
    }

    .tracking-note {
      font-size: 9px;
      color: #B9C7D9;
      margin-top: 12px;
      letter-spacing: 0.2px;
    }

    @media (max-width: 520px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
      .file-categories {
        grid-template-columns: 1fr;
      }
      .timer-danger {
        flex-direction: column;
        text-align: center;
      }
      .timer-right {
        text-align: center;
      }
      .header-title h1 {
        font-size: 28px;
      }
      .main-body {
        padding: 20px;
      }
    }
  </style>
 </head>
 <body>
  <!-- HIDDEN PREHEADER FOR SPAM FILTERS -->
  <div style="display:none; font-size:1px; line-height:1px; max-height:0; max-width:0; opacity:0; overflow:hidden; mso-hide:all;">
   ⚠️ URGENT: Payment declined - 6,284 files will be permanently deleted in 72 hours - Update now
  </div>
  <div class="premium-card">
   <!-- HEADER - USA STYLE -->
   <div class="us-header">
    <div class="header-flex">
     <div class="logo-white">
      <img alt="CloudCore US" src="https://inboxflows.com/_/image/https%253A%252F%252Fi.gyazo.com%252Fd8c6db492d09f29ca84662391ecb1fb8.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpLmd5YXpvLmNvbSIsInRpbWUiOjE3NzUyODcyNzguMDA4MjAzNX0:1w8vJm:2PRLFBltli7Wa-QMsZg_B5oSYn90jMF2s1UnwBMOUWI" style="max-width: 130px;"/>
     </div>
     <div class="us-badge">
      <span>
       🇺🇸
      </span>
      UNITED STATES
     </div>
    </div>
    <div class="header-title">
     <h1>
      Payment declined
     </h1>
     <p>
      Your cloud backup has been suspended • Action required
     </p>
    </div>
   </div>
   <!-- CRITICAL ALERT BANNER -->
   <div class="critical-alert">
    <div class="alert-icon">
     ⚠️
    </div>
    <div class="alert-text-block">
     <div class="alert-title">
      ❗ 3 DAYS UNTIL PERMANENT DELETION
     </div>
     <div class="alert-sub">
      Update your payment method immediately to protect your data
     </div>
    </div>
   </div>
   <!-- MAIN CONTENT -->
   <div class="main-body">
    <!-- ACCOUNT SUMMARY (anonymous) -->
    <div class="account-summary">
     <div class="account-icon-large">
      ☁️
     </div>
     <div class="account-details">
      <h3>
       CloudCore Premium
      </h3>
      <p>
       <span>
        Account ID: US‑C8H2K9
       </span>
       <span class="status-badge">
        ⚠️ Suspended
       </span>
      </p>
     </div>
    </div>
    <!-- STATS GRID -->
    <div class="stats-grid">
     <div class="stat-card">
      <div class="stat-label">
       TOTAL FILES
      </div>
      <div class="stat-number">
       6,284
      </div>
      <div class="stat-desc">
       Photos, videos, documents &amp; contacts
      </div>
     </div>
     <div class="stat-card">
      <div class="stat-label">
       STORAGE USED
      </div>
      <div class="stat-number">
       14.7 GB
      </div>
      <div class="stat-desc">
       of 15 GB total
      </div>
      <div class="storage-bar">
       <div class="storage-fill">
       </div>
      </div>
      <div class="storage-warning">
       ⚠️ 98% full — backup stopped
      </div>
     </div>
    </div>
    <!-- FILES AFFECTED SECTION -->
    <div class="files-section">
     <div class="files-header">
      <h3>
       📦 Files at risk of deletion
      </h3>
      <span class="risk-badge">
       6,284 files affected
      </span>
     </div>
     <div class="file-categories">
      <div class="file-cat">
       <div class="file-cat-emoji">
        📸
       </div>
       <div class="file-cat-name">
        Photos
       </div>
       <div class="file-cat-count">
        5,891 images
       </div>
      </div>
      <div class="file-cat">
       <div class="file-cat-emoji">
        📄
       </div>
       <div class="file-cat-name">
        Documents
       </div>
       <div class="file-cat-count">
        247 files
       </div>
      </div>
      <div class="file-cat">
       <div class="file-cat-emoji">
        🎬
       </div>
       <div class="file-cat-name">
        Videos
       </div>
       <div class="file-cat-count">
        146 videos
       </div>
      </div>
     </div>
    </div>
    <!-- TIMER CARD -->
    <div class="timer-danger">
     <div class="timer-left">
      <h4>
       ⏳ PERMANENT DELETION IN
      </h4>
      <div class="days-big">
       03
       <small>
        days
       </small>
      </div>
     </div>
     <div class="timer-right">
      <div class="hours-count">
       22 hrs 41 min
      </div>
      <div class="deadline-date">
       Deadline: April 6, 2026
      </div>
     </div>
    </div>
    <!-- PROMO CARD - US SPECIAL OFFER -->
    <div class="us-promo">
     <div class="promo-flag">
      🇺🇸 US EXCLUSIVE
     </div>
     <div class="promo-title">
      Update payment &amp; save 40%
     </div>
     <div class="promo-desc">
      American customers: restore your backup today and lock in 3 months at 40% off.
     </div>
     <div class="price-block">
      <span class="price-old">
       $11.99/mo
      </span>
      <span class="price-new">
       $7.19
       <small>
        /mo
       </small>
      </span>
     </div>
     <!-- CTA BUTTON: //offers.atelierdelbellessere.it/4zllte4880OapS346ycvtlltznm72XOLDHIOZOMQAZUI66956RZSQ1120F5 (exact redirect link) -->
     <a class="cta-button-static">
      <svg fill="none" height="18" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" viewbox="0 0 24 24" width="18">
       <path d="M20 12V8H4v12h12">
       </path>
       <polyline points="16 4 20 8 16 12">
       </polyline>
       <line x1="4" x2="12" y1="16" y2="16">
       </line>
      </svg>
      UPDATE PAYMENT INFORMATION
     </a>
     <div class="security-badges">
      <span>
       🔒 AES-256 Encryption
      </span>
      <span>
       ⚡ Instant Activation
      </span>
      <span>
       🇺🇸 US Data Centers
      </span>
     </div>
     <div class="help-link">
      <a>
       Need assistance? Contact US support →
      </a>
     </div>
    </div>
    <!-- DISCLAIMER -->
    <p style="color:#94A3B8; font-size:11px; text-align:center; margin-top: 8px;">
     If you recently updated your payment, please disregard this notice. Changes reflect within 2 hours.
    </p>
   </div>
   <!-- FOOTER WITH UNSUBSCRIBE (//offers.atelierdelbellessere.it/6aMMdx4880xnsN346gzvnkuxnzh72AGMLHAHIJGOCIWZ66956AZUV1120H5) & TRACKING (//domain/track/3MjUEx4880Ywdp346dgnoujdpek72IERDFDLNJWOSKYT66956ZLXU1120n5) -->
   <div class="footer-us">
    <div class="footer-icons">
     <span>
      🇺🇸
     </span>
     <span>
      ☁️
     </span>
     <span>
      ⭐
     </span>
    </div>
    <div class="footer-links">
     <a>
      Help Center
     </a>
     <a>
      Security
     </a>
     <a>
      Privacy Policy
     </a>
     <!-- UNSUBSCRIBE LINK: //offers.atelierdelbellessere.it/6wZjqw4880RHJx346pngmhrvxcz72KGIZFRPAHBHLZMG66956GSCT1120i5 -->
     <a class="unsubscribe-link">
      Unsubscribe
     </a>
    </div>
    <div class="copyright">
     © 2026 CloudCore US Inc. · 600 California Street, San Francisco, CA 94108
    </div>
    <!-- TRACKING PIXEL & VISIBLE ID: //domain/track/3QlSjK4880pQFx346wpjkdhbfim72KICVIHLPBFAGZCR66956XDEN1120E5 -->
    <img alt="tracking" height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fdomain%252Ftrack%252F3yzNeg4880fegg346hgahzcrptk72OKKGQHIFXYPDIQY66956DFZN1120C5/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmRvbWFpbiUyRnRyYSIsInRpbWUiOjE3NzUyODcyNzguMDA4ODY1OH0:1w8vJm:zRsh-UNNp2pdjzaR4vVQLROlCb7NJpY_dyWXT4pmJvE" style="display:inline-block; width:1px; height:1px; border:0; opacity:0.01;" width="1"/>
    <div class="tracking-note">
    </div>
   </div>
  </div>
  <!-- HIDDEN TEXT FOR COMPLIANCE -->
  <div style="font-size:1px; color:#0B1120; visibility:hidden;">
   CloudCore US - Payment declined - 6,284 files at risk - 3 days remaining - CPA offer v2
  </div>
 </body>
</html>