@property --bg-0 {
  syntax: "<color>";
  inherits: true;
  initial-value: #ffffff;
}
@property --text-0 {
  syntax: "<color>";
  inherits: true;
  initial-value: #000000;
}
@property --border-color {
  syntax: "<color>";
  inherits: true;
  initial-value: #dddddd;
}
@property --cli-color {
  syntax: "<color>";
  inherits: true;
  initial-value: #3db83d;
}
:root {
  --text-font: monospace;
  --code-font: monospace;
  color-scheme: light;
  --bg-0: #ffffff;
  --text-0: #000000;
  --accent-color: #888888;
  --meta-color: #888888;
  --border-color: #dddddd;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    color-scheme: dark;
    --bg-0: #111111;
    --text-0: #ffffff;
    --accent-color: #888888;
    --meta-color: #888888;
    --border-color: #484848;
    --cli-color: oklch(from #3db83d calc(l + 0.08) c h);
    --palette-green: var(--cli-color);
  }
}
:root[data-theme=dark] {
  color-scheme: dark;
  --bg-0: #111111;
  --text-0: #ffffff;
  --accent-color: #888888;
  --meta-color: #888888;
  --border-color: #484848;
  --cli-color: oklch(from #3db83d calc(l + 0.08) c h);
  --palette-green: var(--cli-color);
}

:root {
  --palette-B-bright: #4499ee;
  --palette-B-dim: #2266bb;
  --palette-blue: #4499ee;
  --palette-C-bright: #66ddee;
  --palette-C-dim: #44aacc;
  --palette-cyan: #66ddee;
  --palette-G-bright: #3db83d;
  --palette-G-dim: #2f9a2f;
  --palette-M-bright: #ee77bb;
  --palette-M-dim: #8844bb;
  --palette-magenta: #ee77bb;
  --palette-O-bright: #ff9933;
  --palette-O-dim: #dd7722;
  --palette-orange: #ff9933;
  --palette-R-bright: #ee5566;
  --palette-R-dim: #cc4455;
  --palette-red: #ee5566;
  --palette-W-bright: #eed044;
  --palette-W-dim: #aa8844;
  --palette-yellow: #eed044;
  --palette-violet: #8844bb;
  --cli-color: #3db83d;
  --palette-green: var(--cli-color);
  --error-color: #ee5566;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    --palette-B-bright: #4499ee;
    --palette-B-dim: #2266bb;
    --palette-blue: #4499ee;
    --palette-C-bright: #66ddee;
    --palette-C-dim: #44aacc;
    --palette-cyan: #66ddee;
    --palette-G-bright: #3db83d;
    --palette-G-dim: #2f9a2f;
    --palette-M-bright: #ee77bb;
    --palette-M-dim: #8844bb;
    --palette-magenta: #ee77bb;
    --palette-O-bright: #ff9933;
    --palette-O-dim: #dd7722;
    --palette-orange: #ff9933;
    --palette-R-bright: #ee5566;
    --palette-R-dim: #cc4455;
    --palette-red: #ee5566;
    --palette-W-bright: #eed044;
    --palette-W-dim: #aa8844;
    --palette-yellow: #eed044;
    --palette-violet: #8844bb;
    --cli-color: #3db83d;
    --palette-green: var(--cli-color);
    --error-color: #ee5566;
  }
}
:root[data-theme=dark] {
  --palette-B-bright: #4499ee;
  --palette-B-dim: #2266bb;
  --palette-blue: #4499ee;
  --palette-C-bright: #66ddee;
  --palette-C-dim: #44aacc;
  --palette-cyan: #66ddee;
  --palette-G-bright: #3db83d;
  --palette-G-dim: #2f9a2f;
  --palette-M-bright: #ee77bb;
  --palette-M-dim: #8844bb;
  --palette-magenta: #ee77bb;
  --palette-O-bright: #ff9933;
  --palette-O-dim: #dd7722;
  --palette-orange: #ff9933;
  --palette-R-bright: #ee5566;
  --palette-R-dim: #cc4455;
  --palette-red: #ee5566;
  --palette-W-bright: #eed044;
  --palette-W-dim: #aa8844;
  --palette-yellow: #eed044;
  --palette-violet: #8844bb;
  --cli-color: #3db83d;
  --palette-green: var(--cli-color);
  --error-color: #ee5566;
}

