/* Embed-only layout for /embed/othello/. The game UI (markup, CSS and the
   full AI engine) is inlined in index.html; this file just frames it for an
   iframe. max-width is sized to the 8×8 board at its largest cell size. */
html, body.lk-embed {
  margin: 0;
  padding: 0;
  background: transparent;
}
body.lk-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  box-sizing: border-box;
}
body.lk-embed main {
  width: 100%;
  max-width: 540px;
  margin: 0;
  padding: 0;
}
body.lk-embed #ot-wrap {
  min-height: 0;
  padding: 8px 4px 18px;
}
.embed-attrib {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1f9d57;
  text-decoration: none;
  opacity: 0.85;
}
.embed-attrib:hover { opacity: 1; text-decoration: underline; }
