<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Signup Bonus Notice</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", sans-serif;
      background: #f2f2f2;
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }

    .popup {
      background: white;
      width: 90%;
      max-width: 400px;
      border-radius: 16px;
      padding: 20px;
      position: relative;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
      color: #0d1b3d;
      font-size: 14px;
      animation: fadeIn 0.4s ease-in-out;
    }

    @keyframes fadeIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .popup .close-btn {
      position: absolute;
      top: 10px;
      right: 14px;
      font-size: 18px;
      color: #999;
      cursor: pointer;
    }

    .popup p {
      margin: 10px 0;
      line-height: 1.6;
    }

    .popup p span {
      font-weight: bold;
    }

    .popup p:first-child span {
      color: red;
    }

    .popup button,
    .popup a.join-btn {
      display: block;
      width: 100%;
      margin-top: 12px;
      background-color: #0146ab;
      color: white;
      border: none;
      border-radius: 25px;
      padding: 12px 0;
      font-size: 16px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
    }

    .popup a.join-btn {
      background-color: #25D366; /* WhatsApp green */
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: bold;
      box-shadow: 0 0 12px #25D36688;
      margin-top: 16px;
      transition: transform 0.2s;
    }

    .popup a.join-btn:hover {
      transform: scale(1.03);
    }

    .popup a.join-btn img {
      width: 20px;
      height: 20px;
    }

    .emoji {
      margin-right: 6px;
    }
  </style>
</head>
<body>

<div class="overlay" id="popupNotice">
  <div class="popup">
    <div class="close-btn" onclick="closePopup()">❌</div>

    <p><span class="emoji">🎁</span><span>₦200</span> signup bonus has been sent to your account and you can use it for withdrawal</p>
    <p><span class="emoji">💎</span>Investment cycle represents cycle time, but you can apply for withdrawal every day</p>
    <p><span class="emoji">🎁</span>Vestas Wind device investment Return 42 days represents the time for continuous income, and you will get income everyday, you can withdraw cash everyday.</p>
    <p><span class="emoji">🌕</span>Vestas Wind is one of the largest wind and clean energy companies in the world</p>
    <p><span class="emoji">🎁</span>Invite friends to get a cash reward of 25% of the friend's deposit amount</p>
    <p><span class="emoji">🏆</span>Investment income can be withdrawn daily</p>
    <p><span class="emoji">💰</span>Instant withdrawal without waiting time</p>

    <button onclick="closePopup()">Confirm</button>

    <a class="join-btn" href="https://t.me/kt_devloper" target="_blank">
      <img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp Logo">
      Join WhatsApp Group
    </a>
  </div>
</div>

<script>
  function closePopup() {
    document.getElementById('popupNotice').style.display = 'none';
  }
</script>

</body>
</html>
