#privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 99999;
  display: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
#privacy-popup p {
  margin: 0 0 15px 0;
}
#privacy-popup a {
  color: #4a9eff;
  text-decoration: underline;
}
#privacy-popup a:hover {
  color: #6bb3ff;
}
#privacy-popup .btn-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}
#privacy-popup button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}
#privacy-popup .accept-btn {
  background-color: #4a9eff;
  color: #ffffff;
}
#privacy-popup .accept-btn:hover {
  background-color: #3a8eef;
}
#privacy-popup .decline-btn {
  background-color: #555555;
  color: #ffffff;
}
#privacy-popup .decline-btn:hover {
  background-color: #666666;
}
@media (max-width: 480px) {
  #privacy-popup {
    width: 95%;
    bottom: 10px;
    padding: 15px;
    font-size: 13px;
  }
  #privacy-popup .btn-container {
    flex-direction: column;
  }
  #privacy-popup button {
    width: 100%;
  }
}