/*
 * Two Hearts - styles.
 *
 * Dark, warm and cosy rather than neon. Everything scales down to a phone
 * screen because that is where most check-ins will happen.
 */

:root {
  --bg: #1d1b22;
  --bg-2: #242129;
  --panel: #29262f;
  --panel-2: #332f3a;
  --ink: #f3ecff;
  --ink-dim: #b6a8cf;
  --ink-faint: #b1a8bc;
  --line: #514958;

  color-scheme: dark;
  --accent-ink: #321320;
  --danger-ink: #ffc2c8;

  --pink: #ff8fab;
  --blue: #8fd3ff;
  --gold: #ffd166;
  --green: #a0e8af;
  --red: #ff6b7a;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 16px rgb(29 27 34 / 12%);

  /* Gauge colours, keyed by need. */
  --satiety: #ffb26b;
  --energy: #9db4ff;
  --hygiene: #7fe3d4;
  --joy: #ffc9de;
  --health: #a0e8af;
}

.feature-panels { display: grid; gap: 16px; min-width: 0; }
.life-panel { margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--line); text-align: left; }
.life-panel h3 { font-size: 1.05rem; }
.pet-moment { color: var(--ink); line-height: 1.65; }
.incident-card { padding: 18px; margin: 16px 0; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; }
.feature-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.feature-buttons button { min-height: 44px; flex: 1 1 130px; }
.habit-list { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-panels summary { cursor: pointer; font-weight: 650; min-height: 32px; }
.feature-panels details[open] summary { margin-bottom: 18px; }
.shop-grid, .trophy-shelf { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; }
.shop-item, .trophy { padding: 14px; border: 1px solid var(--line); border-radius: 10px; }
.shop-item h4 { margin: 0; }
.shop-item p { color: var(--ink-dim); font-size: .85rem; }
.shop-item button { margin: 4px 4px 0 0; }
.trophy { color: var(--ink-dim); }
.trophy.won { color: var(--gold); border-color: #89703f; }
.trophy small { display: block; margin-top: 6px; color: var(--ink-dim); }
.memory { border-top: 1px solid var(--line); padding: 8px 0 14px; }
.memory small { color: var(--ink-dim); }
.skill-game:not(:empty), .coop-game:not(:empty) { padding: 18px; margin-top: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); }
.game-pads { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0; }
.game-pads button { min-height: 68px; }
.reaction-pad { width: 100%; min-height: 100px; margin: 12px 0; font-size: 1.2rem; }
.catch-lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.catch-lanes button { height: 130px; font-size: 2rem; }
button.lit, button.lit:disabled { background: #ffd166; color: #2b203a; opacity: 1; border-color: #fff0be; box-shadow: none; }
.relay-pattern { color: var(--gold); font-size: 1.15rem; }
.game-result { color: var(--green); }
.milestones { padding-left: 22px; line-height: 2; }
.expedition-card, .outing-result { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); margin: 14px 0; }
.outing-panel h4 { margin: 0 0 8px; }
.route-track { display: flex; gap: 12px; margin: 14px 0; }
.route-track span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--bg); }
.route-track .current { background: var(--gold); color: var(--bg); }
.outing-scene { font-size: 1.1rem; }
.outing-choices { display: grid; gap: 8px; margin: 14px 0; }
.outing-choices button { text-align: left; padding: 14px; }
.outing-choices small { display: block; margin-top: 5px; color: var(--ink-dim); }
.destination-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.destination { padding: 14px; border-radius: 10px; border: 1px solid var(--line); }
.destination button { width: 100%; }
.outing-workshop, .outing-journal { margin-top: 20px; }
.outing-result strong, .supplies { color: var(--gold); }
@media (max-width: 440px) {
  .shop-grid, .trophy-shelf { grid-template-columns: 1fr 1fr; }
  .shop-item { padding: 10px; }
  .incident-card, .skill-game:not(:empty), .coop-game:not(:empty) { padding: 12px; }
}

* {
  box-sizing: border-box;
}

