body {background:#f7f7f7;font-family:Arial,Helvetica,sans-serif;}
        .wrapper {max-width:420px;margin:40px auto;padding:0 15px;}
        
        
  /* anti Ad-blocker css start */  
        
/* Overlay */
#overlaypop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);  /* Darker and softer */
  display: none;
  z-index: 9999;
  cursor: pointer;
  animation: fadeIn 0.6s ease-in-out;
}

/* Modal */
.modalpop {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 450px;
  background: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);  /* Softer shadow */
  text-align: center;
  animation: zoomIn 0.5s ease-out;
}

h2 {
  margin-top: 0;
  font-size: 26px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #2e2e2e;  /* Darker grey */
  font-weight: 500;
}

p {
  font-size: 18px;
  color: #757575;  /* Lighter grey */
  font-family: 'Helvetica Neue', sans-serif;
  margin: 20px 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

  /* Ad-blocker css end */  