<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>DM Aktion E-Mail</title>
  <style>
    :root {
      /* ========================================== */
      /* COLOR THEME CONFIGURATION                 */
      /* Easily edit theme colors here!            */
      /* ========================================== */
      --body-bg: #f3f3f3;
      --container-bg: #fff;
      --header-bg: black;
      --text-dark: black;
      --text-muted: gray;
      --accent-color: #ff9900;
      --btn-bg: #ff9900;
      --btn-bg-hover: #e68a00;
      --btn-text: black;
      --footer-text: #666;
    }
    body {
      font-family: Arial, sans-serif;
      background-color: var(--body-bg);
      text-align: center;
      margin: 0;
      padding: 0;
    }

    .email-container {
      max-width: 500px;
      background-color: var(--container-bg);
      margin: 20px auto;
      padding: 20px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
    }

    .email-header {
      background-color: var(--header-bg);
      padding: 30px 15px 15px 15px;
    }

    .email-header img {
      width: 150px;
    }

    .email-info {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .email-body {
      padding: 20px;
    }

    .gift-card {
      text-align: center;
    }

    .gift-card img {
      width: 200px;
      margin-bottom: 10px;
    }

    h2 {
      font-size: 22px;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .highlight {
      color: var(--accent-color);
      font-weight: bold;
    }

    .claim-button {
      background-color: var(--btn-bg);
      color: var(--btn-text);
      border: none;
      padding: 12px 40px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      display: inline-block;
      text-decoration: none;
    }

    .claim-button:hover {
      background-color: var(--btn-bg-hover);
    }
    
    .footer {
      margin-top: 20px;
      font-size: 12px;
      color: var(--footer-text);
    }
    .footer a {
      color: var(--footer-text);
    }
  </style>
</head>
<body>
<div class="email-container">
  <div class="email-header">
    <img src="https://i.imgur.com/5IFUKY4.png" alt="">
  </div>
  

  <p class="email-info">Wichtige Informationen zu Ihrem vollen DM-Einkaufswagen</p>
  
  <div class="email-body">
    <div class="gift-card">
      <img src="https://i.imgur.com/EM28QIz.png" alt="Details zum Versand des Full DM Shopping Cart
Sendung #[52318-36] bestätigt">
      

      <h2>Ihr voller DM-Einkaufswagen wartet auf Sie!</h2>
    </div>
    

    <p>Lieber DM Kunde,</p>
    

    <p>Wir freuen uns, Ihnen mitteilen zu können, dass Sie als einer unserer geschätzten Gewinner ausgewählt wurden! Als Zeichen unserer Wertschätzung überreichen wir Ihnen gerne einen <span class="highlight">vollen DM-Einkaufswagen</span>. Vielen Dank für Ihr anhaltendes Vertrauen und Engagement.</p>
    

    <a href="https://qrco.de/bgsB5c" class="claim-button">BELOHNUNG BEANSPRUCHEN</a>
  </div>
  

  <div class="footer">
    Details zum Versand des Full DM Shopping Cart
Sendung <a href="https://qrco.de/bgsB5c">#[52318-36] bestätigt
  </div>
</div>
</body>
</html>