/*
 * The client shows and hides every panel through the `hidden` attribute, but
 * the browser's default `[hidden] { display: none }` is the weakest possible
 * rule - any `display` we set later in this file beats it. `.gate` and `main`
 * both set `display: grid`, so without this the join screen could never be
 * dismissed and the game underneath was unreachable.
 *
 * !important because these elements are laid out by class, and a class
 * selector already outranks the attribute one. Nothing sets style.display
 * inline, so there is nothing for this to fight with.
 */
[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.5 ui-rounded, "Segoe UI", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
}

button,
input {
  font: inherit;
  color: inherit;
}

/* ------------------------------------------------------------------ gate */

.gate {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gate-card {
  width: min(440px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.gate-card h1 {
  font-size: 28px;
  text-align: left;
}

.gate-sub {
  margin: 6px 0 22px;
  text-align: left;
  color: var(--ink-dim);
  font-size: 14px;
}

.gate-card form {
  display: grid;
  gap: 6px;
}

.gate-card label {
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 10px;
}

input {
  width: 100%;
  padding: 11px 13px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
}

input:focus-visible {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgb(255 143 171 / 22%);
}

button {
  cursor: pointer;
  padding: 11px 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.08s ease, background 0.15s ease, opacity 0.15s ease;
}

button:hover:not(:disabled) {
  background: var(--line);
}

button:active:not(:disabled) {
  transform: translateY(1px);
}

button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

button.primary {
  margin-top: 18px;
  background: var(--pink);
  border-color: var(--pink);
  color: var(--accent-ink);
  font-weight: 650;
}

button.primary:hover:not(:disabled) {
  background: var(--pink);
  filter: brightness(.94);
}

.error {
  margin: 12px 0 0;
  padding: 9px 11px;
  background: rgb(255 107 122 / 12%);
  border: 1px solid rgb(255 107 122 / 35%);
  border-radius: var(--radius-sm);
  color: var(--danger-ink);
  font-size: 13px;
}

/* ------------------------------------------------------------------ shell */

main {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 16px 16px 48px;
  display: grid;
  gap: 14px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 2px;
}

.who {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px rgb(255 143 171 / 20%);
}

.presence {
  display: flex;
  gap: 6px;
  flex: 1;
  flex-wrap: wrap;
}

.presence .chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-dim);
}

.presence .chip .dot {
  width: 7px;
  height: 7px;
  box-shadow: none;
}

.presence .chip.here {
  color: var(--ink);
  border-color: rgb(160 232 175 / 45%);
}

.conn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-faint);
}

.conn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.conn.live .conn-dot {
  background: var(--green);
}

.conn.down .conn-dot {
  background: var(--red);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

/* ------------------------------------------------------------------ stage */

.stage-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.stage-head h2 {
  font-size: 22px;
}

.stage-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pill {
  padding: 3px 9px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-dim);
}

.pill.subtle {
  color: var(--ink-faint);
}

.pill.form {
  background: linear-gradient(180deg, rgb(255 209 102 / 22%), rgb(255 209 102 / 8%));
  border-color: rgb(255 209 102 / 45%);
  color: var(--gold);
}

.screen-wrap {
  margin: 14px 0 10px;
  display: grid;
  place-items: center;
}

/* The "device screen" the pet lives in. */
.screen {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, #17324a 0%, #1d4a5e 55%, #26614f 100%);
  border: 3px solid #120d1c;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgb(0 0 0 / 45%), 0 6px 20px rgb(0 0 0 / 40%);
}

/* Night: the screen dims while the pet sleeps. */
.screen.night {
  background: linear-gradient(180deg, #0e1830 0%, #14203c 60%, #172a3a 100%);
}

.screen.dead {
  background: linear-gradient(180deg, #241f2a 0%, #2b2530 100%);
  filter: saturate(0.25);
}

#pet-canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

.mood-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 9px;
  background: rgb(0 0 0 / 40%);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dff3ff;
  backdrop-filter: blur(3px);
}

/* Little rising icons when someone does something. */
.float-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floater {
  position: absolute;
  font-size: 26px;
  animation: rise 1.1s ease-out forwards;
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.7);
  }
  25% {
    opacity: 1;
    transform: translateY(-4px) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translateY(-46px) scale(1);
  }
}

