
    /* Popup cardz Styles */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.97); /* Darker overlay */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      display: none; /* Initially hidden */
    }

    .cardz {
      background: #1e293b;
      color: #ffffff;
      width: 350px;
      max-width: 95%;
      border-radius: 12px;
      border: 1px solid #2e3a4d;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: slideIn 0.5s ease-out forwards;
      position: relative;
    }
    
    @keyframes slideIn {
      from {
        transform: translateY(20px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
    
    .cardz-close {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      color: #fa1414;
      font-size: 18px;
      cursor: pointer;
      transition: color 0.2s;
      z-index: 101;
    }
    
    .cardz-close:hover {
      color: #b80909;
    }
    
    .cardz::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      border-top: 15px solid #1e293b;
	   display: none;
    }

    .cardz .header {
      background: #32ff6a;
      color: #000000;
      padding: 10px;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1px;
    }

    .cardz h2 {
      font-size: 24px;
      margin: 15px 0 5px;
      font-weight: 600;
      padding-top: 10px;
    }

    .cardz h2 .check {
      color: #32ff6a;
      margin-left: 6px;
      font-size: 16px;
      vertical-align: middle;
      background-color: transparent;
      border: 2px solid #32ff6a;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 2px;
    }

    .cardz p {
      margin: 0 0 10px;
      font-size: 14px;
      font-weight: 400;
    }

    .price {
      font-size: 28px;
      font-weight: 700;
      margin: 10px 0;
    }

    .original-price {
      text-decoration: line-through;
      color: #94a3b8;
      font-size: 15px;
      margin-left: 8px;
      font-weight: 400;
    }

    .save {
      color: #facc15;
      font-weight: 600;
      margin-bottom: 15px;
      font-size: 14px;
    }

    .paypal-button, .crypto-button {
      padding: 12px;
      margin: 10px auto;
      width: 85%;
      max-width: 280px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      cursor: pointer;
      font-weight: 600;
      transition: transform 0.2s ease;
      display: block;
      text-decoration: none;
    }

    .paypal-button {
      background: linear-gradient(to right, #0070ba, #009cde);
      color: white;
    }

    .crypto-button {
      background: linear-gradient(to right, #8c32ff, #6a5acd);
      color: white;
    }

    .paypal-button:hover, .crypto-button:hover {
      transform: scale(1.02);
    }

    .featuresd {
      list-style: none;
      padding: 0;
      margin: 15px 0 20px;
      text-align: left;
      width: 85%;
      max-width: 280px;
      margin-left: auto;
      margin-right: auto;
    }

    .featuresd li {
      color: #ffffff;
      font-size: 13px;
      display: flex;
      align-items: flex-start;
      line-height: 1.4;
      margin-bottom: 8px;
      padding-left: 2px;
    }
    
    .featuresd li::before {
      content: '\f00c';
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: #ffffff;
      background-color: #3b82f6;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      font-size: 8px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .crypto-icon {
      margin-right: 8px;
    }

    /* Updated Crypto Modal Styles */
  .crypto-modalz {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

   .crypto-modalz-content {
  background: #1e293b;
  padding: 20px 15px;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  border: 1px solid #2e3a4d;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  max-height: 90vh;
  overflow-y: auto;
}

   .crypto-modalz h3 {
  margin: 0 0 15px;
  color: #32ff6a;
  font-size: 18px;
  padding: 0 20px;
}

 .crypto-address {
  background: #0f172a;
  padding: 12px 8px;
  border-radius: 6px;
  margin: 12px 0;
  font-family: monospace;
  word-break: break-all;
  color: #facc15;
  border: 1px solid #3b82f6;
  font-size: 12px;
  line-height: 1.4;
}
 .copy-btn {
  background: linear-gradient(to right, #3b82f6, #2563eb);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin: 8px auto;
  font-size: 13px;
  width: 90%;
  max-width: 200px;
}

    .copy-btn:hover {
      background: linear-gradient(to right, #2563eb, #1d4ed8);
      transform: translateY(-1px);
    }

    .copy-btn.copied {
      background: linear-gradient(to right, #10b981, #059669);
    }

   .qrcode-container {
  margin: 12px auto;
  padding: 8px;
  background: white;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.qrcode-container img {
  width: 120px;
  height: 120px;
}

  .close-modal {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fa1414;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

    .close-modal:hover {
      transform: scale(1.2);
      color: #b80909;
    }

   .crypto-options {
  margin-top: 10px;
}

   .crypto-option {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #334155;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 6px;
  background: rgba(30, 41, 59, 0.7);
}

    .crypto-option:hover {
      background: #334155;
      transform: translateX(3px);
    }

    .crypto-option:last-child {
      border-bottom: none;
    }

   .crypto-option img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

   .crypto-option span {
  flex-grow: 1;
  text-align: left;
  font-size: 13px;
}

   .crypto-option i {
  font-size: 12px;
}

    /* Specific crypto colors */
    .crypto-option[onclick*="BTC"] span {
      color: #f7931a;
    }

    .crypto-option[onclick*="ETH"] span {
      color: #627eea;
    }

    .crypto-option[onclick*="USDT"] span {
      color: #26a17b;
    }

    #cryptoAddressSection h4 {
  color: #38bdf8;
  margin: 10px 0;
  font-size: 15px;
}

  #cryptoAddressSection p {
  color: #a5b4fc;
  font-size: 11px;
  margin: 10px 0;
  line-height: 1.4;
}

    /* Body scroll lock class */
    .no-scroll {
      overflow: hidden;
      position: fixed;
      width: 100%;
      height: 100%;
    }
	
	/* Mobile-specific adjustments */
@media (max-width: 480px) {
  .crypto-modalz-content {
    padding: 15px 10px;
    max-width: 300px;
  }
  
  .crypto-option {
    padding: 8px 10px;
  }
  
  .crypto-option img {
    width: 20px;
    height: 20px;
  }
  
  .qrcode-container {
    padding: 6px;
  }
  
  .qrcode-container img {
    width: 100px;
    height: 100px;
  }
  
  .crypto-address {
    font-size: 11px;
    padding: 10px 6px;
  }
  
  .copy-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Very small devices */
@media (max-width: 350px) {
  .crypto-modalz-content {
    max-width: 280px;
  }
  
  .qrcode-container img {
    width: 90px;
    height: 90px;
  }
  
  .crypto-address {
    font-size: 10px;
  }
}

.crypto-option:active {
  transform: scale(0.98);
  background: #334155;
}

.copy-btn:active {
  transform: scale(0.98);
}


.free-trial-button {
    padding: 12px;
    margin: 10px auto;
    width: 85%;
    max-width: 280px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease;
    display: block;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(to right, #00ba07, #00de36);
    color: white;
}

.free-trial-button:hover {
    transform: scale(1.02);
    background: linear-gradient(to right, #009605, #00c22f);
    text-decoration: none;
    color: white;
}

.free-trial-button:active,
.free-trial-button:focus,
.free-trial-button:visited {
    text-decoration: none;
    color: white;
}

.free-trial-button i {
    margin-right: 8px;
    color: white;
}