.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-container {
  position: relative;
  max-width: 400px;
  width: 80%;
}

.popup-container a {
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.popup-image {
  width: 100%;
  border-radius: 5px;
  display: block;
}

.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: #ebcc05;
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
}

.popup-checkbox {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-checkbox input {
  width: 16px;
  height: 16px;
}

.popup-checkbox label {
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .popup-container {
    max-width: 90%;
  }
  
  .popup-checkbox {
    bottom: -35px;
  }
}

@media (max-width: 480px) {
  .popup-close {
    width: 25px;
    height: 25px;
    font-size: 16px;
    top: -10px;
    right: -10px;
  }
  
  .popup-checkbox {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .popup-checkbox input {
    width: 14px;
    height: 14px;
  }
  
  .popup-checkbox label {
    font-size: 12px;
  }
} 