:root {
  --cw-bg:#f5f5f5;
  --cw-fg:#222;
  --cw-radius:8px;
  --cw-shadow:0 8px 24px rgba(0,0,0,0.08);
  --cw-transition:.25s ease;
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --cw-bg:#1f1f25;
    --cw-fg:#e8e8ea;
  }
}
#copyright-widget {
  position: relative;
  padding: 12px 16px;
  background: var(--cw-bg);
  color: var(--cw-fg);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.04);
  box-sizing:border-box;
}
#copyright-widget a {
  color: inherit;
  text-decoration: underline;
  font-size: 13px;
  margin-left:4px;
}
#cw-gear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding:4px;
  line-height:1;
  margin-left:6px;
}
#cw-gear:focus { outline:2px solid #4d90fe; border-radius:4px; }
