body {
    background: #f7f7f7;
    font-family: Arial, Helvetica, sans-serif;
}

/* Restrict text selection globally */
.no-select {
    user-select: none;
}

/* Allow selection for links */
.no-select a {
    user-select: text;
}

.wrapper {
    max-width: 420px;
    margin: 40px auto;
    padding: 0 15px;
}

.btn-gradient {
    display: block;
    padding: 12px;
    border-radius: 10px;
    margin: 8px 0;
    background: linear-gradient(90deg, #ff4b2b, #1e90ff);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.card {
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff4b2b;
    overflow: hidden;
}

.logo-circle img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

footer {
    text-align: center;
    margin-top: 14px;
    color: #333;
    font-weight: 600;
}

footer span {
    color: #ff4b2b;
}

/* Anti adBlocker 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);
  }
}

  /* anti Ad-blocker css end */  