#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1c1c22;
  border-top: 1px solid #2a2a35;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: inherit;
  font-size: 13px;
  color: #9090a0;
}
#cookie-banner a {
  color: #2ec89a;
  text-decoration: none;
}
#cc-accept {
  background: #2ec89a;
  color: #0d0d10;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
#cc-decline {
  background: transparent;
  color: #5a5a70;
  border: 1px solid #2a2a35;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
#cc-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: stretch; }
  #cc-buttons { flex-direction: column; }
  #cc-accept, #cc-decline { width: 100%; text-align: center; }
}
