#privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 99999;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
#privacy-popup p {
  margin: 0;
  flex: 1;
}
#privacy-popup a {
  color: #ffd700;
  text-decoration: underline;
}
#privacy-popup .btn-container {
  display: flex;
  gap: 10px;
}
#privacy-popup button {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
}
#privacy-popup button:hover {
  background-color: #fff;
  color: #667eea;
}
@media (max-width: 768px) {
  #privacy-popup {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  #privacy-popup p {
    margin-bottom: 15px;
  }
}