.journey-title__modes {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.journey-title__modes a {
  color: rgb(255 247 233 / 76%);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}

.journey-title__modes a:hover,
.journey-title__modes a:focus-visible { color: #fff8de; }

.core-nav {
  position: absolute;
  z-index: 45;
  top: 18px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.core-nav__systems { display: flex; gap: 8px; margin-left: auto; pointer-events: auto; }

.core-nav[hidden] { display: none; }

.game-shell:has(.core-nav:not([hidden])) .audio-toggle { right: 480px; }
.game-shell[data-system-view="shop"]:has(.core-nav:not([hidden])) .audio-toggle { right: 300px; }

.core-nav button {
  position: relative;
  display: inline-flex;
  min-width: 82px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 14px;
  background: rgb(67 50 47 / 72%);
  box-shadow: 0 8px 22px rgb(55 38 32 / 16%);
  color: #fff8ea;
  pointer-events: auto;
  backdrop-filter: blur(12px);
}

.core-nav button.is-active { background: rgb(128 76 70 / 86%); }
.core-nav button span { font-size: 19px; }
.core-nav button b { font-size: 12px; letter-spacing: .08em; }
.core-nav button i {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff8ea;
  border-radius: 50%;
  background: #d85d58;
}

.stage--core-home,
.stage--core-social-home,
.stage--core-system,
.stage--actions { padding: 0; }

.core-home {
  isolation: isolate;
  position: relative;
  width: 100%;
  height: 100%;
}

.core-home__scene {
  position: absolute;
  overflow: hidden;
  inset: 0;
  border: 0;
  border-radius: 0;
  background: url("../assets/scenes/starter-home-depth-v2.png") var(--room-camera-x, 50%) var(--room-camera-y, 50%) / auto 128% no-repeat;
  box-shadow: none;
  transition: background-position 520ms cubic-bezier(.2, .76, .2, 1);
}

/* Formal home scenes own one full-bleed room canvas instead of sitting over a duplicate shell background. */
.game-shell:has(.core-home) > .scene-art,
.game-shell:has(.core-social-home) > .scene-art { background-image: none; }

[data-room-camera] { cursor: grab; touch-action: none; user-select: none; }
[data-room-camera].is-camera-dragging,
[data-room-camera].is-camera-holding { cursor: grabbing; transition: none; }
[data-room-camera].is-camera-restoring { transition: none !important; }
[data-room-camera] :is([data-cat-actor], [data-room-anchor], .room-decor-slot, .core-home-event) {
  translate: var(--room-anchor-shift-x, 0) var(--room-anchor-shift-y, 0);
  transition: translate 520ms cubic-bezier(.2, .76, .2, 1);
}
[data-room-camera].is-camera-dragging :is([data-cat-actor], [data-room-anchor], .room-decor-slot, .core-home-event),
[data-room-camera].is-camera-holding :is([data-cat-actor], [data-room-anchor], .room-decor-slot, .core-home-event),
[data-room-camera].is-camera-restoring :is([data-cat-actor], [data-room-anchor], .room-decor-slot, .core-home-event) { transition: none !important; }

.core-home__scene::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 250 226 / 6%), transparent 48%, rgb(85 49 27 / 9%));
  content: "";
  pointer-events: none;
}

