#cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: none;
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Noto Sans, "Helvetica Neue", "Apple Color Emoji","Segoe UI Emoji";
}
#cookie-consent.show { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
#cookie-consent p { margin: 0; flex: 1; font-size: .95rem; line-height: 1.35; }
#cookie-consent a { color: #61dafb; text-decoration: underline; }
#cookie-consent .actions { display: flex; gap: .5rem; }
#cookie-consent button {
  border: 0; border-radius: 10px; padding: .6rem .9rem; cursor: pointer;
}
#cookie-accept { background: #22c55e; color: #fff; }
#cookie-decline { background: #374151; color: #fff; }
@media (prefers-color-scheme: light) {
  #cookie-consent { background: #fff; color: #111; }
}