/* [project]/src/components/starsea-garden-debug.css [app-client] (css) */
.garden-debug {
  color: #435446;
  min-width: 0;
  font-size: 13px;
}

.garden-debug-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  display: flex;
}

.garden-debug-heading > div {
  min-width: 0;
}

.garden-debug-heading span {
  color: #73846c;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  display: flex;
}

.garden-debug-heading h3 {
  overflow-wrap: anywhere;
  margin: 8px 0;
  font-size: 17px;
}

.garden-debug-heading p {
  margin: 0;
  line-height: 1.8;
}

.garden-debug-heading small {
  color: #838a7d;
  overflow-wrap: anywhere;
  font-size: 10px;
}

.garden-debug button {
  color: #506547;
  min-height: 36px;
  font: inherit;
  cursor: pointer;
  background: #f7f8ef;
  border: 1px solid #cdd5c4;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 12px;
  display: inline-flex;
}

.garden-debug button:hover {
  background: #ebf0e3;
}

.garden-debug button:disabled, .garden-debug :disabled {
  opacity: .6;
  cursor: not-allowed;
}

.garden-debug button:focus-visible, .garden-debug input:focus-visible, .garden-debug select:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #849c6b;
}

.garden-debug-note {
  color: #83877b;
  margin: 14px 0;
  font-size: 12px;
  line-height: 1.8;
}

.garden-debug-status {
  color: #59704d;
  overflow-wrap: anywhere;
  background: #f0f5e9;
  border: 1px solid #dce2cf;
  border-radius: 7px;
  margin: 16px 0;
  padding: 12px 14px;
  line-height: 1.7;
}

.garden-debug-status.is-error {
  color: #995449;
  background: #fff1ea;
  border-color: #e4c7bf;
}

.garden-debug-tabs {
  border-bottom: 1px solid #e2e4d6;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 0 16px;
  display: flex;
}

.garden-debug-tabs button[aria-pressed="true"] {
  color: #fff;
  background: #657f57;
  border-color: #657f57;
}

.garden-debug-controls {
  border: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.garden-debug-controls:disabled {
  opacity: 1;
}

.garden-debug-form {
  border-bottom: 1px solid #e2e4d6;
  padding: 20px 0;
}

.garden-debug-form:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.garden-debug-form h4 {
  color: #435446;
  margin: 0 0 16px;
  font-size: 14px;
}

.garden-debug-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
  display: grid;
}

.garden-debug-field {
  color: #737e69;
  align-content: start;
  gap: 8px;
  min-width: 0;
  font-size: 12px;
  display: grid;
}

.garden-debug-field input, .garden-debug-field select {
  color: #42563e;
  width: 100%;
  min-width: 0;
  height: 40px;
  font: inherit;
  background: #fffefa;
  border: 1px solid #d4d9ca;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
  display: block;
}

.garden-debug-check {
  color: #737e69;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  display: flex;
}

.garden-debug-check input {
  accent-color: #657f57;
  width: 17px;
  height: 17px;
}

.garden-debug button.garden-debug-apply {
  color: #fff;
  background: #657f57;
  border-color: #657f57;
  padding-inline: 18px;
}

.garden-debug-quick {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.garden-debug-quick > span {
  color: #737e69;
  flex-basis: 100%;
  margin: 5px 0;
}

@media (max-width: 600px) {
  .garden-debug-heading {
    flex-direction: column;
    gap: 12px;
  }

  .garden-debug-fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .garden-debug-tabs {
    gap: 6px;
  }

  .garden-debug-tabs button {
    flex: 1 0 28%;
    padding: 8px 5px;
    font-size: 11px;
  }

  .garden-debug-form {
    padding-block: 18px;
  }
}

/* [project]/src/components/starsea-garden-game.css [app-client] (css) */
body:has(.sg-game) {
  background: #f2efe5;
}

:is(body:has(.sg-game) > div, body:has(.sg-game) main) {
  min-width: 0;
}

:is(body:has(.sg-game) .site-header, body:has(.sg-game) .site-footer) {
  display: none;
}

.sg-game {
  --sg-ink: #394c40;
  --sg-muted: #929383;
  --sg-green: #668468;
  --sg-line: #dedecf;
  --sg-paper: #fbfaf3;
  color: var(--sg-ink);
  background: #f2efe5;
  min-height: 100svh;
  font-size: 13px;
}

.sg-game button, .sg-dialog button {
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
}

.sg-game button:disabled, .sg-dialog button:disabled {
  cursor: not-allowed;
  opacity: .46;
}

.sg-game:fullscreen {
  width: 100%;
  overflow-y: auto;
}

.sg-game button:focus-visible, .sg-game a:focus-visible, .sg-dialog button:focus-visible, .sg-dialog input:focus-visible, .sg-dialog select:focus-visible, .sg-dialog textarea:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #b89a59;
}

.sg-masthead {
  background: #faf9f1;
  border-bottom: 1px solid #dedecf;
}

.sg-masthead-inner {
  align-items: center;
  gap: 25px;
  width: min(1456px, 100% - 80px);
  height: 80px;
  margin: auto;
  display: flex;
}

.sg-return {
  color: #939584;
  border-right: 1px solid #dddfd0;
  align-items: center;
  gap: 7px;
  padding-right: 24px;
  font-size: 11px;
  display: inline-flex;
}

.sg-wordmark {
  color: #52775b;
  align-items: center;
  gap: 10px;
  display: flex;
}

.sg-wordmark > span {
  letter-spacing: .11em;
  font-family: STSong, Songti SC, SimSun, serif;
  font-size: 23px;
  font-weight: 700;
}

.sg-wordmark small {
  letter-spacing: .23em;
  margin-top: 1px;
  font-family: system-ui, sans-serif;
  font-size: 8px;
  font-weight: 500;
  display: block;
}

