#avp-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.avp-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  text-align: center;
}
.avp-content p, .avp-content #avp-question {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 28px;
  color: #222;
}
.avp-content button {
  font-size: 16px;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  background: #ff5e5e;
  color: #fff;
  cursor: pointer;
}