:root {
  --bg: #f4f4f4;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --text: #111111;
  --muted: #8b8b8b;
  --line: #eeeeee;
  --accent: #8fd8ff;
  --accent-deep: #2c9dd8;
  --chat-bg: #eeeeee;
  --fan-box: #eeeeee;
  --shadow: 0 12px 32px rgba(64, 112, 152, 0.16);
  --app-height: 100dvh;
  --message-max-width: min(75vw, 270px);
  --media-width: min(75vw, 285px);
  --photo-max-height: min(100vw, 380px);
}
* { box-sizing: border-box; }
html {
  margin: 0;
  min-height: 100%;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  touch-action: manipulation;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Pretendard, 'Noto Sans KR', sans-serif;
  background: var(--bg);
  color: var(--text);
}
button, input, select { font: inherit; }
button {
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}
.hidden { display: none !important; }
.mobile-shell {
  width: 100%;
  height: var(--app-height);
  min-height: var(--app-height);
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 24px 56px rgba(0, 0, 0, 0.10);
  position: relative;
  overflow: hidden;
}
.screen {
  display: none;
  min-height: var(--app-height);
  position: relative;
}
.screen.is-active { display: block; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.main-tab-content {
  height: var(--app-height);
  overflow-y: auto;
  background: #fff;
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}
.main-tab-panel {
  display: none;
  min-height: calc(var(--app-height) - 76px - env(safe-area-inset-bottom, 0px));
  background: #fff;
}
.main-tab-panel.is-active { display: block; }
.main-header {
  padding: calc(env(safe-area-inset-top, 0px) + 28px) 20px 18px;
}
.main-header.compact {
  padding-bottom: 10px;
}
.main-header h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}
.section-label {
  padding: 0 20px 10px;
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 600;
}
.own-profile-label {
  padding-top: 9px;
  padding-bottom: 20px;
}
.chat-list-label {
  padding-top: 17px;
}
.profile-editor {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 20px 27px;
}
.my-profile-photo {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #d0d0d0;
  color: #f2f2f2;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: default;
}
.my-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.default-person-icon {
  position: relative;
  width: 22px;
  height: 24px;
  display: block;
}
.default-person-icon::before,
.default-person-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}
.default-person-icon::before {
  top: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.default-person-icon::after {
  bottom: 0;
  width: 22px;
  height: 12px;
  border-radius: 12px 12px 5px 5px;
}
.profile-editor-fields {
  min-width: 0;
}
.profile-name-edit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}
.profile-name-edit input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #111;
  font-size: 16px;
  font-weight: 600;
}
.profile-default-hint {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.profile-name-edit #saveDisplayNameBtn {
  min-width: 42px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #777;
  font-size: 11px;
  font-weight: 700;
}
.main-divider {
  height: 1px;
  margin: 0 20px 18px;
  background: #eeeeee;
}
.friend-list {
  display: grid;
}
.friend-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(0, auto);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 8px 20px;
}
.friend-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f0f0f0;
  display: grid;
  place-items: center;
  color: #222;
  font-weight: 800;
  font-size: 18px;
  overflow: hidden;
}
.friend-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.friend-copy {
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
}
.friend-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}
.friend-intro {
  justify-self: end;
  min-width: 0;
  max-width: 42vw;
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.member-kaomoji {
  display: inline-block;
  font-size: 1.16em;
  line-height: 1;
  font-weight: 400;
  vertical-align: -0.04em;
}
.bottom-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  height: calc(68px + env(safe-area-inset-bottom, 0px));
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: #fff;
  border-top: 1px solid #efefef;
}
.main-tab-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  justify-self: center;
  display: grid;
  place-items: center;
  color: #777;
}
.main-tab-btn.is-active {
  color: #111;
}
.main-tab-btn:disabled {
  color: #777;
  opacity: 1;
  cursor: default;
}
.main-tab-btn svg {
  width: 26px;
  height: 26px;
}
.tab-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.tab-solid {
  fill: currentColor;
  opacity: 0;
}
.main-tab-btn.is-active .tab-solid {
  opacity: 1;
}
.tab-dot {
  fill: currentColor;
}
.more-blank {
  min-height: calc(var(--app-height) - 76px - env(safe-area-inset-bottom, 0px));
  display: grid;
  place-items: center;
  color: #111;
  font-size: 28px;
  letter-spacing: 6px;
}
.roomlist-header {
  padding: calc(env(safe-area-inset-top, 0px) + 18px) 18px 12px;
}
.roomlist-kicker {
  font-size: 12px;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.roomlist-header h1 {
  margin: 0;
  font-size: 28px;
}
.roomlist-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.display-name-card {
  margin: 0 14px 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.display-name-card label,
.field-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.display-name-card p,
.helper-text { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.display-name-row {
  display: flex;
  gap: 8px;
}
.display-name-row.compact { margin-top: 6px; }
.display-name-row input,
#searchInput,
#dateSelect {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--text);
}
.display-name-row.profile-name-edit input {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.display-name-row button,
.date-jump-btn,
.result-item,
.room-item,
.sheet-close,
.icon-btn,
.composer-plus,
.composer-emoji,
.media-item {
  border: 0;
  background: none;
}
.display-name-row button,
.date-jump-btn,
.save-button,
#saveDisplayNameBtn,
#saveDisplayNameMenuBtn {
  flex: 0 0 auto;
  min-width: 58px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-weight: 700;
}
.display-name-row.profile-name-edit #saveDisplayNameBtn {
  min-width: 42px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #777;
  font-size: 11px;
  font-weight: 700;
}
.room-list {
  padding: 0;
  display: grid;
}
.room-item {
  width: 100%;
  color: #111;
  text-align: left;
  min-height: 76px;
  padding: 10px 20px;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: start;
  border-bottom: 0;
}
.room-item:disabled {
  opacity: 1;
  cursor: default;
}
.room-item.is-upcoming small {
  color: #8f8f8f;
}
.room-avatar, .profile-avatar, .topbar-avatar-fallback {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f0f0f0;
  display: grid;
  place-items: center;
  color: #222;
  font-weight: 800;
  font-size: 20px;
  overflow: hidden;
}
.room-avatar img, .profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-copy {
  min-width: 0;
  display: block;
  padding-top: 5px;
}
.room-item strong {
  display: block;
  color: #111;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}
.room-item small {
  display: block;
  color: #777;
  margin-top: 5px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.room-item .room-meta {
  align-self: start;
  padding-top: 7px;
  color: #a0a0a0;
  font-size: 11px;
  white-space: nowrap;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  height: calc(58px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 10px 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ededed;
  display: grid;
  grid-template-columns: 86px 1fr 86px;
  align-items: center;
  gap: 8px;
}
.topbar-title {
  grid-column: 2;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  padding: 0;
}
.topbar-title .member-kaomoji {
  font-size: 1.1em;
}
.topbar-actions {
  display: flex;
  gap: 4px;
  justify-self: end;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text);
}
.icon-btn svg { width: 24px; height: 24px; fill: currentColor; }
.icon-btn .stroke-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#backBtn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.chat-scroll {
  height: calc(var(--app-height) - 58px - 74px - env(safe-area-inset-top, 0px));
  overflow-y: auto;
  overflow-anchor: none;
  padding-bottom: 0;
  background: var(--chat-bg);
  scrollbar-width: thin;
  scrollbar-color: #a9a9a9 transparent;
}
.chat-scroll::-webkit-scrollbar {
  width: 6px;
}
.chat-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.chat-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #a9a9a9;
}
.chat-content {
  padding: 14px 10px 4px;
}
.has-search-nav .chat-content {
  padding-bottom: 60px;
}
.date-divider {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2px;
  margin: 16px 0 14px;
  color: #777;
}
.date-divider::before {
  content: "";
  height: 0.5px;
  background: #d5d5d5;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.date-divider::after {
  content: none;
}
.date-divider span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 22px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #777;
  font-size: 10px;
  font-weight: 400;
  white-space: nowrap;
}
.load-older-messages {
  width: fit-content;
  min-height: 30px;
  margin: 0 auto 14px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #777;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(67, 103, 131, 0.08);
}
.message-row {
  display: grid;
  grid-template-columns: 41px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
}
.chat-content > .message-row:last-child {
  margin-bottom: 4px;
}
.profile-avatar {
  width: 41px;
  height: 41px;
  font-size: 18px;
  align-self: start;
  margin-top: 0;
}
.message-main { min-width: 0; }
.sender-name {
  font-size: 12px;
  font-weight: 400;
  color: #111;
  line-height: 1.25;
  margin: 0 0 5px 2px;
}
.sender-name .member-kaomoji {
  font-size: 1.12em;
}
.message-stack {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  width: auto;
  max-width: 100%;
}
.time-label {
  flex: 0 0 auto;
  font-size: 10px;
  color: #8a8a8a;
  line-height: 1;
  white-space: nowrap;
}
.bubble-box {
  max-width: var(--message-max-width);
  padding: 8px 11px;
  border-radius: 4px 12px 12px 12px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(67, 103, 131, 0.08);
  white-space: pre-wrap;
  line-height: 1.48;
  font-size: 14px;
  word-break: break-word;
}
.bubble-box p { margin: 0; }
.media-stack { gap: 4px; }
.inline-media {
  display: block;
  width: var(--media-width);
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  background: #d8edf7;
  overflow: hidden;
  cursor: zoom-in;
}
img.inline-media {
  width: var(--media-width);
  max-width: var(--media-width);
  height: auto;
  max-height: var(--photo-max-height);
  object-fit: contain;
}
video.inline-media { cursor: default; }
.video-thumb {
  position: relative;
  width: var(--media-width);
  aspect-ratio: 3 / 4;
  max-height: 420px;
  border-radius: 18px;
  background: #111;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.inline-video {
  width: 100%;
  height: 100%;
  max-height: 420px;
  border-radius: 0;
  background: #111;
  object-fit: contain;
}
.video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.video-play-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 2px;
}
.inline-sticker {
  display: block;
  width: min(34vw, 120px);
  max-height: 120px;
  object-fit: contain;
  background: transparent;
  cursor: default;
}
.emoji-stack {
  gap: 5px;
}
.inline-emoji-message {
  display: block;
  font-size: min(17vw, 60px);
  line-height: 1;
  background: transparent;
  cursor: default;
}
.poll-stack { gap: 4px; }
.poll-card {
  width: var(--message-max-width);
  max-width: var(--message-max-width);
  padding: 16px 16px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(67, 103, 131, 0.08);
}
.poll-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #aaa;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.poll-eyebrow em {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
}
.poll-graphic {
  position: relative;
  height: min(39vw, 150px);
  margin: 28px 0 20px;
  border: 1px solid #eeeeee;
  border-radius: 7px;
  background: #fcfcfc;
  overflow: hidden;
}
.poll-graphic-copy {
  position: absolute;
  left: 28px;
  top: 28px;
  display: grid;
  gap: 8px;
}
.poll-graphic-copy strong {
  color: #050505;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}
.poll-graphic-copy em {
  color: #aaa;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.1;
}
.poll-graphic-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 82px;
  height: 66px;
  fill: none;
}
.poll-graphic-icon circle {
  fill: rgba(255, 230, 82, 0.28);
  stroke: none;
}
.poll-graphic-icon path {
  stroke: #050505;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.poll-graphic-icon .poll-check {
  stroke: #ffe052;
  stroke-width: 8;
}
.poll-question {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.48;
  word-break: break-word;
}
.poll-period {
  margin: 15px 0 0;
  color: #b6b6b6;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}
.poll-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  margin-top: 30px;
  color: #b6b6b6;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.poll-action-arrow {
  width: 6px;
  height: 6px;
  border-top: 2px solid #c6c6c6;
  border-right: 2px solid #c6c6c6;
  transform: rotate(45deg);
}
.poll-result-card .poll-question {
  margin-top: 36px;
}
.poll-result-divider {
  position: relative;
  height: 1px;
  margin: 30px -16px 28px;
  background: #eeeeee;
}
.poll-result-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 7px 17px;
  border-radius: 999px;
  background: #dddddd;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.poll-result-winner {
  min-height: min(39vw, 150px);
  padding: 0 16px 18px;
  border: 1px solid #ead4db;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 245, 248, 0.96), rgba(217, 191, 198, 0.78));
  display: flex;
  align-items: flex-end;
}
.poll-result-winner strong {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}
.live-stack { gap: 4px; }
.live-bubble {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: var(--message-max-width);
  min-height: 0;
  padding: 7px 11px 7px 10px;
  border-radius: 6px 26px 26px 26px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(67, 103, 131, 0.08);
}
.live-call-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  color: #111;
  background: #fff;
}
.live-call-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.is-live-cancelled .live-call-icon::after {
  content: "\00d7";
  position: absolute;
  top: -5px;
  right: -1px;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.live-label {
  min-width: 0;
  color: #111;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.48;
  white-space: nowrap;
}
.is-live-end .live-label {
  font-variant-numeric: tabular-nums;
}
.reply-bundle {
  display: grid;
  justify-items: start;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
}
.reply-answer-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  max-width: 100%;
}
.reply-source {
  width: fit-content;
  min-width: min(35vw, 150px);
  max-width: var(--message-max-width);
  padding: 10px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  color: #444;
  box-shadow: 0 3px 10px rgba(67, 103, 131, 0.08);
}
.reply-source.is-collapsible {
  cursor: pointer;
}
.reply-source.has-sticker {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 10px 13px 10px 10px;
}
.reply-sticker {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  align-self: center;
  background: transparent;
}
.reply-source-copy {
  min-width: 0;
}
.reply-badge {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  color: #111;
  opacity: 1;
}
.reply-source p, .reply-artist p { margin: 0; line-height: 1.48; word-break: break-word; }
.reply-source p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  white-space: normal;
}
.reply-source.is-expanded p {
  white-space: pre-wrap;
}
.reply-more {
  display: inline-block;
  white-space: nowrap;
  color: inherit;
  font: inherit;
}
.reply-artist p {
  color: #111;
  font-size: 14px;
  white-space: pre-wrap;
}
.reply-artist {
  width: fit-content;
  max-width: var(--message-max-width);
  padding: 8px 11px;
  border-radius: 4px 12px 12px 12px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(67, 103, 131, 0.08);
}
mark {
  padding: 0 1px;
  border-radius: 4px;
  background: #fff0a8;
}
.composer-bar {
  position: sticky;
  bottom: 0;
  z-index: 9;
  height: calc(58px + env(safe-area-inset-bottom, 0px));
  padding: 2px 12px calc(2px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 0;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 10px;
  align-items: center;
}
.composer-input {
  min-height: 42px;
  border-radius: 22px;
  background: #fafafa;
  border: 1px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 10px 0 16px;
  font-size: 14px;
}
.composer-placeholder {
  min-width: 0;
  color: #a4a4a4;
}
.composer-emoji {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #111;
}
.composer-emoji svg {
  width: 25px;
  height: 25px;
  overflow: visible;
}
.composer-emoji circle:first-child,
.composer-emoji path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.composer-emoji circle:not(:first-child) {
  fill: currentColor;
}
.composer-send {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #bcbcbc;
  display: grid;
  place-items: center;
}
.composer-send svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.sheet {
  position: fixed;
  inset: 0;
  z-index: 50;
}
.search-mode {
  pointer-events: none;
}
.search-mode .search-panel {
  pointer-events: auto;
}
.search-panel {
  position: absolute;
  top: max(10px, env(safe-area-inset-top, 0px));
  left: 10px;
  right: 10px;
  max-width: 410px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 8px;
}
.search-bar-shell {
  min-height: 42px;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 12px;
  background: #f3f3f3;
  color: #a1a1a1;
}
.search-bar-shell svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.search-bar-shell input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
}
.search-bar-shell input::placeholder {
  color: #a6a6a6;
}
.sheet-close.search-close {
  align-self: center;
  justify-self: end;
  width: auto;
  height: 24px;
  padding: 0 2px;
  border-radius: 0;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  color: #555;
  background: transparent;
}
.search-panel.is-search-submitted .calendar-header,
.search-panel.is-search-submitted .calendar-weekdays,
.search-panel.is-search-submitted .calendar-grid {
  display: none;
}
.calendar-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  min-height: 32px;
  margin-top: 2px;
}
.calendar-header strong {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.calendar-nav {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #333;
  display: grid;
  place-items: center;
}
.calendar-nav svg,
.search-nav-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.calendar-weekdays,
.calendar-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-weekdays span {
  text-align: center;
  color: #8a8a8a;
  font-size: 11px;
}
.calendar-day,
.calendar-empty {
  aspect-ratio: 1 / 1;
  min-width: 0;
}
.calendar-day {
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #222;
  font-size: 12px;
}
.calendar-day.is-latest {
  background: #111;
  color: #fff;
}
.calendar-day:disabled {
  color: #c8c8c8;
  background: transparent;
  cursor: default;
}
.search-mode .helper-text {
  grid-column: 1 / -1;
  margin: 2px 2px 0;
}
.search-mode .search-results {
  grid-column: 1 / -1;
  display: none;
}
.search-nav-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  height: 44px;
  background: #fff;
  border: 0;
}
.search-nav-controls button {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  box-shadow: none;
  display: grid;
  place-items: center;
}
.search-nav-controls button + button {
  border-left: 0;
}
.search-nav-controls button:disabled {
  color: #b8b8b8;
  background: transparent;
  box-shadow: none;
  cursor: default;
}
.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .36);
  backdrop-filter: blur(3px);
}
.sheet-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 24px;
  color: #5c7183;
}
.sheet-close.search-close {
  width: auto;
  height: 24px;
  padding: 0 2px;
  border-radius: 0;
  background: transparent;
  color: #555;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}
.search-results {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.result-item {
  width: 100%;
  text-align: left;
  padding: 12px;
  border-radius: 12px;
  background: #f7f7f7;
  border: 1px solid #ededed;
}
.result-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.result-item span {
  display: block;
  color: #5f788b;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.date-picker-row {
  display: grid;
  gap: 8px;
}
.date-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.date-jump-btn {
  padding: 10px 12px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #555;
  font-size: 12px;
  border: 1px solid #e5e5e5;
}
.menu-sheet {
  left: 50%;
  right: auto;
  width: 100%;
  max-width: 430px;
  transform: translateX(-50%);
  overflow: hidden;
}
.menu-backdrop {
  background: rgba(0, 0, 0, .52);
  backdrop-filter: none;
}
.menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(67vw, 288px);
  max-width: calc(100% - 58px);
  background: #fff;
  box-shadow: -10px 0 28px rgba(0, 0, 0, .16);
  display: flex;
  flex-direction: column;
  animation: menu-drawer-in 180ms ease-out;
}
@keyframes menu-drawer-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.menu-sheet.is-closing .menu-backdrop {
  animation: menu-backdrop-out 130ms ease-in forwards;
}
.menu-sheet.is-closing .menu-drawer {
  animation: menu-drawer-out 130ms ease-in forwards;
}
@keyframes menu-backdrop-out {
  to { opacity: 0; }
}
@keyframes menu-drawer-out {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}
.menu-drawer-body {
  padding: calc(68px + env(safe-area-inset-top, 0px)) 14px 0;
  display: grid;
  gap: 18px;
}
.drawer-profile-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 51px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.drawer-me-avatar {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  justify-self: center;
  overflow: hidden;
}
.drawer-room-avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.drawer-me-avatar {
  position: relative;
  background: #d0d0d0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.drawer-me-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
}
.drawer-me-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.drawer-me-avatar .default-person-icon {
  color: #f2f2f2;
}
.drawer-me-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  transform: translateY(-2px);
}
.drawer-room-avatar {
  padding: 2px;
  border: 2px solid #ff7eae;
  background: #fff;
}
.drawer-room-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.drawer-name-edit {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
}
.drawer-name-edit input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font-size: 13px;
  font-weight: 400;
}
.drawer-name-edit #saveDisplayNameMenuBtn {
  min-width: 42px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #777;
  font-size: 11px;
  font-weight: 700;
}
.drawer-room-copy {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 3px;
}
.artist-badge {
  min-height: 14px;
  padding: 0 7px;
  border-radius: 999px;
  background: #ff7eae;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}
.drawer-room-copy strong {
  min-width: 0;
  max-width: 100%;
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-drawer-footer {
  margin-top: auto;
  min-height: calc(74px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid #eeeeee;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
}
.drawer-grid-button,
.drawer-chat-list-button {
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #111;
  display: grid;
  place-items: center;
}
.drawer-grid-button svg,
.drawer-chat-list-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-media-page {
  position: absolute;
  inset: 0;
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  animation: menu-media-in 160ms ease-out;
}
@keyframes menu-media-in {
  from { transform: translateX(28px); opacity: .92; }
  to { transform: translateX(0); opacity: 1; }
}
.media-page-header {
  flex: 0 0 auto;
  min-height: calc(58px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 10px 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
.media-page-header strong {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
}
.media-page-back {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.media-page-back svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.media-page-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  background: #fff;
}
.media-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.media-collection.all-media-collection {
  column-gap: 5px;
  row-gap: 5px;
  margin-top: 0;
  padding: 0 12px;
}
.media-item {
  width: 100%;
  text-align: left;
  display: grid;
  gap: 5px;
}
.all-media-collection .media-item {
  display: block;
  padding: 0;
  line-height: 0;
}
.media-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #efefef;
}
.all-media-collection .media-thumb {
  border-radius: 8px;
}
.media-thumb img, .media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-duration {
  position: absolute;
  left: 5px;
  bottom: 5px;
  min-height: 16px;
  padding: 1px 5px 2px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
}
.media-duration:empty {
  display: none;
}
.audio-thumb {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}
.empty-box {
  padding: 16px;
  border-radius: 18px;
  background: #f7f7f7;
  border: 1px dashed #d6d6d6;
  color: #777;
  text-align: center;
}
.media-viewer {
  background: #000;
}
.media-viewer-panel {
  position: absolute;
  inset: 0;
  max-width: 430px;
  margin: 0 auto;
  background: #000;
}
.media-viewer-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  touch-action: pan-y;
  overscroll-behavior: contain;
}
.media-viewer-body {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #000;
  transition: transform 160ms ease;
  will-change: transform;
}
.media-viewer.is-swiping .media-viewer-body {
  transition: none;
}
.media-viewer-body img,
.media-viewer-body video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
  user-select: none;
  -webkit-user-drag: none;
}
.viewer-video {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.viewer-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}
.viewer-play-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-left: 3px;
}
.media-viewer-banner {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}
.media-viewer-top {
  top: 0;
  min-height: calc(56px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.media-viewer-bottom {
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 18px 0 0;
  min-height: calc(60px + env(safe-area-inset-bottom, 0px));
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.media-viewer.is-ui-hidden .media-viewer-top {
  transform: translateY(-100%);
  opacity: 0;
}
.media-viewer.is-ui-hidden .media-viewer-bottom {
  transform: translateY(100%);
  opacity: 0;
}
.media-viewer-save,
.media-viewer-back {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.media-viewer-save {
  justify-self: end;
  justify-content: flex-end;
  transform: translateX(-15px);
}
.media-viewer-back {
  justify-self: start;
  justify-content: flex-start;
  transform: translateX(10px);
}
.media-viewer-back svg,
.media-viewer-save svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.media-viewer-profile {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}
.media-viewer-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.media-viewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-viewer-profile-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.media-viewer-profile-copy strong,
.media-viewer-profile-copy small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.media-viewer-profile-copy strong {
  font-size: 13px;
  font-weight: 700;
}
.media-viewer-profile-copy small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
}
.media-viewer-counter {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}
.media-viewer-counter strong {
  font-weight: 800;
}
.media-viewer-counter span {
  font-weight: 400;
}
.reply-full-sheet {
  background: rgba(0, 0, 0, 0.08);
}
.reply-full-panel {
  position: absolute;
  inset: 0;
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.reply-full-header {
  min-height: calc(54px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 10px 0;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  border-bottom: 0;
}
.reply-full-header strong {
  justify-self: center;
  font-size: 15px;
  font-weight: 700;
}
.reply-full-back {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.reply-full-back svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reply-full-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 18px calc(24px + env(safe-area-inset-bottom, 0px));
  color: #111;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}
.poll-detail-sheet {
  background: rgba(0, 0, 0, 0.08);
}
.poll-detail-panel {
  position: absolute;
  inset: 0;
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.poll-detail-header {
  flex: 0 0 auto;
  min-height: calc(58px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 10px 0;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
}
.poll-detail-header strong {
  justify-self: center;
  color: #111;
  font-size: 17px;
  font-weight: 700;
}
.poll-detail-back {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.poll-detail-back svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.poll-detail-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 22px 116px;
  color: #111;
}
.poll-detail-profile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.poll-detail-avatar {
  width: 42px;
  height: 42px;
  border: 2px solid #ff82ad;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f4f4f4;
  color: #111;
  font-size: 13px;
}
.poll-detail-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poll-detail-profile-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.poll-detail-name-line {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.poll-detail-name-line em {
  flex: 0 0 auto;
  padding: 3px 8px 4px;
  border-radius: 999px;
  background: #ff82ad;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.poll-detail-name-line strong {
  min-width: 0;
  overflow: hidden;
  color: #111;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.poll-detail-profile-copy small {
  color: #aaa;
  font-size: 13px;
  line-height: 1.2;
}
.poll-detail-body h2 {
  margin: 28px 0 0;
  color: #777;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  word-break: break-word;
}
.poll-detail-ended {
  margin: 16px 0 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.35;
}
.poll-detail-options {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}
.poll-detail-option {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.poll-detail-radio {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  border-radius: 50%;
  background: #e9e9e9;
  box-shadow: inset 0 0 0 7px #e9e9e9, inset 0 0 0 9px #fff;
}
.poll-detail-option-card {
  position: relative;
  min-height: 132px;
  padding: 88px 16px 18px;
  border: 1px solid #ead4db;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 245, 248, 0.96), rgba(217, 191, 198, 0.78));
  color: #fff;
  overflow: hidden;
}
.poll-detail-option-card strong {
  display: block;
  margin: 0 0 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}
.poll-detail-bar {
  height: 4px;
  margin-right: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  overflow: hidden;
}
.poll-detail-bar span {
  display: block;
  width: var(--poll-percent, 0%);
  height: 100%;
  border-radius: inherit;
  background: #fff;
}
.poll-detail-option-card em {
  position: absolute;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  line-height: 1;
}
.poll-detail-footer {
  flex: 0 0 auto;
  background: transparent;
}
.poll-detail-vote {
  width: 100%;
  min-height: calc(72px + env(safe-area-inset-bottom, 0px));
  padding: 0 18px env(safe-area-inset-bottom, 0px);
  border: 0;
  border-radius: 18px 18px 0 0;
  background: #ffd0dc;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 431px) {
  :root { --app-height: calc(100dvh - 32px); }
  html, body { height: 100%; overflow: hidden; }
  body {
    padding: 16px 0;
    display: grid;
    place-items: center;
  }
  .mobile-shell { border-radius: 30px; }
}