.palette--blue {
  color: var(--palette-blue);
}
.palette--blue a {
  color: inherit;
}

.palette--cyan {
  color: var(--palette-cyan);
}
.palette--cyan a {
  color: inherit;
}

.palette--green {
  color: var(--palette-green);
}
.palette--green a {
  color: inherit;
}

.palette--magenta {
  color: var(--palette-magenta);
}
.palette--magenta a {
  color: inherit;
}

.palette--orange {
  color: var(--palette-orange);
}
.palette--orange a {
  color: inherit;
}

.palette--red {
  color: var(--palette-red);
}
.palette--red a {
  color: inherit;
}

.palette--yellow {
  color: var(--palette-yellow);
}
.palette--yellow a {
  color: inherit;
}

.palette--violet {
  color: var(--palette-violet);
}
.palette--violet a {
  color: inherit;
}

:root {
  color-scheme: dark;
  --bg-0: #111111;
  --text-0: #ffffff;
  --accent-color: #888888;
  --meta-color: #888888;
  --border-color: #484848;
  --cli-color: oklch(from #3db83d calc(l + 0.08) c h);
  --palette-green: var(--cli-color);
}

html {
  background-color: var(--bg-0);
  font-size: 14px;
  color: var(--text-0);
  font-family: var(--text-font);
  line-height: 1.5em;
}

body {
  margin: 0;
}

.world-page {
  box-sizing: border-box;
  width: 900px;
  max-width: calc(100% - 1.5rem);
  margin: 0.75rem auto;
}

.world-page:has(.world-device) {
  width: max-content;
}

a {
  color: var(--text-0);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.meta-color {
  color: var(--meta-color);
}

.comments-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.comments-error {
  color: var(--error-color);
  margin: 0;
}

.world-page {
  --world-side-min: 36rem;
  --world-play-size: min(78vh, calc(100vh - 6rem));
  --world-panel-stack: calc(var(--world-sel-tile-size) + 1.3em);
  --world-map-size: min(
    calc(var(--world-play-size) - var(--world-panel-stack)),
    calc(100vw - var(--world-side-min) - 2rem)
  );
  --world-cell: 26px;
  --world-gap: 0;
  --world-sel-tile-size: 56px;
  --world-panel-row: calc(var(--world-sel-tile-size) / 3);
  --world-stage-inset: 0.75em;
  --world-divider: 1px dotted color-mix(in srgb, var(--meta-color) 55%, transparent);
  --world-plantable-bg: color-mix(in srgb, var(--meta-color) 14%, var(--bg-0));
  --world-selected-overlay: color-mix(in srgb, var(--text-0) 32%, transparent);
  --world-plantable-mark: var(--meta-color);
  --world-plus-stroke: 1px;
  --world-plus-arm: 11px;
  --world-plantable-dash: 1px dashed color-mix(in srgb, var(--meta-color) 45%, transparent);
  --world-chassis-bg: color-mix(in srgb, var(--meta-color) 12%, var(--bg-0));
  --world-screen-bg: color-mix(in srgb, var(--meta-color) 6%, var(--bg-0));
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .world-page {
    --world-screen-bg: var(--bg-0);
  }
}
:root[data-theme=dark] .world-page {
  --world-screen-bg: var(--bg-0);
}
.world-page p {
  margin: 0;
}

.world-device-head {
  padding: 0.55em var(--world-stage-inset);
  border-bottom: var(--world-divider);
  line-height: 1.35;
  font-size: inherit;
  font-weight: inherit;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1em;
}
.world-device-head .world-device-title {
  color: var(--cli-color);
  font-weight: inherit;
}
.world-device-head .world-device-links {
  flex: 0 0 auto;
  white-space: nowrap;
}
.world-device-head .world-device-links a {
  color: inherit;
  text-decoration: underline;
}
.world-device-head .world-device-links a:hover {
  color: var(--text-0);
  text-decoration: none;
}
.world-device-head .world-device-links-sep {
  margin: 0 0.35em;
}

.world-device {
  border: 1px solid color-mix(in srgb, var(--cli-color) 16%, transparent);
  background: color-mix(in srgb, var(--cli-color) 3%, transparent);
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  background: var(--world-chassis-bg);
}

.world-layout {
  display: grid;
  grid-template-columns: var(--world-map-size) minmax(var(--world-side-min), 48rem);
  align-items: start;
}

.world-play {
  display: flex;
  flex-direction: column;
  width: var(--world-map-size);
  height: calc(var(--world-map-size) + var(--world-panel-stack));
  border-right: var(--world-divider);
}

.world-side {
  min-width: 0;
  height: calc(var(--world-map-size) + var(--world-panel-stack));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.world-stage-toolbar {
  margin: 0;
  padding: 0.65em var(--world-stage-inset);
  border-top: var(--world-divider);
  flex: 0 0 auto;
}

.world-map-shell {
  box-sizing: border-box;
  width: var(--world-map-size);
  height: var(--world-map-size);
  overflow: hidden;
  background: var(--world-screen-bg);
  touch-action: none;
  cursor: grab;
  user-select: none;
  flex: 0 0 auto;
}
.world-map-shell.is-panning {
  cursor: grabbing;
}

.world-map-stage {
  transform-origin: 0 0;
  width: fit-content;
  height: fit-content;
  will-change: transform;
}

.world-map-grid {
  display: grid;
  gap: var(--world-gap);
  width: fit-content;
  background: transparent;
}

.world-map-grid .world-pixel-tile {
  image-rendering: pixelated;
}

.world-cell {
  position: relative;
  width: var(--world-cell);
  height: var(--world-cell);
  cursor: default;
  user-select: none;
  background: transparent;
}
.world-cell.plantable {
  cursor: pointer;
  background-color: var(--world-plantable-bg);
}
.world-cell.plantable::before {
  content: "";
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--world-plantable-mark), var(--world-plantable-mark)), linear-gradient(var(--world-plantable-mark), var(--world-plantable-mark));
  background-size: var(--world-plus-stroke) var(--world-plus-arm), var(--world-plus-arm) var(--world-plus-stroke);
  background-position: center;
  background-repeat: no-repeat;
}
.world-cell.plantable::after {
  content: "";
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border: none;
  pointer-events: none;
  z-index: 1;
}
.world-cell.plantable.plantable-dash-t::after {
  border-top: var(--world-plantable-dash);
}
.world-cell.plantable.plantable-dash-b::after {
  border-bottom: var(--world-plantable-dash);
}
.world-cell.plantable.plantable-dash-l::after {
  border-left: var(--world-plantable-dash);
}
.world-cell.plantable.plantable-dash-r::after {
  border-right: var(--world-plantable-dash);
}
.world-cell.plantable:hover:not(.selected) {
  box-shadow: inset 0 0 0 9999px var(--world-selected-overlay);
}
.world-cell.plantable.selected {
  box-shadow: inset 0 0 0 9999px var(--world-selected-overlay);
}
.world-cell.selected:not(.plantable)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--world-selected-overlay);
  pointer-events: none;
  z-index: 2;
}

