#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: 99999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
#privacy-popup p {
  margin: 0;
  flex: 1;
  padding-right: 20px;
}
#privacy-popup a {
  color: #ffd700;
  text-decoration: underline;
}
#privacy-popup .btn-group {
  display: flex;
  gap: 10px;
}
#privacy-popup button {
  background-color: 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;
}
#privacy-popup button:hover {
  background-color: rgba(255,255,255,0.3);
}
#privacy-popup button:first-child {
  background-color: #fff;
  color: #764ba2;
  border: none;
}
#privacy-popup button:first-child:hover {
  background-color: #f0f0f0;
}
@media (max-width: 768px) {
  #privacy-popup {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  #privacy-popup p {
    padding-right: 0;
    margin-bottom: 15px;
  }
  #privacy-popup .btn-group {
    width: 100%;
    justify-content: center;
  }
  #privacy-popup button {
    flex: 1;
    max-width: 140px;
  }
}