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