#privacy-popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 16px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
#privacy-popup p {
  margin: 0;
  flex: 1;
  padding-right: 16px;
  font-size: 14px;
  line-height: 1.4;
}
#privacy-popup a {
  color: #4a9eff;
  text-decoration: underline;
}
#privacy-popup .btn-container {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
#privacy-popup button {
  background-color: #4a9eff;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.2s;
}
#privacy-popup button:hover {
  background-color: #3a8eef;
}
#privacy-popup button.decline {
  background-color: transparent;
  border: 1px solid #666;
}
#privacy-popup button.decline:hover {
  background-color: rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
  #privacy-popup {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  #privacy-popup p {
    padding-right: 0;
    margin-bottom: 12px;
  }
  #privacy-popup .btn-container {
    justify-content: center;
  }
}