/* popup-style.css */
.popup-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup {
  /*background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/video_game_trailer1.png');*/
  background-size: cover;
  background-position: center;
  padding: 20px;
  box-sizing: border-box;
  width: 600px; /* Adjust as needed */
  position: relative;
  color: black;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.offer-price {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0.5em 0;
}

.inquire-btn, .continue-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #f00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.continue-btn {
  background-color: #555;
}

.inquire-btn:hover {
  background-color: #c00;
}

.continue-btn:hover {
  background-color: #333;
}

/*h2, .offer-price, p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}*
