#fakeInfoPopup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg, #f7d86d, #f7b500);
  color: #222;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  padding: 14px 18px;
  z-index: 999999;
  min-width: 300px;
  max-width: 340px;
  font-family: sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#fakeInfoPopup.popup-show {
  opacity: 1;
  transform: translateX(0);
}

.fakeInfo-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.fakeInfo-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fakeInfo-name {
  font-weight: bold;
  color: #222;
}

.fakeInfo-game {
  font-size: 13px;
  color: #444;
}

.fakeInfo-amount {
  font-size: 14px;
  font-weight: bold;
  color: #d0021b;
}

.fakeInfo-payment {
  font-size: 13px;
  color: #333;
}