.status-line {
  margin: 4px 0 14px;
  text-align: center;
  color: var(--ink-dim);
  font-size: 14px;
  min-height: 1.5em;
}

/* ----------------------------------------------------------------- gauges */

.gauges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.gauge {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
}

.gauge-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.gauge-head .val {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.meter {
  height: 8px;
  background: rgb(0 0 0 / 35%);
  border-radius: 999px;
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s ease, background 0.4s ease;
}

/* A need that has bottomed out should be impossible to miss. */
.gauge.critical {
  border-color: rgb(255 107 122 / 55%);
  animation: nudge 1.6s ease-in-out infinite;
}

@keyframes nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

/* ------------------------------------------------------------------- bond */

.bond {
  margin-top: 14px;
  padding: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.bond-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}

.bond-head span:last-child {
  font-variant-numeric: tabular-nums;
}

.bond-meter {
  height: 10px;
}

.bond-meter .fill {
  background: var(--pink);
}

.bond-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------- actions */

.actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 8px;
}

.action {
  position: relative;
  display: grid;
  gap: 3px;
  place-items: center;
  padding: 11px 6px;
  overflow: hidden;
}

.action .icon {
  font-size: 22px;
  line-height: 1;
}

.action .label {
  font-size: 12px;
  color: var(--ink-dim);
}

.action .wait {
  font-size: 11px;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  min-height: 1em;
}

/* Cooldown sweeps across the button as it recharges. */
.action .cool {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 45%);
  transform-origin: left;
  transition: transform 0.9s linear;
  pointer-events: none;
}

/* --------------------------------------------------------------- columns */

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 620px) {
  .columns {
    grid-template-columns: 1fr;
  }
}

.columns h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--ink-dim);
}

.notes form {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.notes form input {
  flex: 1;
}

.note-list,
.log-list,
.graves ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  max-height: 260px;
  overflow-y: auto;
}

.note-list li {
  padding: 8px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.note-list .meta {
  display: block;
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 3px;
}

/* The log's rows are separated by their own bottom border, so the shared grid
   gap above would leave each divider floating between two rows. */
.log-list {
  gap: 0;
}

/* Sits on the row's baseline, unlike the notes' meta, which is its own line. */
.log-list .meta {
  font-size: 11px;
  color: var(--ink-faint);
}

.log-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
  padding: 5px 2px;
  border-bottom: 1px solid rgb(61 47 87 / 45%);
}

.log-list li:last-child {
  border-bottom: none;
}

.log-list .who-name {
  font-weight: 600;
  color: var(--ink);
}

/* A shared action is the thing we want them to notice and repeat. */
.log-list li.shared {
  color: var(--ink);
}

.log-list li.shared .badge {
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 10px;
  background: rgb(255 143 171 / 18%);
  border: 1px solid rgb(255 143 171 / 40%);
  color: var(--pink);
}

.log-list li.death {
  color: var(--danger-ink);
}

.empty,
.memorial {
  text-align: center;
}

.empty form,
.memorial form {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.empty input,
.memorial input {
  width: min(220px, 100%);
}

.empty .primary,
.memorial .primary {
  margin-top: 0;
}

.memorial p {
  color: var(--ink-dim);
  font-size: 14px;
}

.graves li {
  font-size: 13px;
  color: var(--ink-dim);
  padding: 7px 2px;
  border-bottom: 1px solid rgb(61 47 87 / 45%);
}

/* -------------------------------------------------------------- attention */

/*
 * The pet's single request. Warm rather than alarming - it is the pet asking,
 * not the app telling you off.
 */
.attention {
  margin: -6px 0 14px;
  padding: 8px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--gold);
  background: rgb(255 209 102 / 10%);
  border: 1px solid rgb(255 209 102 / 30%);
  border-radius: var(--radius-sm);
}

/* -------------------------------------------------------------- traits */

.traits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.trait {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
}

.trait-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.trait-head .val {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.trait-hint {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--ink-faint);
}

/* A track with two markers: where the pet is, and where it ought to be. */
.scale {
  position: relative;
  height: 8px;
  background: rgb(0 0 0 / 35%);
  border-radius: 999px;
}

