.agevp-lock {
  overflow: hidden !important;
}

.agevp-overlay[hidden] {
  display: none !important;
}

.agevp-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
}

.agevp-modal {
  width: 100%;
  max-width: 520px;
  padding: 32px;
  border-radius: 14px;
  background: #fff;
  color: #222;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.agevp-title {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.agevp-message {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
}

.agevp-message p:last-child {
  margin-bottom: 0;
}

.agevp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.agevp-btn {
  min-width: 160px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.agevp-btn:hover,
.agevp-btn:focus {
  transform: translateY(-1px);
  opacity: 0.92;
}

.agevp-btn-accept {
  background: #111;
  color: #fff;
}

.agevp-btn-deny {
  background: #e6e6e6;
  color: #111;
}

@media (max-width: 480px) {
  .agevp-modal {
    padding: 24px 18px;
  }

  .agevp-title {
    font-size: 24px;
  }

  .agevp-btn {
    width: 100%;
  }
}
