.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 16px;
  box-sizing: border-box;
  display: none;
  z-index: 9999;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
.privacy-popup p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.4;
}
.privacy-popup a {
  color: #4a9eff;
  text-decoration: none;
}
.privacy-popup a:hover {
  text-decoration: underline;
}
.privacy-popup .btn-container {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.privacy-popup button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.privacy-popup .accept-btn {
  background-color: #4a9eff;
  color: #ffffff;
}
.privacy-popup .accept-btn:hover {
  background-color: #357abd;
}
.privacy-popup .decline-btn {
  background-color: #333333;
  color: #ffffff;
}
.privacy-popup .decline-btn:hover {
  background-color: #444444;
}
@media (max-width: 480px) {
  .privacy-popup {
    width: 100%;
    border-radius: 0;
  }
  .privacy-popup .btn-container {
    flex-direction: column;
  }
  .privacy-popup button {
    width: 100%;
  }
}