.bottom-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 800px;
  background-color: #2d0b5e; /* взять цвет из бэкграунда */
  border: 1px solid #ff00ff; /* как у кнопок */
  border-radius: 12px; /* такое же скругление */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.popup-text {
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
  flex: 1;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.popup-buttons {
  display: flex;
  gap: 8px;
}

.popup-btn {
  background-color: #1a0933;
  color: #fff;
  border: 1px solid #555;
  border-radius: 12px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-btn:hover {
  background-color: #3a3a3a;
}

.bottom-popup.popup-hide {
  transform: translateX(-50%) translateY(100px); /* уходит вниз */
  opacity: 0;
}