.popup-sub {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;

  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.popup-icons {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.popup-icons img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  transition: transform .3s;
}

.popup-icons img:hover {
  transform: scale(1.1);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
}
