.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup {
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: pop 0.25s ease;
  font-family: Arial, sans-serif;
}

@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header h2 {
  font-size: 20px;
  margin: 0;
}

.close {
  font-size: 26px;
  cursor: pointer;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.methods {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f6f6f6;
  transition: 0.2s;
  width: 100%;
}

.method:hover {
  background: #ececec;
  transform: scale(1.02);
}

.method img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.number,
.name {
  font-weight: bold;
  font-size: 14px;
}

.type {
  font-size: 12px;
  color: #777;
}

.bonus {
  font-size: 50px;
}

@media (max-width: 500px) {
  .popup {
    width: 95%;
    padding: 15px;
  }

  .popup-header h2 {
    font-size: 18px;
  }
}
