/* Popup Overlay Styles */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Popup Content Container */
#popup-content {
  background: white;
  width: 450px;
  max-width: 90vw;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  font-family: sans-serif;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

/* Close Button */
#popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

#popup-close:hover {
  background-color: #f0f0f0;
}

/* Google Play Logo */
.popup-logo {
  width: 60px;
  margin-bottom: 10px;
}

/* Popup Text Styles */
.popup-title {
  font-size: 16px;
  margin-bottom: 20px;
}

.popup-highlight {
  color: #01875f;
}

/* App Info Section */
.popup-app-info {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 12px 10px;
  margin-bottom: 25px;
}

.popup-app-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  margin-right: 10px;
}

.popup-app-details {
  text-align: left;
}

.popup-app-name {
  font-size: 16px;
  font-weight: bold;
}

.popup-app-developer {
  font-size: 13px;
  color: #01875f;
}

.popup-app-verified {
  font-size: 10px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.popup-shield-icon {
  width: 10px;
}

/* Gift Card Image */
.popup-gift-image {
  width: 120px;
  margin-bottom: 15px;
}

/* Description Text */
.popup-description {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Install Button */
.popup-install-btn {
  width: 90%;
  background-color: #01875f;
  color: white;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.popup-install-btn:hover {
  background-color: #016b4a;
}

/* Responsive Design */
@media (max-width: 480px) {
  #popup-content {
    width: 95vw;
    padding: 25px 15px;
  }
  
  .popup-app-info {
    padding: 10px 8px;
  }
  
  .popup-app-icon {
    width: 45px;
    height: 45px;
  }
  
  .popup-app-name {
    font-size: 14px;
  }
  
  .popup-app-developer {
    font-size: 12px;
  }
}