.sg-topnav {
  align-items: center;
  gap: 27px;
  margin-left: auto;
  display: flex;
}

.sg-topnav button {
  color: #7f8978;
  background: none;
  border: 0;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 11px;
  display: flex;
}

.sg-topnav button:hover {
  color: #3d684a;
}

.sg-workspace {
  max-width: 1536px;
  margin: auto;
  padding: 32px 40px 20px;
}

.sg-day-header {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  display: flex;
}

.sg-eyebrow {
  color: #9a9e87;
  letter-spacing: .07em;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  display: inline-flex;
}

.sg-day-header h1 {
  letter-spacing: .05em;
  color: #465644;
  margin: 6px 0 0;
  font-family: STSong, Songti SC, SimSun, serif;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 600;
  line-height: 1.45;
}

.sg-weather {
  background: #f9f7eb;
  border: 1px solid #dddecb;
  border-radius: 7px;
  align-items: center;
  gap: 13px;
  min-width: 204px;
  padding: 10px 18px;
  display: flex;
}

.sg-weather > span {
  color: #d6af5b;
  font-size: 30px;
  line-height: 1;
}

.sg-weather b, .sg-weather small {
  display: block;
}

.sg-weather b {
  letter-spacing: .04em;
  font-size: 13px;
  font-weight: 600;
}

.sg-weather small {
  color: #9f9e87;
  margin-top: 4px;
  font-size: 10px;
}

.sg-weather i {
  opacity: .5;
  margin: 0 5px;
  font-style: normal;
}

.sg-game-grid {
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 24px;
  display: grid;
}

.sg-world-column {
  min-width: 0;
}

.sg-world-frame {
  background: #d5d3ba;
  border: 1px solid #c7c8ac;
  border-radius: 10px 10px 0 0;
  padding: 7px;
  position: relative;
  box-shadow: 0 5px 22px #6266430b;
}