.world-pixel-tile {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}
.world-pixel-tile svg {
  width: 100%;
  height: 100%;
  display: block;
  shape-rendering: crispEdges;
}

.world-selection-empty {
  width: var(--world-sel-tile-size);
  height: var(--world-sel-tile-size);
  background: var(--border-color);
}

.world-plantable-preview {
  position: relative;
  display: block;
  width: var(--world-sel-tile-size);
  height: var(--world-sel-tile-size);
  --world-plus-stroke: 1px;
  --world-plus-arm: 24px;
  background-color: var(--world-plantable-bg);
  background-image: linear-gradient(var(--world-plantable-mark), var(--world-plantable-mark)), linear-gradient(var(--world-plantable-mark), var(--world-plantable-mark));
  background-size: var(--world-plus-stroke) var(--world-plus-arm), var(--world-plus-arm) var(--world-plus-stroke);
  background-position: center;
  background-repeat: no-repeat;
}

.world-panel {
  display: grid;
  grid-template-columns: minmax(16em, 1.6fr) minmax(0, 1fr) calc(0.75em + var(--world-sel-tile-size));
  gap: 0;
  align-items: stretch;
  height: var(--world-sel-tile-size);
}

.world-panel-view {
  display: grid;
  grid-template-columns: var(--world-sel-tile-size) 1fr;
  grid-template-rows: repeat(3, var(--world-panel-row));
  column-gap: 0.75em;
  align-items: center;
  height: var(--world-sel-tile-size);
}

