.privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 99999;
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.privacy-popup p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.5;
}
.privacy-popup a {
  color: #fff;
  text-decoration: underline;
}
.privacy-popup a:hover {
  text-decoration: none;
}
.privacy-popup .btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.privacy-popup button {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.privacy-popup .accept-btn {
  background: #fff;
  color: #667eea;
}
.privacy-popup .accept-btn:hover {
  background: #f0f0f0;
}
.privacy-popup .decline-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.privacy-popup .decline-btn:hover {
  background: rgba(255,255,255,0.1);
}
@media (max-width: 480px) {
  .privacy-popup {
    width: 95%;
    bottom: 10px;
    padding: 15px;
  }
  .privacy-popup p {
    font-size: 13px;
  }
  .privacy-popup button {
    font-size: 13px;
    padding: 7px 15px;
  }
}