.sg-scene {
  background: #729969;
  border: 1px solid #7e956d;
  border-radius: 5px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.sg-scene-map {
  position: relative;
}

.sg-scene canvas {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  cursor: crosshair;
  touch-action: manipulation;
  display: block;
}

.sg-scene canvas:focus-visible {
  outline-offset: -3px;
  outline: 2px solid #fff3bd;
}

.sg-scene-annotations {
  pointer-events: none;
  z-index: 3;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sg-map-bubble {
  --bubble-paper: #fff8e5;
  background: var(--bubble-paper);
  color: #263e30;
  text-align: left;
  image-rendering: auto;
  border: 1px solid #9aaa83;
  border-radius: 7px;
  width: max-content;
  padding: 10px 14px 12px;
  font-family: Microsoft YaHei, PingFang SC, Noto Sans CJK SC, system-ui, sans-serif;
  position: absolute;
  box-shadow: 0 3px #334b3526;
}

.sg-map-bubble[hidden], .sg-map-speaker[hidden] {
  display: none;
}

.sg-map-bubble[data-kind="reply"] {
  --bubble-paper: #f0f7e5;
}

.sg-map-speaker {
  color: #4b6243;
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}

.sg-map-line {
  letter-spacing: .01em;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.sg-map-bubble[data-kind="activity"], .sg-map-bubble[data-kind="place"] {
  padding: 7px 11px;
}

.sg-map-bubble[data-kind="activity"] .sg-map-speaker {
  margin-right: 7px;
  display: inline;
}

.sg-map-bubble[data-kind="activity"] .sg-map-line {
  font-size: 13px;
  line-height: 1.7;
  display: inline;
}

.sg-map-bubble[data-kind="place"] .sg-map-line {
  font-size: 13px;
  line-height: 1.7;
}

.sg-map-bubble-tail {
  background: var(--bubble-paper);
  border-bottom: 1px solid #9aaa83;
  border-right: 1px solid #9aaa83;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: -5px;
  transform: rotate(45deg);
}

.sg-map-bubble[data-placement="below"] .sg-map-bubble-tail {
  top: -5px;
  bottom: auto;
  transform: rotate(225deg);
}

.sg-map-bubble[data-placement="left"] .sg-map-bubble-tail {
  bottom: auto;
  right: -5px;
  transform: rotate(-45deg);
}

.sg-map-bubble[data-placement="right"] .sg-map-bubble-tail {
  bottom: auto;
  left: -5px;
  transform: rotate(135deg);
}

.sg-map-caption {
  pointer-events: none;
  background: #ecebd9;
  padding: 8px;
  display: none;
}

.sg-map-caption:has(.sg-map-bubble:not([hidden])) {
  display: block;
}

.sg-map-bubble[data-placement="docked"] {
  margin: 0 auto;
  position: relative;
}

.sg-map-bubble[data-placement="docked"] .sg-map-bubble-tail {
  display: none;
}

.sg-map-announcement {
  clip-path: inset(50%);
  white-space: nowrap;
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.sg-scene-title, .sg-scene-controls {
  z-index: 4;
}

.sg-scene .sg-scene-loading, .sg-scene .sg-minimap.is-expanded {
  z-index: 5;
}

@media (max-width: 600px) {
  .sg-map-line {
    font-size: 14px;
    line-height: 1.65;
  }

  .sg-map-bubble {
    padding: 8px 11px 10px;
  }
}

.sg-scene-title {
  color: #fff1c9;
  pointer-events: none;
  background: #405b45de;
  border: 1px solid #eedf9f6b;
  border-radius: 5px;
  align-items: start;
  gap: 9px;
  padding: 10px 13px;
  display: flex;
  position: absolute;
  top: 18px;
  left: 18px;
  box-shadow: 2px 3px #32493626;
}

.sg-live-dot {
  background: #8cab75;
  border-radius: 50%;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  display: inline-block;
}

.sg-scene-title .sg-live-dot {
  background: #c9df95;
  margin-top: 5px;
}

.sg-scene-title strong {
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 500;
  display: block;
}

.sg-scene-title small {
  color: #c4d1a9;
  margin-top: 4px;
  font-size: 9px;
  display: block;
}

.sg-scene-controls {
  color: #f5eccd;
  background: #405b45de;
  border: 1px solid #e6dfb670;
  border-radius: 5px;
  align-items: center;
  gap: 3px;
  padding: 5px;
  display: flex;
  position: absolute;
  top: 18px;
  right: 18px;
}

.sg-scene-controls button {
  width: 26px;
  height: 25px;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 3px;
  place-items: center;
  padding: 0;
  display: grid;
}

.sg-scene-controls button:hover {
  background: #78916c;
}

.sg-scene-controls span {
  text-align: center;
  min-width: 32px;
  font-size: 10px;
}

.sg-map-help {
  white-space: nowrap;
  color: #eae4c6;
  pointer-events: none;
  background: #345745b8;
  border-radius: 4px;
  align-items: center;
  gap: 14px;
  padding: 7px 14px;
  font-size: 9px;
  display: flex;
  position: absolute;
  bottom: 13px;
  left: 14px;
}

.sg-map-help span {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.sg-map-help kbd {
  color: #fff6d3;
  border: 1px solid #e6e6c33b;
  border-radius: 2px;
  padding: 1px 4px;
  font: 9px / 1.3 system-ui, sans-serif;
}

.sg-accessible-map {
  position: absolute;
  bottom: 45px;
  left: 5px;
}

.sg-scene-loading {
  color: #f5e9c6;
  z-index: 4;
  background: #3c5549df;
  place-items: center;
  font-size: 13px;
  display: grid;
  position: absolute;
  inset: 0;
}

.sg-minimap {
  z-index: 2;
  background: #344d40f2;
  border: 2px solid #c6ba89;
  border-radius: 4px;
  width: 166px;
  position: absolute;
  bottom: 13px;
  right: 13px;
  overflow: hidden;
  box-shadow: 0 3px 12px #223b3b33;
}

.sg-minimap-toggle {
  color: #e8dcad;
  background: #405e4f;
  border: 0;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 5px 7px;
  font-size: 10px;
  display: flex;
}

.sg-minimap-toggle > :last-child {
  margin-left: auto;
}

.sg-minimap-toggle small {
  color: #bdc29c;
  font-size: 8px;
}

.sg-minimap canvas {
  aspect-ratio: 3 / 2;
  touch-action: manipulation;
  width: 100%;
}

.sg-minimap.is-expanded {
  width: min(390px, 100% - 28px);
  max-height: calc(100% - 75px);
  overflow-y: auto;
}

.sg-minimap-places {
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 9px;
  display: grid;
}

.sg-minimap-places button {
  color: #f1dfad;
  background: #4d6853;
  border: 1px solid #8f9b73;
  border-radius: 3px;
  padding: 7px 2px;
  font-size: 10px;
}

.sg-minimap-places > small {
  color: #bfcbab;
  text-align: center;
  grid-column: 1 / -1;
  margin-top: 3px;
  font-size: 9px;
}

@media (max-width: 600px) {
  .sg-minimap {
    border-width: 1px;
    width: 93px;
    bottom: 6px;
    right: 6px;
  }

  .sg-minimap-toggle {
    padding: 3px 5px;
    font-size: 8px;
  }

  .sg-minimap-toggle svg {
    width: 10px;
  }

  .sg-minimap.is-expanded {
    width: min(300px, 100% - 12px);
    max-height: calc(100% - 40px);
  }

  .sg-minimap-places {
    gap: 4px;
    padding: 6px;
  }

  .sg-minimap-places button {
    padding: 7px 1px;
    font-size: 10px;
  }
}

.sg-accessible-map button {
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.sg-accessible-map button:focus {
  clip-path: none;
  color: #244e36;
  background: #ffefba;
  border: 1px solid #b39964;
  width: auto;
  height: auto;
  padding: 8px;
  position: static;
}

.sg-scene:fullscreen {
  background: #283e36;
  border: 0;
  place-items: center;
  display: grid;
}

.sg-scene:fullscreen canvas {
  object-fit: contain;
  width: min(100vw, 150vh);
  height: auto;
  max-height: 100vh;
}

.sg-paused-overlay {
  color: #fff0cd;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: #2a423bbb;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  position: absolute;
  inset: 7px;
}

.sg-paused-overlay h2 {
  margin: 4px 0;
  font-size: 23px;
}

.sg-paused-overlay p {
  color: #d4ddc1;
  margin: 0 0 12px;
}

.sg-tools {
  background: #e9e4d0;
  border: 1px solid #cecfb7;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  align-items: center;
  gap: 22px;
  min-height: 100px;
  padding: 14px 22px;
  display: flex;
}

.sg-tool-slots {
  gap: 7px;
  display: flex;
}

.sg-tool-slots button {
  color: #869179;
  background: #f3efde;
  border: 1px solid #d0d0b8;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 58px;
  height: 65px;
  padding: 5px;
  display: flex;
  position: relative;
  box-shadow: 0 3px #d6d1ba;
}

.sg-tool-slots button svg {
  stroke-width: 1.6px;
  width: 24px;
  height: 24px;
}

.sg-tool-slots button span {
  font-size: 9px;
}

.sg-tool-slots button kbd {
  color: #b0ad92;
  font: 8px system-ui, sans-serif;
  position: absolute;
  top: 3px;
  left: 5px;
}

.sg-tool-slots button b {
  color: #75905b;
  font-size: 9px;
  position: absolute;
  bottom: 4px;
  right: 5px;
}

.sg-tool-slots button.is-selected {
  color: #607b4c;
  background: #e5e7c7;
  border-color: #8a9a68;
  box-shadow: 0 3px #aeb895, inset 0 0 0 2px #f7f4d9;
}

.sg-tool-slots button:hover {
  transform: translateY(-2px);
}

.sg-tool-slots .sg-bag-tool {
  color: #a08c69;
  background: #eee3cb;
  margin-left: 8px;
}

.sg-tools-caption {
  border-left: 1px solid #d4d0b9;
  gap: 6px;
  padding-left: 18px;
  display: grid;
}

.sg-tools-caption strong {
  color: #758267;
  font-size: 11px;
  font-weight: 600;
}

.sg-tools-caption span {
  color: #979880;
  font-size: 10px;
  line-height: 1.6;
}

.sg-world-status {
  color: #a3a38e;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 12px 2px 20px;
  font-size: 9px;
  display: flex;
}

.sg-world-status > span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.sg-world-status button {
  color: #90967c;
  background: none;
  border: 0;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  display: flex;
}

.sg-world-actions {
  flex-shrink: 0;
  align-items: center;
  gap: 14px;
  display: flex;
}

.sg-destinations {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

.sg-destinations button {
  text-align: left;
  background: #f9f7ed;
  border: 1px solid #e0dfcf;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  padding: 15px 12px;
  display: flex;
}

.sg-destinations button > svg:first-child {
  color: #99a084;
  stroke-width: 1.6px;
  flex-shrink: 0;
}

.sg-destinations button > svg:last-child {
  color: #b2b19d;
  width: 12px;
  margin-left: auto;
}

.sg-destinations button span {
  color: #728068;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
}

.sg-destinations button small {
  color: #a6a68e;
  margin-top: 4px;
  font-size: 8px;
  font-weight: 400;
  display: block;
}

.sg-destinations button:hover {
  background: #e9eddb;
  border-color: #bfc9a8;
}

.sg-side {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.sg-resident-card, .sg-today-card, .sg-people-card, .sg-interaction {
  border: 1px solid var(--sg-line);
  background: var(--sg-paper);
  border-radius: 7px;
  padding: 20px;
}

.sg-resident-top {
  align-items: center;
  gap: 11px;
  display: flex;
  position: relative;
}

.sg-avatar {
  background: #e1e6cd;
  border: 1px solid #c9d2b8;
  border-radius: 5px;
  place-items: center;
  width: 59px;
  height: 66px;
  display: grid;
  overflow: hidden;
}

.sg-pixel-sprite {
  image-rendering: pixelated;
  vertical-align: middle;
  background-repeat: no-repeat;
  flex-shrink: 0;
  display: inline-block;
}

.sg-resident-top > div:nth-child(2) {
  min-width: 0;
}

.sg-resident-top > div > span {
  color: #a0a28b;
  font-size: 9px;
}

.sg-resident-top h2 {
  color: #5b6e55;
  overflow-wrap: anywhere;
  margin: 4px 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.sg-resident-top p {
  color: #a1a18e;
  max-width: 120px;
  margin: 0;
  font-size: 9px;
  line-height: 1.5;
}

.sg-level {
  color: #9c9d7b;
  font-size: 9px;
  font-weight: 600;
  position: absolute;
  top: -4px;
  right: -6px;
}

.sg-energy-label {
  color: #879479;
  justify-content: space-between;
  margin-top: 19px;
  font-size: 10px;
  display: flex;
}

.sg-energy-label > span {
  align-items: center;
  gap: 5px;
  display: flex;
}

.sg-energy-label b {
  font-weight: 500;
}

.sg-energy-label small {
  color: #b1b09a;
  font-size: 9px;
}

.sg-energy {
  background: #e7e8d9;
  border-radius: 6px;
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
}

.sg-energy > span {
  border-radius: inherit;
  background: #9eaf7f;
  height: 100%;
  transition: width .3s;
  display: block;
}

.sg-wallet {
  border-top: 1px dashed #e2e1d0;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 13px;
  display: flex;
}

.sg-wallet > span {
  color: #93977d;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  display: flex;
}

.sg-wallet svg {
  color: #c0a362;
}

.sg-wallet > b {
  color: #a18b5b;
  letter-spacing: .03em;
  font-size: 17px;
  font-weight: 500;
}

.sg-wallet small {
  font-size: 10px;
}

.sg-card-heading {
  color: #a4aa91;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.sg-card-heading > button {
  color: #989c82;
  background: none;
  border: 0;
  place-items: center;
  padding: 0;
  display: grid;
}

.sg-today-card h2, .sg-interaction h2 {
  letter-spacing: .03em;
  color: #697657;
  margin: 13px 0 9px;
  font-family: STSong, Songti SC, SimSun, serif;
  font-size: 16px;
  font-weight: 600;
}

.sg-today-card p, .sg-interaction > p {
  color: #999c88;
  margin: 0 0 15px;
  font-size: 11px;
  line-height: 1.9;
}

.sg-quest-progress {
  background: #e9e8d8;
  border-radius: 2px;
  height: 4px;
  overflow: hidden;
}

.sg-quest-progress > span {
  background: #abb389;
  height: 100%;
  display: block;
}

.sg-quest-count {
  color: #a0a08b;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 9px;
  display: flex;
}

.sg-quest-count b {
  color: #b59d67;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  display: flex;
}

.sg-text-button {
  color: #7a8e68;
  background: none;
  border: 0;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: 10px;
  display: inline-flex;
}

.sg-today-card .sg-text-button {
  margin-top: 17px;
}

.sg-text-button:hover {
  color: #426a49;
}

.sg-event-card {
  background: #f4efdb;
  border: 1px solid #e3dcc0;
  border-radius: 7px;
  padding: 19px 20px;
}

.sg-event-card .sg-eyebrow {
  color: #ac9f77;
}

.sg-event-card h3 {
  color: #8d8260;
  margin: 12px 0 7px;
  font-size: 13px;
  font-weight: 500;
}

.sg-event-card p {
  color: #a69c80;
  margin: 0 0 12px;
  font-size: 10px;
  line-height: 1.9;
}

.sg-event-card .sg-text-button {
  color: #a18d5d;
}

.sg-people-card {
  padding: 17px 17px 14px;
}

.sg-people-card > div:last-child {
  justify-content: space-around;
  gap: 10px;
  margin-top: 13px;
  display: flex;
}

.sg-people-card > div:last-child > button {
  background: none;
  border: 0;
  flex-direction: column;
  align-items: center;
  padding: 0;
  display: flex;
}

.sg-people-card button b {
  color: #828d70;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
}

.sg-people-card button small {
  color: #afaf97;
  margin-top: 2px;
  font-size: 8px;
}

.sg-people-card button:hover .sg-pixel-sprite {
  transform: translateY(-2px);
}

.sg-ai-card {
  text-align: left;
  background: #e9eee2;
  border: 1px solid #dce1d1;
  border-radius: 6px;
  width: 100%;
  padding: 15px 17px;
  display: block;
}

.sg-ai-card > span {
  color: #7e947b;
  align-items: center;
  gap: 7px;
  display: flex;
}

.sg-ai-card b {
  font-size: 11px;
  font-weight: 500;
}

.sg-ai-card p {
  color: #9ca891;
  margin: 7px 0 11px;
  font-size: 9px;
  line-height: 1.6;
}

.sg-ai-card > div {
  color: #8c9b80;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.sg-ai-card small {
  font-size: 9px;
}

.sg-bottom-note {
  color: #b6b39c;
  letter-spacing: .07em;
  justify-content: space-between;
  gap: 15px;
  padding-top: 31px;
  font-size: 9px;
  display: flex;
}

.sg-button {
  color: #fff7df;
  background: #73906b;
  border: 1px solid #5e795a;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.sg-button:hover {
  background: #5e7e5e;
}

.sg-button small {
  color: #dce5c9;
  margin-left: auto;
  font-size: 9px;
  font-weight: 400;
}

.sg-button.is-light {
  color: #7b8c68;
  background: #edf0df;
  border-color: #cdd4b8;
}

.sg-interaction > .sg-button {
  width: 100%;
  margin-top: 7px;
}

.sg-field {
  color: #8b927d;
  gap: 7px;
  margin: 15px 0 10px;
  font-size: 10px;
  display: grid;
}

.sg-field input, .sg-field select, .sg-field textarea {
  color: #708060;
  background: #fffdf4;
  border: 1px solid #dcdcca;
  border-radius: 4px;
  outline: 0;
  width: 100%;
  padding: 9px 10px;
  font-size: 12px;
  line-height: 1.6;
}

.sg-field textarea {
  resize: vertical;
}

.sg-field input:focus, .sg-field textarea:focus, .sg-field select:focus {
  border-color: #9da983;
}

.sg-muted {
  color: #a8aa95;
  margin-top: 10px;
  font-size: 9px;
  line-height: 1.7;
  display: block;
}

.sg-crop-preview {
  background: #eff1df;
  border-radius: 5px;
  align-items: center;
  gap: 10px;
  padding: 11px;
  display: flex;
}

.sg-crop-preview strong {
  color: #7d9268;
  font-size: 11px;
  font-weight: 500;
  display: block;
}

.sg-crop-preview small {
  color: #a2ab8c;
  margin-top: 4px;
  font-size: 9px;
  display: block;
}

.sg-shop-items {
  gap: 3px;
  display: grid;
}

.sg-shop-items > div {
  border-bottom: 1px dashed #e5e4d2;
  align-items: center;
  gap: 7px;
  padding: 9px 0;
  display: flex;
}

.sg-shop-items > div:last-child {
  border: 0;
}

.sg-shop-items span {
  flex: 1;
}

.sg-shop-items b {
  color: #819071;
  font-size: 10px;
  font-weight: 500;
  display: block;
}

.sg-shop-items small {
  color: #b0a986;
  margin-top: 3px;
  font-size: 9px;
  display: block;
}

.sg-shop-items button, .sg-mini-order button {
  color: #7b9165;
  background: #edf0dd;
  border: 1px solid #ced7b7;
  border-radius: 3px;
  padding: 5px 7px;
  font-size: 9px;
}

.sg-interaction h4 {
  color: #849272;
  margin: 17px 0 5px;
  font-size: 11px;
  font-weight: 500;
}

.sg-npc-intro {
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  display: flex;
}

.sg-npc-intro p {
  color: #989c86;
  margin: 0;
  font-size: 10px;
  line-height: 1.8;
}

.sg-mini-order {
  background: #f4f0de;
  border: 1px dashed #d7d6b9;
  border-radius: 4px;
  gap: 5px;
  margin-top: 16px;
  padding: 12px;
  display: grid;
}

.sg-mini-order small {
  color: #b0a17c;
  font-size: 9px;
}

.sg-mini-order b {
  color: #93906e;
  font-size: 11px;
  font-weight: 500;
}

.sg-mini-order p {
  color: #aaa082;
  margin: 0 0 3px;
  font-size: 9px;
}

.sg-mini-order button {
  justify-self: start;
}

.sg-fishing {
  color: #91a696;
  background: #e7eee2;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 8px;
  display: flex;
}

.sg-fishing span {
  font-size: 10px;
}

.sg-fishing.is-biting {
  color: #aa8651;
  background: #f9e9bc;
  animation: .5s infinite alternate sg-bite;
}

@keyframes sg-bite {
  to {
    background: #f0d493;
  }
}

.sg-action-error {
  color: #b67b59 !important;
  margin-top: 12px !important;
}

.sg-toast {
  z-index: 110;
  color: #728164;
  background: #fffbed;
  border: 1px solid #c5cca9;
  border-radius: 7px;
  align-items: center;
  gap: 12px;
  width: min(640px, 100% - 34px);
  padding: 15px 19px;
  display: flex;
  position: fixed;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 7px 34px #2c3d3926;
}

.sg-toast svg {
  color: #90a077;
  flex-shrink: 0;
}

.sg-toast p {
  flex: 1;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.sg-toast button {
  color: #a1a38e;
  background: none;
  border: 0;
  flex-shrink: 0;
  padding: 2px;
}

.sg-dialog {
  --sg-ink: #53674e;
  color: var(--sg-ink);
  background: #faf8ef;
  border: 1px solid #c5cbae;
  border-radius: 10px;
  width: min(720px, 100vw - 32px);
  max-height: min(88svh, 920px);
  margin: auto;
  padding: 0;
  font-size: 13px;
  box-shadow: 0 20px 100px #12291c33;
}

.sg-dialog::backdrop {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #233d376b;
}

.sg-dialog-feedback {
  color: #788c63;
  background: #eef2de;
  border: 1px solid #d3dcb9;
  border-radius: 4px;
  margin: 0 0 18px;
  padding: 11px 14px;
  font-size: 12px;
  line-height: 1.8;
}

.sg-dialog > header {
  z-index: 2;
  background: #f4f2e6;
  border-bottom: 1px solid #dedec9;
  justify-content: space-between;
  align-items: center;
  padding: 23px 28px 19px;
  display: flex;
  position: sticky;
  top: 0;
}

.sg-dialog > header span {
  color: #aaa88f;
  letter-spacing: .13em;
  font-size: 9px;
}

.sg-dialog h2 {
  margin: 5px 0 0;
  font-family: STSong, Songti SC, SimSun, serif;
  font-size: 22px;
  font-weight: 600;
}

.sg-dialog h3 {
  font-size: 15px;
  font-weight: 500;
}

.sg-icon-button {
  color: #9a9e86;
  background: none;
  border: 0;
  padding: 6px;
}

.sg-dialog-body {
  padding: 24px 28px 28px;
}

.sg-dialog .sg-button {
  margin-top: 10px;
}

.sg-dialog .sg-field {
  font-size: 11px;
}

.sg-panel-intro {
  color: #959b83;
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.9;
}

.sg-panel-intro > b {
  color: #b19960;
  margin-top: 7px;
  font-weight: 500;
  display: block;
}

.sg-panel-note {
  color: #989d86;
  background: #eeeee0;
  border-radius: 4px;
  margin: 20px 0 0;
  padding: 14px;
  font-size: 11px;
  line-height: 1.9;
}

.sg-inventory {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  display: grid;
}

.sg-inventory article {
  background: #f7f4e7;
  border: 1px solid #dedec5;
  border-radius: 5px;
  padding: 15px;
}

.sg-inventory article > div {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
  display: flex;
}

.sg-inventory article b {
  color: #b3a47a;
  font-size: 13px;
  font-weight: 500;
}

.sg-inventory strong {
  color: #7c8c69;
  font-size: 12px;
  font-weight: 500;
}

.sg-inventory p {
  color: #a3a28b;
  min-height: 38px;
  margin: 7px 0 10px;
  font-size: 10px;
  line-height: 1.8;
}

.sg-inventory button, .sg-quest-list button, .sg-event-invite button {
  color: #809569;
  background: #edf0db;
  border: 1px solid #cad3b2;
  border-radius: 3px;
  padding: 7px 9px;
  font-size: 10px;
}

.sg-quest-list {
  gap: 10px;
  display: grid;
}

.sg-quest-list article {
  background: #f7f5e9;
  border: 1px solid #dedec9;
  border-radius: 5px;
  align-items: center;
  gap: 15px;
  padding: 17px;
  display: flex;
}

.sg-quest-list article > svg {
  color: #97a67b;
  flex-shrink: 0;
}

.sg-quest-list article > div {
  flex: 1;
}

.sg-quest-list h3 {
  color: #7a8b68;
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 500;
}

.sg-quest-list p {
  color: #9ca289;
  margin: 0 0 5px;
  font-size: 11px;
}

.sg-quest-list small {
  color: #b3a681;
  font-size: 10px;
}

.sg-done {
  color: #9baa83;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  display: flex;
}

.sg-quest-list button {
  flex-shrink: 0;
}

.sg-neighbors {
  gap: 22px;
  display: grid;
}

.sg-neighbors article {
  border-bottom: 1px dashed #d9dcc4;
  align-items: start;
  gap: 20px;
  padding-bottom: 20px;
  display: flex;
}

.sg-neighbors article:last-child {
  border: 0;
  padding-bottom: 0;
}

.sg-neighbors h3 {
  color: #6e8560;
  margin: 0 0 7px;
}

.sg-neighbors h3 small {
  color: #a6ab90;
  margin-left: 12px;
  font-size: 10px;
  font-weight: 400;
}

.sg-neighbors b {
  color: #969e82;
  font-size: 11px;
  font-weight: 400;
}

.sg-neighbors p {
  color: #a0a48a;
  font-size: 12px;
  line-height: 1.8;
}

.sg-hearts {
  color: #cc9e87;
  align-items: center;
  gap: 4px;
  margin: 10px 0 15px;
  display: flex;
}

.sg-hearts span {
  color: #a6ab91;
  margin-left: 7px;
  font-size: 10px;
}

.sg-journal-summary {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  display: grid;
}

.sg-journal-summary > span {
  color: #809367;
  background: #edf0df;
  border-radius: 5px;
  gap: 7px;
  padding: 15px;
  font-size: 12px;
  display: grid;
}

.sg-journal-summary small {
  color: #a4ad8c;
  font-size: 9px;
}

.sg-journal {
  gap: 0;
  display: grid;
}

.sg-journal article {
  border-bottom: 1px dashed #d9dcc5;
  gap: 18px;
  padding: 15px 0;
  display: flex;
}

.sg-journal time {
  color: #af9d75;
  flex-shrink: 0;
  min-width: 47px;
  font-size: 10px;
}

.sg-journal time small {
  color: #b9b59b;
  margin-top: 5px;
  display: block;
}

.sg-journal p {
  color: #89957c;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.sg-ai-log {
  gap: 12px;
  display: grid;
}

.sg-ai-log article, .sg-event-invite {
  background: #eff2e5;
  border: 1px solid #d7decb;
  border-radius: 5px;
  padding: 17px;
}

.sg-ai-log article > div {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.sg-ai-log strong {
  color: #7a8e6c;
  font-size: 12px;
  font-weight: 500;
}

.sg-ai-log span, .sg-ai-log small {
  color: #a0aa8f;
  font-size: 9px;
}

.sg-ai-log p, .sg-ai-log blockquote {
  color: #95a087;
  font-size: 11px;
  line-height: 1.9;
}

.sg-ai-log blockquote {
  border-left: 2px solid #c0ccaa;
  margin: 10px 0;
  padding-left: 10px;
}

.sg-event-invite h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.sg-event-invite p {
  color: #9aa389;
  font-size: 11px;
  line-height: 1.9;
}

.sg-event-invite > div {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.sg-ai-intro {
  background: #eaf0e0;
  border-radius: 5px;
  align-items: center;
  gap: 18px;
  padding: 17px;
  display: flex;
}

.sg-ai-intro svg {
  color: #91a17e;
  flex-shrink: 0;
}

.sg-ai-intro p {
  color: #8d9a7e;
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
}

.sg-ai-budget {
  color: #a9ae93;
  justify-content: space-between;
  font-size: 10px;
  display: flex;
}

.sg-ai-budget b {
  color: #b2a073;
  font-weight: 400;
}

.sg-budget-summary {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  display: grid;
}

.sg-budget-summary > span {
  color: #a1a78c;
  font-size: 10px;
}

.sg-budget-summary b {
  color: #859976;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.sg-settings-character {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

.sg-settings-character h3 {
  color: #788c66;
  margin: 0;
}

.sg-settings-character p {
  color: #a4aa91;
  margin: 6px 0 0;
  font-size: 11px;
}

.sg-dialog hr {
  border: 0;
  border-top: 1px solid #dcdcc8;
  margin: 24px 0;
}

.sg-help-lead {
  background: #e9eddc;
  border-radius: 5px;
  align-items: center;
  gap: 20px;
  padding: 15px;
  display: flex;
}

.sg-help-lead span {
  color: #a0aa89;
  font-size: 10px;
}

.sg-help-lead h3 {
  color: #819268;
  margin: 8px 0;
  font-family: STSong, Songti SC, SimSun, serif;
  font-size: 18px;
}

.sg-help-lead p {
  color: #9ca587;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.sg-help-steps {
  color: #8e9b78;
  gap: 17px;
  margin: 25px 0 15px;
  padding-left: 22px;
  display: grid;
}

.sg-help-steps b {
  font-size: 13px;
  font-weight: 500;
}

.sg-help-steps p {
  color: #a0a78c;
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.9;
}

.sg-boot {
  color: #80966b;
  background: #f2efe5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-height: 75vh;
  display: flex;
}

.sg-boot h1 {
  margin: 0;
  font-family: SimSun, serif;
  font-size: 26px;
}

.sg-boot p {
  color: #a3ac8e;
  font-size: 13px;
}

@media (min-width: 1650px) {
  .sg-workspace {
    padding-top: 40px;
  }

  .sg-game-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
  }

  .sg-side {
    gap: 18px;
  }

  .sg-resident-card, .sg-today-card, .sg-interaction {
    padding: 23px;
  }

  .sg-people-card {
    padding: 20px;
  }
}

@media (max-width: 1180px) {
  .sg-masthead-inner {
    width: calc(100% - 40px);
  }

  .sg-workspace {
    padding: 25px 20px 20px;
  }

  .sg-game-grid {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 16px;
  }

  .sg-resident-card, .sg-today-card, .sg-people-card, .sg-interaction {
    padding: 16px;
  }

  .sg-tools {
    gap: 12px;
    padding: 12px;
  }

  .sg-tools-caption {
    padding-left: 12px;
  }

  .sg-tool-slots {
    gap: 5px;
  }

  .sg-tool-slots button {
    width: 48px;
    height: 58px;
  }

  .sg-destinations {
    grid-template-columns: repeat(2, 1fr);
  }

  .sg-world-status > span:nth-child(2) {
    display: none;
  }

  .sg-scene-title {
    padding: 7px 10px;
    top: 10px;
    left: 10px;
  }

  .sg-scene-controls {
    top: 10px;
    right: 10px;
  }

  .sg-scene-title small {
    display: none;
  }

  .sg-map-help {
    gap: 9px;
    padding: 5px 8px;
    font-size: 8px;
    bottom: 9px;
  }
}

@media (max-width: 900px) {
  .sg-masthead-inner {
    height: 65px;
  }

  .sg-game-grid {
    grid-template-columns: 1fr;
  }

  .sg-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    display: grid;
  }

  .sg-interaction {
    grid-area: 1 / 1 / auto / -1;
  }

  .sg-interaction .sg-shop-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .sg-interaction > .sg-button {
    width: auto;
  }

  .sg-ai-card {
    height: 100%;
  }

  .sg-tools {
    justify-content: space-between;
  }

  .sg-tools-caption {
    margin-left: auto;
  }

  .sg-world-status > span:nth-child(2) {
    display: flex;
  }

  .sg-destinations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sg-side {
    margin-top: 6px;
  }

  .sg-bottom-note {
    padding-top: 22px;
  }
}

@media (max-width: 600px) {
  .sg-masthead-inner {
    gap: 13px;
    width: calc(100% - 28px);
    height: 60px;
  }

  .sg-return {
    gap: 0;
    padding-right: 12px;
    font-size: 0;
  }

  .sg-wordmark > span {
    font-size: 19px;
  }

  .sg-wordmark small {
    font-size: 6px;
  }

  .sg-wordmark > svg {
    width: 20px;
  }

  .sg-topnav {
    gap: 16px;
  }

  .sg-topnav button span {
    display: none;
  }

  .sg-workspace {
    padding: 22px 12px 18px;
  }

  .sg-day-header {
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
  }

  .sg-day-header h1 {
    letter-spacing: 0;
    max-width: 200px;
    font-size: 18px;
  }

  .sg-day-header .sg-eyebrow {
    letter-spacing: 0;
    font-size: 8px;
  }

  .sg-weather {
    gap: 6px;
    min-width: 0;
    padding: 8px 10px;
  }

  .sg-weather > span {
    font-size: 23px;
  }

  .sg-weather b {
    font-size: 10px;
  }

  .sg-weather small {
    font-size: 8px;
  }

  .sg-weather i {
    margin: 0 1px;
  }

  .sg-world-frame {
    border-radius: 6px 6px 0 0;
    padding: 4px;
  }

  .sg-scene-title {
    gap: 5px;
    padding: 5px 7px;
    top: 7px;
    left: 7px;
  }

  .sg-scene-title strong {
    font-size: 8px;
  }

  .sg-scene-title .sg-live-dot {
    width: 4px;
    height: 4px;
    margin-top: 3px;
  }

  .sg-scene-controls {
    gap: 0;
    padding: 2px;
    top: 7px;
    right: 7px;
  }

  .sg-scene-controls button {
    width: 23px;
    height: 21px;
  }

  .sg-scene-controls span {
    min-width: 28px;
    font-size: 8px;
  }

  .sg-scene-controls button svg {
    width: 12px;
  }

  .sg-map-help {
    display: none;
  }

  .sg-tools {
    justify-content: center;
    min-height: 82px;
    padding: 10px;
  }

  .sg-tool-slots {
    justify-content: center;
    gap: 7px;
    width: 100%;
  }

  .sg-tool-slots button {
    flex-shrink: 1;
    width: 45px;
    height: 55px;
  }

  .sg-tool-slots .sg-bag-tool {
    margin-left: 4px;
  }

  .sg-tool-slots button svg {
    width: 21px;
  }

  .sg-tools-caption {
    display: none;
  }

  .sg-world-status {
    padding: 10px 1px 13px;
  }

  .sg-world-status > span:nth-child(2) {
    display: none;
  }

  .sg-destinations {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .sg-destinations button {
    padding: 12px;
  }

  .sg-side {
    gap: 10px;
  }

  .sg-resident-card, .sg-today-card, .sg-people-card {
    padding: 13px;
  }

  .sg-resident-card {
    grid-column: 1 / -1;
  }

  .sg-resident-top > div:nth-child(2) {
    flex: 1;
  }

  .sg-resident-top p {
    max-width: none;
  }

  .sg-level {
    top: 5px;
    right: 0;
  }

  .sg-energy-label {
    margin-top: 10px;
  }

  .sg-wallet {
    margin-top: 12px;
    padding-top: 10px;
  }

  .sg-event-card {
    padding: 15px 13px;
  }

  .sg-today-card h2 {
    font-size: 14px;
  }

  .sg-today-card p {
    font-size: 10px;
  }

  .sg-event-card h3 {
    font-size: 12px;
  }

  .sg-people-card {
    grid-column: 1 / -1;
  }

  .sg-people-card > div:last-child {
    margin-top: 7px;
  }

  .sg-ai-card {
    grid-column: 1 / -1;
  }

  .sg-bottom-note {
    font-size: 8px;
  }

  .sg-bottom-note span:last-child {
    display: none;
  }

  .sg-interaction {
    padding: 18px;
  }

  .sg-interaction .sg-shop-items {
    grid-template-columns: 1fr;
  }

  .sg-dialog > header, .sg-dialog-body {
    padding: 18px;
  }

  .sg-dialog h2 {
    font-size: 21px;
  }

  .sg-inventory {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .sg-inventory article {
    padding: 12px;
  }

  .sg-quest-list article {
    flex-wrap: wrap;
    gap: 10px;
    padding: 13px;
  }

  .sg-quest-list article > div {
    flex-basis: calc(100% - 50px);
  }

  .sg-quest-list article button {
    margin-left: 33px;
  }

  .sg-neighbors article {
    gap: 12px;
  }

  .sg-neighbors h3 small {
    margin: 4px 0 0;
    display: block;
  }

  .sg-journal-summary > span {
    padding: 10px;
    font-size: 10px;
  }

  .sg-journal-summary small {
    font-size: 8px;
  }

  .sg-toast {
    padding: 12px 14px;
    bottom: 15px;
  }

  .sg-toast p {
    font-size: 11px;
  }

  .sg-help-lead {
    gap: 5px;
    padding: 10px;
  }

  .sg-help-lead h3 {
    font-size: 15px;
  }

  .sg-help-lead p {
    font-size: 11px;
  }

  .sg-ai-log article > div {
    gap: 5px;
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sg-game *, .sg-dialog * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

.sg-routine-card {
  background: #f6efda;
  border: 1px solid #d9d7b8;
  border-radius: 18px;
  padding: 22px;
}

.sg-routine-card h2 {
  color: #40583e;
  margin: 8px 0 12px;
  font-size: 19px;
}

.sg-routine-card ol {
  color: #80826b;
  margin: 0 0 16px;
  padding-left: 22px;
  font-size: 13px;
  line-height: 2;
}

.sg-routine-card .is-current {
  color: #47704a;
  font-weight: 700;
}

.sg-routine-card .is-done {
  color: #82977b;
}

.sg-routine-card p {
  color: #737862;
  margin: 12px 0 8px;
  font-size: 12px;
  line-height: 1.7;
}

/*# sourceMappingURL=src_components_1koth1h._.css.map*/