#agev-modal {
  display: none;
}

#agev-modal.agev-show {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
}

#agev-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

#agev-box {
  position: relative;
  z-index: 2;
  width: min(92vw, 520px);
  margin: 10vh auto 0;
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

#agev-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.4;
}

#agev-desc {
  margin: 0 0 20px;
  line-height: 1.8;
}

#agev-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#agev-yes,
#agev-no {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 16px;
}

#agev-yes {
  background: #111;
  color: #fff;
}

#agev-no {
  background: #e5e5e5;
  color: #111;
}

body.agev-lock-scroll {
  overflow: hidden;
}