.world-panel-tile {
  grid-column: 1;
  grid-row: 1/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.world-panel-tile .world-pixel-tile {
  width: var(--world-sel-tile-size);
  height: var(--world-sel-tile-size);
  image-rendering: pixelated;
}

.world-panel-lines {
  grid-column: 2;
  grid-row: 1/4;
  display: grid;
  grid-template-rows: repeat(3, var(--world-panel-row));
  align-items: center;
  align-self: stretch;
  min-width: 0;
}
.world-panel-lines p {
  margin: 0;
  line-height: var(--world-panel-row);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.world-panel-middle {
  display: grid;
  grid-template-rows: repeat(3, var(--world-panel-row));
  align-items: center;
  align-self: stretch;
  min-width: 0;
  height: var(--world-sel-tile-size);
  padding-left: 0.75em;
  border-left: var(--world-divider);
  overflow: visible;
}

.world-panel-roll {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  height: var(--world-sel-tile-size);
  padding-left: 0.75em;
  border-left: var(--world-divider);
}

.world-panel-form {
  display: none;
  grid-row: 1/4;
  grid-column: 1;
  grid-template-rows: repeat(3, var(--world-panel-row));
  align-items: center;
  align-self: stretch;
  min-width: 0;
  opacity: 0.55;
  pointer-events: none;
}
.world-panel-form p {
  margin: 0;
  line-height: var(--world-panel-row);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.world-panel-form .world-form-line {
  display: flex;
  align-items: baseline;
  max-width: 100%;
  height: var(--world-panel-row);
  min-width: 0;
  overflow: visible;
}
.world-panel-form .world-form-intro p {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.world-panel-form .world-form-intro-lead {
  color: var(--cli-color);
}
.world-panel-form #world-form-status.world-form-status--exhausted {
  color: var(--error-color);
}
.world-panel-form .world-form-intro-note a {
  color: inherit;
  text-decoration: underline;
}
.world-panel-form .world-form-intro-note a:hover {
  color: var(--text-0);
  text-decoration: none;
}
.world-panel-form .world-form-field {
  display: flex;
  flex: 1 1 auto;
  align-items: baseline;
  gap: 0.35rem;
  min-width: 0;
}
.world-panel-form .world-form-label {
  flex: 0 0 auto;
  color: var(--text-0);
}
.world-panel-form .world-planter-hint {
  position: relative;
  flex: 0 0 auto;
  cursor: help;
  user-select: none;
  line-height: 1;
}
.world-panel-form .world-planter-hint:not(.is-visible) {
  display: none;
}
.world-panel-form .world-planter-hint-trigger {
  color: #e8a030;
}
.world-panel-form .world-planter-hint-popover {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  box-sizing: border-box;
  width: max-content;
  max-width: min(18em, 70vw);
  padding: 0.45em 0.55em;
  color: var(--text-0);
  background: var(--bg-0);
  border: 1px solid color-mix(in srgb, #e8a030 55%, var(--meta-color));
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.45em;
  pointer-events: none;
}
.world-panel-form .world-planter-hint:hover .world-planter-hint-popover,
.world-panel-form .world-planter-hint:focus-visible .world-planter-hint-popover,
.world-panel-form .world-planter-hint.is-open .world-planter-hint-popover {
  display: grid;
}
.world-panel-form .world-planter-hint-popover-icon {
  align-self: center;
  color: #e8a030;
  font-size: 1.1em;
  line-height: 1;
}
.world-panel-form .world-planter-hint-popover-text {
  display: grid;
  gap: 0.1em;
  min-width: 0;
  font-size: 0.92em;
  line-height: 1.25;
}
.world-panel-form .world-form-input {
  flex: 1 1 auto;
  min-width: 0;
  font: inherit;
  color: var(--text-0);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
}
.world-panel-form .world-form-input::placeholder {
  color: var(--meta-color);
}
.world-panel-form .world-form-input:focus {
  box-shadow: none;
}

.world-panel.is-idle {
  grid-template-columns: minmax(0, 1fr);
}

.world-panel.is-idle .world-panel-middle,
.world-panel.is-idle .world-panel-roll {
  display: none;
}

.world-panel:not(.is-idle) .world-panel-form {
  display: grid;
}

.world-panel.is-plant .world-panel-form {
  opacity: 1;
  pointer-events: auto;
}

.world-roll-btn {
  flex: 0 0 auto;
  width: var(--world-sel-tile-size);
  height: var(--world-sel-tile-size);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font: inherit;
  line-height: 1.15;
  color: var(--cli-color);
  background: transparent;
  border: 1px solid var(--cli-color);
  padding: 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.12s ease, background-color 0.12s ease;
}
.world-roll-btn:disabled {
  cursor: default;
  opacity: 0.45;
  border-color: color-mix(in srgb, var(--cli-color) 45%, var(--meta-color));
  color: var(--meta-color);
}
.world-roll-btn.is-exhausted:disabled {
  opacity: 1;
  color: var(--error-color);
  border-color: var(--error-color);
}
.world-roll-btn:not(:disabled):hover {
  color: var(--bg-0);
  background: var(--cli-color);
}

.world-roll-btn-line {
  display: block;
}

.world-panel-error {
  margin: 0;
  padding: 0.35em var(--world-stage-inset);
  border-top: var(--world-divider);
  flex: 0 0 auto;
}
.world-panel-error[hidden] {
  display: none;
}

@media only screen and (max-width: 720px) {
  .world-page:has(.world-device) {
    width: auto;
  }
  .world-layout {
    grid-template-columns: 1fr;
  }
  .world-play {
    width: 100%;
    height: auto;
    border-right: none;
  }
  .world-map-shell {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-bottom: none;
  }
  .world-side {
    height: auto;
    overflow: visible;
  }
  .world-social,
  .world-registry {
    overflow: visible;
  }
  .world-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) calc(0.75em + var(--world-sel-tile-size));
  }
}
.world-name-gradient {
  background: linear-gradient(90deg, var(--palette-green), var(--palette-cyan) 55%, var(--palette-magenta));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.world-name-fx {
  display: inline-block;
}

.world-name-fill--gradient {
  display: inline-block;
}

.world-name-fx--glow,
.world-name-fx--glow-shimmer {
  filter: drop-shadow(0 0 0.35em color-mix(in srgb, var(--cli-color) 55%, transparent));
}

@media (prefers-reduced-motion: no-preference) {
  .world-name-fx--shimmer .world-name-fill--gradient,
  .world-name-fx--glow-shimmer .world-name-fill--gradient {
    background-size: 220% 100%;
    animation: world-name-shimmer-slide 7s linear infinite;
  }
  .world-name-fx--shimmer .world-name-fill--sequence .world-name-seq-char,
  .world-name-fx--glow-shimmer .world-name-fill--sequence .world-name-seq-char {
    animation: world-name-seq-wave 2.8s ease-in-out infinite;
    animation-delay: calc(var(--seq-i) * -0.16s);
  }
  .world-name-fx--shimmer .world-name-fill--solid,
  .world-name-fx--glow-shimmer .world-name-fill--solid {
    animation: world-name-shimmer-pulse 4.5s ease-in-out infinite;
  }
}
@media (prefers-reduced-motion: reduce) {
  .world-name-fx--shimmer,
  .world-name-fx--glow-shimmer,
  .world-name-fx--shimmer .world-name-fill--gradient,
  .world-name-fx--glow-shimmer .world-name-fill--gradient,
  .world-name-fx--shimmer .world-name-fill--sequence .world-name-seq-char,
  .world-name-fx--shimmer .world-name-fill--solid {
    animation: none !important;
  }
}
@keyframes world-name-shimmer-slide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes world-name-seq-wave {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.38);
  }
}
@keyframes world-name-shimmer-pulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.28);
  }
}
.world-name-glow-cyan {
  background: linear-gradient(90deg, var(--palette-cyan), var(--palette-green) 40%, var(--palette-blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.world-name-stripes .c0 {
  color: var(--palette-green);
}

.world-name-stripes .c1 {
  color: color-mix(in srgb, var(--palette-green) 38%, var(--bg-0));
}

.world-name-rose .g {
  color: var(--palette-green);
}

.world-name-rose .r {
  color: var(--palette-red);
}

.world-name-sun .g {
  color: var(--palette-green);
}

.world-name-sun .y {
  color: var(--palette-yellow);
}

.world-name-violet .g {
  color: var(--palette-green);
}

.world-name-violet .v {
  color: var(--palette-violet);
}

.world-name-fern .g {
  color: var(--palette-green);
}

.world-name-fern .f {
  color: var(--palette-cyan);
}

.world-name-bamboo .g {
  color: var(--palette-green);
}

.world-name-bamboo .c {
  color: var(--palette-cyan);
}

.world-name-glow .g {
  color: var(--palette-green);
}

.world-name-glow .l {
  color: var(--palette-cyan);
}

.world-social-head {
  padding: 0.55em var(--world-stage-inset);
  border-bottom: var(--world-divider);
  line-height: 1.35;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  flex: 0 0 auto;
}

.world-social {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.world-social > br {
  display: none;
}

.world-lens {
  white-space: nowrap;
  cursor: pointer;
}
.world-lens.is-active {
  color: var(--cli-color);
}
.world-lens:hover:not(.is-active) {
  text-decoration: underline;
}

.world-social-pages {
  flex: 0 0 auto;
  margin: 0.65em 0 0;
  padding: 0 var(--world-stage-inset) 0.85em;
}

.world-paginate-page,
.world-paginate-nav {
  cursor: pointer;
}
.world-paginate-page.is-active,
.world-paginate-nav.is-active {
  color: var(--cli-color);
}
.world-paginate-page.is-disabled,
.world-paginate-nav.is-disabled {
  cursor: default;
  opacity: 0.45;
  color: var(--meta-color);
}
.world-paginate-page:hover:not(.is-active):not(.is-disabled),
.world-paginate-nav:hover:not(.is-active):not(.is-disabled) {
  text-decoration: underline;
}

.world-registry {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 0.45em var(--world-stage-inset) 0;
}

.world-chronicle-log:not([hidden])::before {
  content: "";
  display: block;
  line-height: 1.5em;
  height: 1.5em;
}
.world-chronicle-log[hidden] {
  display: none;
}

.world-chronicle-entry {
  margin: 0;
  line-height: 1.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.world-chronicle-entry.world-row-focusable {
  cursor: pointer;
}
.world-chronicle-entry.world-row-focusable:hover, .world-chronicle-entry.world-row-focusable.is-focused {
  color: var(--cli-color);
}
.world-chronicle-entry.world-row-focusable:hover .comment-author--site, .world-chronicle-entry.world-row-focusable.is-focused .comment-author--site {
  color: inherit;
}

.world-chronicle-pad {
  visibility: hidden;
  user-select: none;
  pointer-events: none;
}

.world-registry table {
  width: 100%;
  border-collapse: collapse;
  font: inherit;
}

.world-registry th,
.world-registry td {
  border: none;
  padding: 0 1em 0 0;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
  font: inherit;
  font-weight: inherit;
}

.world-registry th {
  color: var(--meta-color);
}

.world-registry-tile {
  width: 22px;
  padding-right: 0;
}
.world-registry-tile .world-pixel-tile {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 auto;
  image-rendering: pixelated;
}

.world-site-link {
  color: var(--meta-color);
}

.world-row-discovery .world-discovery-mark {
  color: var(--palette-yellow);
}

.world-chronicle-entry .world-discovery-mark,
.world-chronicle-verb--discovered {
  color: var(--palette-yellow);
}

.world-row-focusable {
  cursor: pointer;
}
.world-row-focusable:hover td {
  color: var(--cli-color);
}
.world-row-focusable:hover .comment-author--site {
  color: inherit;
}
.world-row-focusable.is-focused td {
  color: var(--cli-color);
}
.world-row-focusable.is-focused .comment-author--site {
  color: inherit;
}

.world-row-pad td {
  color: transparent;
  user-select: none;
  pointer-events: none;
}

.world-side .world-row-pad,
.world-side .world-chronicle-pad {
  display: none;
}

.world-planter-page h1 {
  margin: 0;
  font: inherit;
  font-weight: 400;
  color: var(--cli-color);
}
