.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 30px 15px;
  background: rgba(0, 0, 0, 0.65);
  overflow-y: auto;
}

.policy-modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.policy-content {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  overflow-y: auto;
  background: #05091d;
  color: #fff;
  border-radius: 12px;
  padding: 34px 38px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.policy-close {
  position: sticky;
  top: 0;
  float: right;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

#policy-body h2 {
  margin: 0 0 24px;
  font-size: 28px;
}

#policy-body h3 {
  margin: 24px 0 10px;
  font-size: 18px;
}

#policy-body p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}