#privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 15px 20px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  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-group {
  display: flex;
  gap: 10px;
}
#privacy-popup button {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
}
#privacy-popup button:hover {
  background: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  #privacy-popup {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  #privacy-popup p {
    margin-bottom: 10px;
  }
}