#cookie-banner {
  position: fixed;
  inset: auto 0 0 0; /* bottom bar */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: 12px 20px;
  background: #181808;
  color: #F9FCFF;
  font-size: 14px;
  z-index: 9999;
}
#cookie-banner[hidden] { display: none; }
#cookie-banner p { margin: 0; }
#cookie-banner a { color: #49B1BB; text-decoration: underline; }
#cookie-accept {
  background: #BA6;
  border: none;
  color: #181808;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}
#cookie-accept:focus-visible {
  outline: 2px solid #F9FCFF;
  outline-offset: 2px;
}