.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
  display: none;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.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-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.privacy-popup button {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.privacy-popup button:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.privacy-popup button:first-child {
  background: rgba(255,255,255,0.9);
  color: #667eea;
  border: none;
}
.privacy-popup button:first-child:hover {
  background: #fff;
}
@media (max-width: 480px) {
  .privacy-popup {
    width: 100%;
    border-radius: 0;
    padding: 15px;
  }
  .privacy-popup p {
    font-size: 13px;
  }
  .privacy-popup .btn-container {
    justify-content: stretch;
  }
  .privacy-popup button {
    flex: 1;
    font-size: 13px;
  }
}