/* 付费墙 - 模糊遮罩 */
.paywall-blur {
  position: relative;
  overflow: hidden;
}
.paywall-blur .pw-content {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  pointer-events: none;
  user-select: none;
  transition: filter .4s;
}
.paywall-blur .pw-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  z-index: 2;
  transition: opacity .3s;
  border-radius: 10px;
}
.paywall-blur .pw-overlay:hover {
  background: rgba(255,255,255,.45);
}
.pw-lock-icon {
  font-size: 28px;
  opacity: .7;
}
.pw-lock-text {
  font-size: 13px;
  font-weight: 700;
  color: #C0392B;
  background: rgba(255,255,255,.8);
  padding: 6px 18px;
  border-radius: 6px;
  letter-spacing: 1px;
}
.pw-unlocked .pw-content {
  filter: none !important;
  -webkit-filter: none !important;
}
.pw-unlocked .pw-overlay {
  display: none !important;
}

/* 付费弹窗 */
.pw-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pw-modal.show {
  display: flex;
}
.pw-modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 380px;
  width: 100%;
  padding: 28px 24px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  text-align: center;
  position: relative;
}
.pw-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.pw-modal-icon {
  font-size: 40px;
  margin-bottom: 8px;
}
.pw-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #2a1a0a;
  margin-bottom: 4px;
}
.pw-modal-sub {
  font-size: 13px;
  color: #7a7269;
  margin-bottom: 16px;
  line-height: 1.5;
}
.pw-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 16px;
}
.pw-price-item {
  padding: 10px 6px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #eee;
}
.pw-price-item.pw-highlight {
  background: linear-gradient(135deg,#fef2f2,#fce4e4);
  border-color: #C0392B;
}
.pw-price-item .pw-ptag {
  font-size: 9px;
  color: #999;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.pw-price-item .pw-pnum {
  font-size: 20px;
  font-weight: 800;
  color: #C0392B;
}
.pw-price-item .pw-pdesc {
  font-size: 10px;
  color: #7a7269;
  margin-top: 2px;
}
.pw-modal-qr {
  margin: 12px 0;
}
.pw-modal-qr img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 1px solid #eee;
}
.pw-modal-wx {
  font-size: 12px;
  color: #7a7269;
  margin-bottom: 8px;
}
.pw-modal-wx strong {
  color: #C0392B;
  cursor: pointer;
}
.pw-modal-code {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  border-top: 1px solid #f0ece6;
  padding-top: 12px;
}
.pw-modal-code input {
  flex: 1;
  padding: 8px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  text-align: center;
  letter-spacing: 3px;
}
.pw-modal-code input:focus {
  border-color: #C0392B;
}
.pw-modal-code button {
  padding: 8px 18px;
  background: #C0392B;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.pw-modal-code button:hover {
  background: #9a281a;
}
.pw-modal-foot {
  font-size: 10px;
  color: #bbb;
  margin-top: 10px;
}
