/* ============================================================================
   BBSGOOD.STV 统一支付密码弹窗组件样式
   ============================================================================ */

.pay-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pay-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.pay-modal-box {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 16px;
  padding: 25px 20px;
  width: 90%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pay-modal-icon {
  font-size: 32px;
  margin-bottom: 6px;
}

.pay-modal-title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 6px;
}

.pay-modal-desc {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 18px;
  line-height: 1.5;
}

.pay-pwd-input {
  width: 100%;
  padding: 12px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  letter-spacing: 8px;
  margin-bottom: 8px;
  outline: none;
  box-sizing: border-box;
}

.pay-pwd-input:focus {
  border-color: #facc15;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

.pay-pwd-error {
  color: #ef4444;
  font-size: 12px;
  margin-bottom: 14px;
  min-height: 18px;
}

.pay-modal-btns {
  display: flex;
  gap: 10px;
}

.pay-modal-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.pay-btn-cancel {
  background: #1f2937;
  color: #cbd5e1;
}

.pay-btn-cancel:hover {
  background: #374151;
  color: #fff;
}

.pay-btn-confirm {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  color: #000;
}

.pay-btn-confirm:hover {
  background: linear-gradient(135deg, #facc15, #eab308);
}