/* ---- Premium gate UI ---- */
#ps-unlock-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3d2712;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(30,20,10,.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .15s ease;
}
#ps-unlock-btn:hover { background: #5c3d1f; transform: scale(1.08); }

#ps-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,20,10,.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ps-modal {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.ps-modal h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #3d2712;
}
.ps-modal p {
  margin: 0 0 16px;
  font-size: .88rem;
  color: #5c5142;
}
.ps-modal input[type="password"],
.ps-modal input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e6dcc6;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 8px;
  transition: border-color .15s;
}
.ps-modal input[type="password"]:focus,
.ps-modal input[type="email"]:focus { border-color: #4f8919; }
.ps-modal-err { min-height: 20px; font-size: .82rem; margin-bottom: 14px; }
.ps-modal-btns { display: flex; gap: 10px; justify-content: flex-end; }
.ps-modal-btns button {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  border: 1.5px solid #e6dcc6;
  background: transparent;
  color: #5c5142;
  transition: background .15s;
}
.ps-modal-btns button:hover { background: #f2ecdf; }
.ps-btn-ok {
  background: #3d6b14 !important;
  color: #fff !important;
  border-color: #3d6b14 !important;
}
.ps-btn-ok:hover { background: #4f8919 !important; }

/* Watermark */
.ps-watermark {
  text-align: center;
  font-size: .68rem;
  color: rgba(61,39,18,.25);
  padding: 4px 0 2px;
  letter-spacing: .04em;
  pointer-events: none;
  user-select: none;
}
