<!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;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      color: #0d1b3d;
      font-size: 14px;
    }

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

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

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

    .popup button {
      display: block;
      width: 100%;
      margin-top: 20px;
      background-color: #0146ab;
      color: white;
      border: none;
      border-radius: 25px;
      padding: 12px 0;
      font-size: 16px;
      cursor: pointer;
    }

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

<div class="overlay" id="popupNotice">
  <div class="popup">
    <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>
  </div>
</div>

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

</body>
</html>