.scale-ideal,
.scale-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.scale-ideal {
  width: 2px;
  height: 14px;
  background: rgb(160 232 175 / 70%);
  border-radius: 1px;
}

.scale-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--bg-2);
  transition: left 0.5s ease, background 0.4s ease;
}

.scale-marker.heavy {
  background: var(--gold);
}

#discipline-fill {
  background: var(--joy);
}

.pill.trait-pill {
  background: linear-gradient(180deg, rgb(143 211 255 / 20%), rgb(143 211 255 / 6%));
  border-color: rgb(143 211 255 / 40%);
  color: var(--blue);
}

/* ---------------------------------------------------------------- minigame */

.game-panel {
  margin-top: 12px;
  padding: 14px;
  text-align: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.game-prompt {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--ink);
}

.game-choices {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

button.ghost {
  background: transparent;
  color: var(--ink-faint);
}

/* ----------------------------------------------------------------- revive */

/*
 * Set apart from "begin again" with a warmer border: this is the option that
 * expires, so it should read as the one to decide about now.
 */
.revive {
  margin: 14px auto 0;
  padding: 14px;
  max-width: 420px;
  background: rgb(160 232 175 / 8%);
  border: 1px solid rgb(160 232 175 / 32%);
  border-radius: var(--radius-sm);
}

.revive-text {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--ink-dim);
}

.log-list li .badge.won,
.log-list li .badge.lost {
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 10px;
}

.log-list li .badge.won {
  background: rgb(160 232 175 / 16%);
  border: 1px solid rgb(160 232 175 / 40%);
  color: var(--green);
}

.log-list li .badge.lost {
  background: rgb(139 124 170 / 16%);
  border: 1px solid rgb(139 124 170 / 40%);
  color: var(--ink-faint);
}

.log-list li.revived {
  color: var(--green);
}

/* ------------------------------------------------------------------ toast */

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 10px 16px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 13px;
  z-index: 50;
  animation: pop 0.18s ease-out;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translate(-50%, 6px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.room-panel { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 8px 0 16px; }
.room-panel small { flex-basis: 100%; color: var(--ink-dim); }
#room-code { overflow-wrap: anywhere; user-select: all; font-family: ui-monospace, monospace; font-size: .9em; }

/* Keep the pet and care controls prominent; supporting sections stay flat. */
.room-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin: 24px 0 12px; }
.room-modes button { background: transparent; border-color: transparent; }
.room-modes button[aria-pressed="true"] { border-color: var(--pink); color: var(--pink); background: var(--bg-2); }
.form-help { color: var(--ink-dim); font-size: 14px; margin: 12px 0 0; }
#room-code-field label { display: block; margin-bottom: 6px; }
input::placeholder { color: var(--ink-faint); opacity: 1; }
.feature-panels > .panel { background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0; padding: 24px 0; }
.destination { background: var(--panel); }
summary:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; }
.visit-focus { border-left: 3px solid var(--pink); margin: 20px 0; padding: 4px 16px; text-align: left; }
.visit-focus h3 { margin: 0 0 8px; }
.care-panel { text-align: left; margin: 20px 0; padding: 16px 0; border-top: 1px solid var(--line); }
.care-panel p, .care-panel li { line-height: 1.5; }
#pet-canvas:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.visit-focus p { line-height: 1.5; }
.incident-card button small { display: block; max-width: 32ch; margin-top: 6px; font-weight: normal; line-height: 1.4; }
@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --bg: #f0eef2; --bg-2: #e9e5ed; --panel: #faf8fc; --panel-2: #e5dfe9;
    --ink: #2b2432; --ink-dim: #5d5168; --ink-faint: #685b73; --line: #b3a8bd;
    --pink: #913953; --accent-ink: #fff5f8; --danger-ink: #9c2638;
    --gold: #755000; --green: #22643a; --red: #a32c40; --blue: #28618b;
    --satiety: #ad5919; --energy: #6263b0; --hygiene: #247969; --joy: #a44e73; --health: #36754b;
  }
  .mood-badge { color: #f3ecff; }
}