.core-home__decor-playfield {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

/* Formal playfields reserve the lower-left edge for the care tool dock. */
.core-home__decor-playfield .room-decor-slot--front-left { left: 18%; }
.core-scene-playfield .room-decor-slot--front-left { left: 17%; }

.core-home__cat {
  --core-cat-room-x: 0px;
  --core-cat-room-y: 0px;
  --core-cat-room-scale: 1;
  position: absolute;
  z-index: 12;
  right: auto;
  bottom: 36px;
  left: 50%;
  width: 310px;
  height: 390px;
  transition: transform 1.3s cubic-bezier(.2, .76, .2, 1), translate 520ms cubic-bezier(.2, .76, .2, 1);
}

/* The cat keeps its own room-space motion while the camera projects that world position into view. */
.core-home .core-home__scene > .core-home__cat {
  transform: translateX(-50%) translateX(var(--core-cat-room-x)) translateY(var(--core-cat-room-y)) scale(var(--core-cat-room-scale));
}

/* Adult roaming keeps its own cadence independently from the room camera. */
.core-home__scene > .core-home__cat[data-can-roam] { transition-duration: var(--room-walk-ms), 520ms; transition-timing-function: cubic-bezier(.4, 0, .6, 1), cubic-bezier(.2, .76, .2, 1); }

.core-home__scene > .core-home__cat[data-roam-space="window"] { --room-walk-ms: calc(var(--room-walk-cycle-ms) * 2); --core-cat-room-x: -158px; --core-cat-room-y: -14px; --core-cat-room-scale: .94; }
.core-home__scene > .core-home__cat[data-roam-space="rest"] { --room-walk-ms: calc(var(--room-walk-cycle-ms) * 2); --core-cat-room-x: 0px; --core-cat-room-y: 22px; --core-cat-room-scale: .98; }
.core-home__scene > .core-home__cat[data-roam-space="table"] { --room-walk-ms: calc(var(--room-walk-cycle-ms) * 2); --core-cat-room-x: 158px; --core-cat-room-y: -8px; --core-cat-room-scale: .95; }

.core-tool-dock {
  position: absolute;
  z-index: 28;
  /* 工具坞避开固定的试玩小助手入口，保证奖励道具始终可点。 */
  bottom: 60px;
  left: 18px;
  display: flex;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 15px;
  background: rgb(67 50 47 / 56%);
  box-shadow: 0 10px 24px rgb(53 37 31 / 16%);
  backdrop-filter: blur(12px);
}

.core-tool {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 54%);
  border-radius: 11px;
  background: rgb(255 249 235 / 90%);
  box-shadow: 0 4px 10px rgb(52 35 29 / 12%);
}

.core-tool img { width: 33px; height: 33px; object-fit: contain; pointer-events: none; }
.core-tool:hover:not(:disabled),
.core-tool:focus-visible:not(:disabled) { transform: translateY(-2px); box-shadow: 0 7px 14px rgb(52 35 29 / 18%); }
.core-tool.is-waiting { filter: grayscale(.75); opacity: .38; }

.core-home-events { position: absolute; z-index: 24; inset: 0; pointer-events: none; }
.core-home-event { position: absolute; width: 58px; height: 58px; padding: 5px; border: 0; border-radius: 50%; background: rgb(255 248 229 / 72%); box-shadow: 0 8px 18px rgb(60 39 30 / 14%); pointer-events: auto; }
.core-home-event img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.core-home-event--poop { bottom: 25px; left: 63%; }
.core-home-event--gratitudeMouse { bottom: 72px; left: 24%; }

.core-photo-wall-hotspot {
  position: absolute;
  z-index: 0;
  top: 16%;
  left: 56%;
  display: grid;
  width: 152px;
  height: 110px;
  grid-template-rows: minmax(0, 1fr) 24px;
  gap: 4px;
  padding: 7px 8px 6px;
  border: 2px solid #8f6447;
  border-radius: 3px;
  background: rgb(216 180 135 / 88%);
  box-shadow: inset 0 0 0 1px rgb(247 229 198 / 82%), 0 2px 4px rgb(70 45 30 / 16%);
  transition: translate 520ms cubic-bezier(.2, .76, .2, 1), box-shadow 180ms ease, filter 180ms ease;
}

.core-photo-wall-hotspot::after {
  position: absolute;
  top: -9px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #65412e;
  box-shadow: 0 1px 0 #f3d6ad;
  content: "";
}

