#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 320px;
  max-width: 90%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 0 8px 0 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 99999;
  display: none;
}
#consent-banner p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.4;
}
#consent-banner a {
  color: #ffd700;
  text-decoration: underline;
}
#consent-banner .btn-group {
  display: flex;
  gap: 10px;
}
#consent-banner button {
  flex: 1;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}
#consent-banner button:hover {
  opacity: 0.9;
}
#consent-banner .accept-btn {
  background: #fff;
  color: #667eea;
  font-weight: bold;
}
#consent-banner .decline-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 480px) {
  #consent-banner {
    width: 100%;
    border-radius: 0;
  }
}