.pp-login-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.72);
}

.pp-login-popup.show {
  display: flex;
}

.pp-popup-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 30px 24px 24px;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #20140b, #0d0805);
  border: 1px solid rgba(255,204,105,0.45);
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

.pp-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.pp-popup-box h3 {
  color: #ffd27a;
  font-size: 20px;
  margin-bottom: 10px;
}

.pp-popup-box p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.pp-popup-ok {
  min-width: 110px;
  padding: 10px 26px;
  border: 0;
  border-radius: 30px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(180deg, #ffcf75, #9f6224);
}