.core-photo-wall-hotspot__photos { display: grid; min-height: 0; grid-template-columns: 1.18fr .82fr; gap: 7px; pointer-events: none; }
.core-photo-wall-hotspot__frame { position: relative; min-width: 0; overflow: hidden; border: 4px solid #fff7e7; background: #eed8b5; box-shadow: 0 1px 3px rgb(66 39 24 / 34%); }
.core-photo-wall-hotspot__frame img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.85) contrast(.96); }
.core-photo-wall-hotspot__frame--mine { transform: rotate(-2deg); }
.core-photo-wall-hotspot__frame--relation { transform: rotate(2deg); }
.core-photo-wall-hotspot__frame i {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #b8695f;
  color: #fff9ed;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}
.core-photo-wall-hotspot__plaque { display: flex; align-items: center; justify-content: space-between; padding: 0 5px; color: #3f2b24; pointer-events: none; }
.core-photo-wall-hotspot__plaque b { font-size: 11px; letter-spacing: 0; }
.core-photo-wall-hotspot__plaque small { font-size: 9px; font-weight: 800; opacity: 1; }

.core-photo-wall-hotspot:hover,
.core-photo-wall-hotspot:focus-visible {
  box-shadow: inset 0 0 0 1px #fff1d2, 0 0 0 3px rgb(255 239 192 / 38%), 0 3px 6px rgb(70 45 30 / 18%);
  filter: brightness(1.035);
}

.room-camera-controls {
  position: absolute;
  z-index: 24;
  top: 78px;
  right: auto;
  bottom: auto;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 38px);
  grid-template-rows: repeat(2, 38px);
  gap: 5px;
}

.room-camera-controls button {
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 12px;
  background: rgb(66 48 43 / 62%);
  color: #fff8e8;
  font-size: 20px;
  backdrop-filter: blur(10px);
}

.room-camera-controls button:nth-child(1) { grid-area: 2 / 1; }
.room-camera-controls button:nth-child(2) { grid-area: 1 / 2; }
.room-camera-controls button:nth-child(3) { grid-area: 2 / 3; }
.room-camera-controls button:nth-child(4) { grid-area: 2 / 2; }
.room-camera-controls button:not(:disabled):hover,
.room-camera-controls button:not(:disabled):focus-visible { background: #a7655d; }
.room-camera-controls button.is-camera-holding { background: #a7655d; transform: scale(.94); }
.room-camera-controls button:disabled {
  border-color: rgb(255 255 255 / 24%);
  background: rgb(66 60 58 / 34%);
  box-shadow: none;
  color: rgb(255 248 232 / 34%);
  cursor: not-allowed;
  filter: grayscale(1);
}

.core-moment {
  position: absolute;
  z-index: 20;
  top: 96px;
  right: 358px;
  bottom: auto;
  max-width: 280px;
  padding: 12px 15px;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 14px;
  background: rgb(255 250 239 / 78%);
  box-shadow: 0 12px 24px rgb(73 50 38 / 14%);
  color: #5d453d;
  backdrop-filter: blur(12px);
}

.core-moment span { color: #aa6861; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.core-moment p { margin: 3px 0 0; font-size: 12px; line-height: 1.55; }

.core-home__panel {
  position: absolute;
  z-index: 30;
  top: 72px;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 318px;
  min-height: 0;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 20px;
}

.core-day-heading > span {
  display: block;
  margin-bottom: 5px;
  color: #b3605d;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
}

.core-day-heading h2 { margin: 0; font-family: var(--font-display); font-size: 21px; }
.core-day-heading p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.core-home__panel .cat-context-bar { flex: 0 0 auto; }

.core-care-sequence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.core-care-beat {
  display: grid;
  min-height: 64px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 6px;
  border: 1px solid rgb(118 83 66 / 12%);
  border-radius: 14px;
  background: rgb(255 255 255 / 42%);
  color: #77635a;
  text-align: left;
}

.core-care-beat i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgb(126 97 79 / 10%);
  font-style: normal;
}

.core-care-beat span { font-size: 12px; font-weight: 900; }
.core-care-beat.is-active { border-color: rgb(178 96 88 / 36%); background: #fff7e8; color: #774943; box-shadow: 0 7px 18px rgb(126 77 64 / 12%); }
.core-care-beat.is-active i { background: #b76b62; color: white; }
.core-care-beat.is-done { opacity: .55; }

.core-intimacy-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 10px;
  align-items: center;
}

.core-intimacy-meter > i {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(103 80 65 / 11%);
}

.core-intimacy-meter > i::after {
  display: block;
  width: calc(var(--core-intimacy) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d48a78, #e7b66d);
  content: "";
  transition: width 280ms ease;
}

.core-intimacy-meter span,
.core-intimacy-meter b { font-size: 11px; }
.core-intimacy-meter b { color: #a85d58; }

.core-tool-strip {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 13px;
  background: rgb(255 255 255 / 34%);
}

.core-tool-strip > span:not(.core-earned-tool) { color: var(--muted); font-size: 11px; }
.core-earned-tool { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; background: #fff8e8; }
.core-earned-tool img { width: 30px; height: 30px; object-fit: contain; }
.core-day-two-actions { display: grid; gap: 8px; }

.core-reward-reveal {
  position: absolute;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(45 32 31 / 48%);
  backdrop-filter: blur(5px);
}

.core-reward-reveal > div {
  display: grid;
  width: 320px;
  justify-items: center;
  padding: 28px;
  border: 1px solid rgb(255 255 255 / 66%);
  border-radius: 25px;
  background: #fff8e8;
  box-shadow: 0 28px 60px rgb(45 29 28 / 24%);
  text-align: center;
  animation: core-reward-in 320ms var(--ease);
}

.core-reward-reveal span { color: #ad6860; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.core-reward-reveal img { width: 118px; height: 118px; margin: 10px 0 4px; object-fit: contain; filter: drop-shadow(0 12px 16px rgb(106 70 51 / 18%)); }
.core-reward-reveal h2 { margin: 0; font-family: var(--font-display); font-size: 26px; }
.core-reward-reveal p { margin: 7px 0 16px; color: var(--muted); font-size: 12px; }

.core-photo-wall-unlock {
  position: absolute;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(45 32 31 / 48%);
  backdrop-filter: blur(5px);
}

.core-photo-wall-unlock__panel {
  display: grid;
  width: min(640px, calc(100% - 40px));
  justify-items: center;
  gap: 10px;
  padding: 22px 20px 18px;
  border: 1px solid rgb(255 255 255 / 66%);
  border-radius: 25px;
  background: #fff8e8;
  box-shadow: 0 28px 60px rgb(45 29 28 / 24%);
  text-align: center;
}

.core-photo-wall-unlock span { color: #ad6860; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.core-photo-wall-unlock h2 { margin: 0; font-family: var(--font-display); font-size: 26px; }
.core-photo-wall-unlock p { margin: 0 0 4px; color: var(--muted); font-size: 12px; }
.core-photo-wall-unlock .photo-wall {
  width: 100%;
  min-height: 150px;
  grid-template-columns: 120px minmax(0, 1fr) 120px;
  gap: 12px;
  padding: 14px 16px;
}
.core-photo-wall-unlock .photo-wall-visit { display: none; }
.core-photo-wall-unlock .primary-button { margin-top: 6px; }

.home-photo-preview {
  position: absolute;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(45 32 31 / 48%);
  backdrop-filter: blur(5px);
}

.home-photo-preview__panel {
  display: grid;
  width: min(360px, calc(100% - 40px));
  justify-items: center;
  gap: 10px;
  padding: 22px 20px 18px;
  border: 1px solid rgb(255 255 255 / 66%);
  border-radius: 25px;
  background: #fff8e8;
  box-shadow: 0 28px 60px rgb(45 29 28 / 24%);
  text-align: center;
}

.home-photo-preview__panel span { color: #ad6860; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.home-photo-preview__panel h2 { margin: 0; font-family: var(--font-display); font-size: 24px; }
.home-photo-preview__panel p { margin: 0 0 4px; color: var(--muted); font-size: 12px; }
.home-photo-preview__panel figure {
  margin: 0;
  width: 100%;
  padding: 16px 12px 12px;
  border: 2px solid #fffdf8;
  border-radius: 4px;
  background: #fffaf2;
  box-shadow: 0 8px 16px rgb(75 51 44 / 14%);
}
.home-photo-preview__panel img { width: 100%; max-height: 220px; object-fit: contain; }

.core-bond-clue-reveal {
  position: absolute;
  z-index: 92;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(38 31 29 / 62%);
  backdrop-filter: blur(7px);
}
.core-bond-clue-reveal__panel {
  position: relative;
  display: grid;
  width: 540px;
  justify-items: center;
  overflow: hidden;
  padding: 26px 34px 24px;
  border: 1px solid rgb(255 250 235 / 84%);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 28px 70px rgb(37 27 25 / 32%);
  text-align: center;
  animation: core-bond-clue-in 420ms cubic-bezier(.2, .8, .2, 1) both;
}
.core-bond-clue-reveal__panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #b65f5b, #e1b65f 52%, #758b6d);
  content: "";
}
.core-bond-clue-reveal__kicker { color: #a85c58; font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.core-bond-clue-reveal__connection { display: grid; width: 100%; grid-template-columns: 116px 1fr 116px; align-items: center; margin: 14px 0 12px; }
.core-bond-clue-reveal__connection figure { display: grid; justify-items: center; margin: 0; }
.core-bond-clue-reveal__connection figure > img { width: 88px; height: 88px; object-fit: contain; border: 1px solid rgb(122 91 76 / 14%); border-radius: 50%; background: #fff; filter: drop-shadow(0 8px 11px rgb(82 55 46 / 16%)); }
.core-bond-clue-reveal__connection figcaption { display: grid; margin-top: 5px; color: #604842; font-size: 13px; font-weight: 950; }
.core-bond-clue-reveal__connection figcaption small { color: #8c746d; font-size: 10px; font-weight: 750; }
.core-bond-clue-reveal__connection > div { position: relative; display: grid; grid-template-columns: 1fr 30px 1fr; align-items: center; color: #c08a3f; }
.core-bond-clue-reveal__connection > div i { height: 2px; background: #cf8d65; transform-origin: center; animation: core-bond-thread-light 760ms 160ms ease-out both; }
.core-bond-clue-reveal__connection > div b { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid #dba75c; transform: rotate(45deg); background: #fff3c8; box-shadow: 0 0 0 5px rgb(223 181 96 / 13%); font-size: 13px; }
.core-bond-clue-reveal__connection > div b span { transform: rotate(-45deg); }
.core-bond-clue-reveal__connection > div small { position: absolute; top: calc(100% + 8px); left: 50%; color: #9b6a4b; font-size: 10px; font-weight: 900; white-space: nowrap; transform: translateX(-50%); }
.core-bond-clue-reveal h2 { margin: 8px 0 5px; color: #5c433d; font-family: var(--font-display); font-size: 25px; }
.core-bond-clue-reveal p { max-width: 430px; margin: 0 0 17px; color: #806a63; font-size: 12px; line-height: 1.65; }
.core-bond-clue-reveal__actions { display: grid; width: 100%; grid-template-columns: 1fr 1.5fr; gap: 9px; }
.core-bond-clue-reveal__actions button { min-height: 44px; border-radius: 6px; font-weight: 900; }
.core-bond-clue-reveal__actions button:not(.primary-button) { border: 1px solid rgb(126 93 76 / 16%); background: #f2e9dc; color: #755a52; }

@keyframes core-reward-in {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
}

@keyframes core-bond-clue-in {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
}

@keyframes core-bond-thread-light {
  from { opacity: 0; transform: scaleX(0); }
}

.stage--core-system {
  background: rgb(255 249 237 / 92%);
  backdrop-filter: blur(12px);
}

.core-system-page {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: 64px 1fr;
  /* Full-screen system pages use one compact top edge; global controls stay on the foreground layer. */
  padding: 16px 28px 22px;
}

.core-system-page > header {
  display: flex;
  align-items: center;
  gap: 13px;
}

.core-system-page > header button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 13px;
  background: rgb(69 51 48 / 76%);
  color: white;
  font-size: 26px;
}

.core-system-page > header span { color: #a65f58; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.core-system-page > header h1 { margin: 0; font-family: var(--font-display); font-size: 24px; }
.core-system-page__content { min-height: 0; overflow: auto; border-top: 1px solid rgb(116 79 64 / 14%); border-radius: 0; }
.core-system-page--wall .core-system-page__content { display: grid; place-items: center; background: transparent; }
.core-system-page--compendium .core-system-page__content { padding: 18px 0 0; background: transparent; }

.core-social-home {
  isolation: isolate;
  position: relative;
  width: 100%;
  height: 100%;
}
.core-social-home__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: url("../assets/scenes/neighbor-home-yu-v1.png") var(--room-camera-x, 50%) var(--room-camera-y, 50%) / auto 128% no-repeat;
  box-shadow: none;
  transition: background-position 520ms cubic-bezier(.2, .76, .2, 1);
}

.core-social-home__scene > .social-visit-cat { position: absolute; z-index: 8; right: 38%; bottom: 64px; width: 268px; height: 330px; }
.core-social-home__scene > .core-social-home__housemate { position: absolute; z-index: 5; bottom: 54px; left: 18%; width: 190px; height: 230px; filter: saturate(.9) drop-shadow(0 12px 13px rgb(71 49 39 / 16%)); }
.core-social-home__owner-light { position: absolute; z-index: 3; top: 9%; right: 31%; width: 82px; height: 130px; border-radius: 42px 42px 12px 12px; background: linear-gradient(180deg, rgb(255 224 156 / 20%), rgb(255 248 218 / 5%)); }
.core-social-home__owner-light i { position: absolute; top: 18px; left: 29px; width: 24px; height: 24px; border-radius: 50%; background: rgb(94 62 50 / 28%); box-shadow: 0 29px 0 12px rgb(94 62 50 / 20%); }
.core-photo-wall-hotspot--neighbor { top: 14%; right: auto; left: 22%; width: 128px; height: 94px; }
.core-return-gift {
  position: absolute;
  z-index: 26;
  bottom: 22px;
  left: 50%;
  min-width: 190px;
  min-height: 44px;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 14px;
  background: rgb(169 92 84 / 90%);
  box-shadow: 0 12px 26px rgb(70 45 38 / 22%);
  color: #fff9ed;
  font-size: 12px;
  font-weight: 900;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.core-social-activity {
  position: absolute;
  z-index: 20;
  top: 70px;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 340px;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgb(136 92 76 / 18%);
  border-radius: 24px;
  background: rgb(255 250 240 / 88%);
  box-shadow: 0 22px 48px rgb(70 45 30 / 14%);
  color: var(--ink);
  backdrop-filter: blur(16px);
}
.core-social-activity > header { display: grid; gap: 3px; }
.core-social-activity > header span { color: #a65f58; font-size: 10px; font-weight: 900; }
.core-social-activity > header h2 { margin: 0; font-family: var(--font-display); font-size: 23px; }
.core-social-activity > header small { color: var(--ink-soft); font-size: 10px; }
.core-social-activity__post { margin: 0; color: #5d4944; font-family: var(--font-display); font-size: 15px; line-height: 1.65; }
.core-social-activity__comments { min-height: 0; overflow: auto; border-block: 1px solid rgb(136 92 76 / 14%); padding-block: 8px; }
.core-social-activity__comments p { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 7px; margin: 0; padding: 5px 0; font-size: 11px; line-height: 1.45; }
.core-social-activity__comments b { color: #a65f58; }
.core-social-activity__comments span { min-width: 0; overflow-wrap: anywhere; }
.core-social-activity__actions { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 8px; }
.core-social-activity__actions button {
  display: flex;
  min-width: 0;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgb(166 95 88 / 22%);
  border-radius: 10px;
  background: rgb(255 255 255 / 76%);
  color: #8b514d;
}
.core-social-activity__actions button:disabled { opacity: .58; }
.core-social-activity__actions button b { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.core-social-comment { display: grid; gap: 5px; }
.core-social-comment label { color: var(--ink-soft); font-size: 10px; font-weight: 800; }
.core-social-comment > div { display: grid; grid-template-columns: minmax(0, 1fr) 38px; gap: 6px; }
.core-social-comment input { min-width: 0; height: 38px; border: 1px solid rgb(136 92 76 / 22%); border-radius: 10px; background: white; padding: 0 10px; color: var(--ink); font: inherit; font-size: 11px; }
.core-social-comment button { width: 38px; height: 38px; border: 0; border-radius: 10px; background: #a7655d; color: white; font-size: 18px; }
.core-social-activity > footer { color: var(--ink-soft); font-size: 9px; text-align: center; }
.core-social-activity { grid-template-rows: auto auto auto minmax(0, 1fr) auto auto auto auto; }

.action-experience {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 48px;
  background: radial-gradient(circle at 68% 28%, rgb(255 228 174 / 18%), transparent 30%), linear-gradient(135deg, #55434e, #2f2b3b);
  color: #fff8ea;
}

.action-experience > header { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 18px; }
.action-experience h1 { margin: 3px 0 4px; font-family: var(--font-display); font-size: 34px; }
.action-experience p { margin: 0; color: rgb(255 248 234 / 68%); font-size: 13px; }
.action-experience header span { color: #f4be92; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.action-experience__back,
.action-experience__v2 { color: #fff8ea; text-decoration: none; }
.action-experience__back { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; background: rgb(255 255 255 / 10%); font-size: 28px; }
.action-experience__v2 { padding: 11px 15px; border: 1px solid rgb(255 255 255 / 22%); border-radius: 13px; font-size: 12px; font-weight: 900; }
.action-demo-grid { display: grid; min-height: 0; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.action-demo-card { display: grid; align-content: end; min-height: 140px; gap: 5px; padding: 18px; border: 1px solid rgb(255 255 255 / 14%); border-radius: 20px; background: linear-gradient(150deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 4%)); color: #fff8ea; text-decoration: none; transition: transform 180ms ease, background 180ms ease; }
.action-demo-card:hover,
.action-demo-card:focus-visible { background: linear-gradient(150deg, rgb(244 183 140 / 26%), rgb(255 255 255 / 6%)); transform: translateY(-3px); }
.action-demo-card > span { align-self: start; font-size: 16px; opacity: .7; }
.action-demo-card b { font-family: var(--font-display); font-size: 21px; }
.action-demo-card small { color: rgb(255 248 234 / 66%); font-size: 11px; }
.action-experience footer { color: rgb(255 248 234 / 56%); font-size: 11px; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .core-reward-reveal > div,
  .core-bond-clue-reveal__panel,
  .core-bond-clue-reveal__connection > div i,
  .core-home__scene,
  .core-home__cat,
  .core-photo-wall-hotspot,
  .action-demo-card { animation: none; transition: none; }
}
