Pam sent you 10% off

<div id="pam-overlay">
  <div class="pam-popup">
    <div class="pam-icon">🎉</div>
    <h2>Pam sent you 10% off!</h2>
    <p>Tap below to redeem your discount before you shop.</p>
    <a class="pam-btn" href="https://pickleballparents.com/discount/PBTAM10">
      Redeem 10% Off
    </a>
  </div>
</div>

<style>
#pam-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pam-popup {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.pam-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.pam-popup h2 {
  font-size: 24px;
  margin: 10px 0;
}

.pam-popup p {
  color: #666;
  margin-bottom: 18px;
}

.pam-btn {
  display: block;
  background: #f5a623;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
}
</style>