.pu-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.pu-popup-content {
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  display: inline-block;
  /*background: white;*/
  padding: 20px;
  border-radius: 10px;
}

.pu-popup-link {
  position: relative;
  display: inline-block;
}

.pu-bg-img {
  width: 400px;
  max-width: 90vw;
  height: auto;
  display: block;
  animation: rotateBg 8s linear infinite;
}

.pu-device-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  max-width: 260px;
  pointer-events: none;
}

.pu-popup-img {
  width: 400px;
  max-width: 90vw;
  height: auto;
  display: block;
  cursor: pointer;
}

.pu-popup-close {
  position: absolute;
  top: -12px;
  right: -15px;
  background: transparent;   
  border: none;
  font-size: 24px;
  color: #fff;               
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: none;          
}

.pu-popup-close:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {

  .pu-bg-img {
    width: 80vw;          
    max-width: none;      
  }

  .pu-device-img {
    width: 70%;           
    max-width: none;
  }
}

#priceBarContainer {
  transition: all 0.3s ease;
}

/* Rotation animation */
@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}