:root {
  --bg: #11100f;
  --surface: #181614;
  --surface-soft: rgba(255, 252, 245, 0.055);
  --text: #f4efe7;
  --muted: #9d9489;
  --line: rgba(244, 239, 231, 0.13);
  --line-strong: rgba(244, 239, 231, 0.22);
  --box: #7a6253;
  --box-dark: #4f4038;
  --ribbon: #d6c4a2;
  --ribbon-dark: #9f8b6c;
  --paper: #f3ead8;
  --ink: #151311;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(214, 196, 162, 0.09), transparent 28rem),
    linear-gradient(180deg, #151311 0%, #0d0c0b 100%);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(980px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 28px 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: rgba(244, 239, 231, 0.92);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

h2 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.stage {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
}

.box-scene {
  width: 100%;
  min-height: min(62vh, 560px);
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.glow {
  width: min(62vw, 520px);
  aspect-ratio: 1;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 196, 162, 0.18), transparent 58%);
  filter: blur(12px);
  opacity: 0.75;
  z-index: -1;
}

.gift-box {
  width: min(54vw, 360px);
  min-width: 220px;
  aspect-ratio: 1.05;
  position: relative;
  border: 0;
  background: transparent;
  transform-origin: 50% 82%;
  filter: drop-shadow(0 42px 48px rgba(0, 0, 0, 0.46));
}

.gift-box.shaking {
  animation: shakeBox 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gift-box.open .lid {
  transform: translateY(-72px) rotate(-6deg);
}

.gift-box.receiving .lid {
  transform: translateY(-92px) rotate(-8deg);
}

.gift-box.open .paper {
  opacity: 1;
  transform: translate(-50%, -112px) rotate(2deg);
}

.gift-box.receiving .paper {
  opacity: 0;
}

.box-body,
.lid,
.ribbon,
.paper {
  position: absolute;
  display: block;
}

.box-body {
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 60%;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 44% 56%, transparent 56%),
    linear-gradient(145deg, var(--box), var(--box-dark));
  border: 1px solid rgba(244, 239, 231, 0.16);
}

.lid {
  left: 7%;
  right: 7%;
  top: 21%;
  height: 23%;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 44% 56%, transparent 56%),
    linear-gradient(145deg, #8b7160, #5f4d43);
  border: 1px solid rgba(244, 239, 231, 0.17);
  transform-origin: 18% 100%;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 4;
}

.ribbon-vertical {
  left: calc(50% - 18px);
  bottom: 0;
  width: 36px;
  height: 80%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--ribbon), var(--ribbon-dark));
  z-index: 5;
}

.ribbon-horizontal {
  left: 12%;
  right: 12%;
  bottom: 35%;
  height: 34px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ribbon), var(--ribbon-dark));
  z-index: 5;
}

.paper {
  width: 36%;
  height: 28%;
  left: 50%;
  top: 44%;
  border-radius: 4px;
  opacity: 0;
  background: linear-gradient(180deg, #fbf2df, var(--paper));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, 0) rotate(0deg);
  transition: transform 560ms ease, opacity 220ms ease;
  z-index: 2;
}

.text-button,
.primary-button,
.mini-button,
.icon-button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.text-button {
  padding: 0;
  min-height: 32px;
  color: var(--muted);
}

.text-button:hover {
  color: var(--text);
}

.primary-button,
.mini-button {
  min-height: 40px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.045);
}

.primary-button {
  padding: 0 20px;
  color: var(--ink);
  background: var(--paper);
  border-color: transparent;
  font-weight: 700;
}

.mini-button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--muted);
}

.primary-button:hover,
.mini-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.message-meta,
.modal-footer,
.modal-heading {
  display: flex;
  align-items: center;
}

.message-card {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--ink);
  pointer-events: none;
}

.message-card.is-empty {
  display: none;
}

.message-card.pop {
  pointer-events: auto;
}

.scroll-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(243, 234, 216, 0.16), transparent 28rem),
    rgba(8, 7, 6, 0.72);
  opacity: 0;
  backdrop-filter: blur(9px);
}

.message-card.pop .scroll-backdrop {
  animation: revealBackdrop 760ms ease forwards;
}

.scroll-sheet {
  width: min(760px, calc(100vw - 34px));
  max-height: min(78vh, 720px);
  position: relative;
  display: grid;
  grid-template-rows: 18px minmax(260px, auto) 18px;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.45));
  opacity: 0;
  transform-origin: 50% 0%;
}

.message-card.pop .scroll-sheet {
  animation: scrollReveal 1080ms cubic-bezier(0.16, 0.9, 0.22, 1) forwards;
}

.scroll-rod {
  width: calc(100% + 38px);
  height: 18px;
  justify-self: center;
  border-radius: 999px;
  border: 1px solid rgba(72, 48, 31, 0.28);
  background:
    linear-gradient(90deg, #826142, #d7b985 15%, #8d6541 50%, #dec492 85%, #765338);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.26), 0 8px 18px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.scroll-rod-top {
  transform: translateY(8px);
}

.scroll-rod-bottom {
  transform: translateY(-8px);
}

.scroll-paper {
  min-height: min(58vh, 520px);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(89, 62, 37, 0.24);
  background:
    linear-gradient(90deg, rgba(108, 73, 41, 0.12), transparent 7%, transparent 93%, rgba(108, 73, 41, 0.12)),
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.38), transparent 18rem),
    linear-gradient(135deg, #f9ecd1 0%, #ead8b7 48%, #f5e5c6 100%);
  box-shadow: inset 0 0 32px rgba(113, 79, 44, 0.15);
  overflow: auto;
}

.scroll-close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(21, 19, 17, 0.58);
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 22px;
  line-height: 1;
}

.message-type {
  margin-bottom: 22px;
  color: rgba(21, 19, 17, 0.55);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.message-text {
  align-self: center;
  margin: 0 0 28px;
  color: #2c2119;
  font-size: clamp(30px, 6vw, 62px);
  line-height: 1.32;
  font-weight: 750;
  text-align: center;
}

.message-meta {
  justify-content: space-between;
  gap: 14px;
  color: rgba(21, 19, 17, 0.56);
  font-size: 14px;
}

.scroll-paper .mini-button {
  color: rgba(21, 19, 17, 0.7);
  border-color: rgba(21, 19, 17, 0.16);
  background: rgba(255, 255, 255, 0.18);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

.modal-panel {
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  position: relative;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(24, 22, 20, 0.96);
  box-shadow: var(--shadow);
}

.composer-screen {
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 42px);
  position: relative;
  display: grid;
  margin: auto;
  padding: 56px 0 28px;
}

#composerModal {
  place-items: stretch;
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#composerModal .modal-backdrop {
  background:
    radial-gradient(circle at 72% 48%, rgba(214, 196, 162, 0.13), transparent 24rem),
    rgba(8, 7, 6, 0.82);
}

#composerModal.sending {
  pointer-events: none;
}

#composerModal.sending .modal-backdrop {
  animation: sendBackdrop 960ms ease forwards;
}

.composer-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(320px, 540px);
  justify-content: center;
  align-items: center;
}

.composer-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 5;
  background: rgba(24, 22, 20, 0.72);
  backdrop-filter: blur(10px);
}

.composer-form-area {
  position: relative;
  z-index: 2;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding-right: 6px;
}

.composer-screen {
  animation: composerArrive 360ms ease both;
}

#composerModal.sending .composer-screen {
  overflow: hidden;
  pointer-events: none;
  transform-origin: center center;
  animation: composerSendToBox 1180ms cubic-bezier(0.2, 0.84, 0.24, 1) forwards;
}

#composerModal.sending .composer-layout,
#composerModal.sending .composer-close {
  animation: composerContentFade 420ms ease forwards;
}

#composerModal.sending .composer-screen::after {
  content: "";
  width: 168px;
  height: 112px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  opacity: 0;
  border-radius: 8px;
  background:
    linear-gradient(35deg, transparent 49%, rgba(134, 93, 55, 0.28) 50%, transparent 51%),
    linear-gradient(145deg, #f8ead1, #d9c49d);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%) rotate(-5deg) scale(0.9);
  animation: composerGiftShape 1180ms cubic-bezier(0.2, 0.84, 0.24, 1) forwards;
}

#composerModal.sending.send-media .composer-screen::after {
  height: 132px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255, 252, 242, 0.96), rgba(224, 211, 188, 0.96));
}

#composerModal.sending.send-media .composer-screen::before {
  content: "";
  width: 140px;
  height: 104px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  opacity: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, #6f6257, #b7a88b);
  transform: translate(-50%, -50%) rotate(-5deg) scale(0.9);
  animation: composerGiftShape 1180ms cubic-bezier(0.2, 0.84, 0.24, 1) forwards;
}

.modal-heading {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.icon-button {
  width: 36px;
  height: 36px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 22px;
  line-height: 1;
}

.section-copy {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.modal-footer {
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.badge {
  color: var(--muted);
  font-size: 13px;
}

input,
textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  outline: none;
}

input {
  height: 42px;
  padding: 0 12px;
}

textarea {
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(243, 234, 216, 0.52);
  box-shadow: 0 0 0 3px rgba(243, 234, 216, 0.08);
}

.message-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.message-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.name-field {
  grid-column: 1 / -1;
}

.message-form .wide,
.share-result {
  grid-column: 1 / -1;
}

.private-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.private-fields[hidden] {
  display: none;
}

.private-fields .field-note {
  grid-column: 1 / -1;
}

.field-note {
  color: rgba(157, 148, 137, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

.native-file-input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-dropzone {
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 18px;
  color: var(--muted);
  border: 1px dashed rgba(244, 239, 231, 0.22);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.upload-dropzone:hover,
.upload-dropzone.dragging {
  transform: translateY(-1px);
  border-color: rgba(243, 234, 216, 0.42);
  background: rgba(243, 234, 216, 0.06);
}

.upload-title {
  color: rgba(244, 239, 231, 0.92);
  font-size: 14px;
  font-weight: 750;
}

.upload-subtitle,
.upload-filename {
  font-size: 12px;
  line-height: 1.45;
}

.upload-filename {
  max-width: 100%;
  color: rgba(244, 239, 231, 0.82);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-preview {
  width: min(100%, 180px);
  max-height: 120px;
  margin-top: 8px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.message-media {
  align-self: center;
  margin: 0 auto 22px;
  max-width: min(100%, 560px);
  display: grid;
  place-items: center;
}

.album-card {
  width: fit-content;
  max-width: min(100%, 500px);
  padding: clamp(10px, 2vw, 16px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 242, 0.96), rgba(234, 220, 194, 0.96));
  box-shadow:
    0 24px 44px rgba(75, 52, 30, 0.24),
    inset 0 0 0 1px rgba(78, 54, 31, 0.12);
  transform: rotate(-1.2deg);
}

.album-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(38vh, 360px);
  object-fit: contain;
  border-radius: 5px;
  background: rgba(21, 19, 17, 0.08);
}

.album-card.is-low-res img {
  max-width: min(100%, 320px);
  max-height: min(34vh, 280px);
}

.message-card.has-media .message-text {
  width: min(100%, 560px);
  justify-self: center;
  margin-top: 0;
  margin-bottom: 24px;
  color: rgba(44, 33, 25, 0.78);
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.55;
  font-weight: 650;
}

.custom-select {
  position: relative;
}

.select-trigger {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease;
}

.select-trigger:hover,
.custom-select.open .select-trigger {
  border-color: rgba(243, 234, 216, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.select-arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(244, 239, 231, 0.74);
  border-bottom: 1px solid rgba(244, 239, 231, 0.74);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.custom-select.open .select-arrow {
  transform: rotate(225deg) translate(-2px, -1px);
}

.select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 4;
  padding: 6px;
  border: 1px solid rgba(244, 239, 231, 0.18);
  border-radius: 6px;
  background: rgba(24, 22, 20, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.select-option {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  color: var(--muted);
  border: 0;
  border-radius: 5px;
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.select-option:hover,
.select-option.active {
  color: var(--text);
  background: rgba(243, 234, 216, 0.085);
}

.share-result {
  margin-top: 14px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.55;
  word-break: break-all;
}

.share-title {
  margin-bottom: 3px;
  color: rgba(244, 239, 231, 0.94);
  font-weight: 800;
}

.share-copy {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  word-break: normal;
}

.share-result a {
  display: inline-block;
  margin-top: 6px;
  color: var(--paper);
}

.share-copy-button {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  color: var(--ink);
  border: 0;
  border-radius: 6px;
  background: var(--paper);
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 30;
  transform: translate(-50%, 120px);
  max-width: min(420px, calc(100vw - 32px));
  padding: 11px 14px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 700;
  transition: transform 220ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

@keyframes shakeBox {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }

  18% {
    transform: rotate(-4deg) translateX(-5px);
  }

  38% {
    transform: rotate(4deg) translateX(5px);
  }

  58% {
    transform: rotate(-3deg) translateX(-3px);
  }

  78% {
    transform: rotate(2deg) translateX(3px);
  }
}

@keyframes revealBackdrop {
  to {
    opacity: 1;
  }
}

@keyframes scrollReveal {
  from {
    transform: translateY(-42vh) scale(0.24) rotate(-3deg);
    opacity: 0;
  }

  38% {
    transform: translateY(-16vh) scale(0.52) rotate(2deg);
    opacity: 1;
  }

  66% {
    transform: translateY(2vh) scale(1.04) rotate(-0.5deg);
    opacity: 1;
  }

  to {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes composerArrive {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sendBackdrop {
  0% {
    opacity: 1;
    backdrop-filter: blur(8px);
  }

  45%,
  100% {
    opacity: 0;
    backdrop-filter: blur(0);
  }
}

@keyframes composerContentFade {
  to {
    opacity: 0;
  }
}

@keyframes composerGiftShape {
  0%,
  22% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-5deg) scale(0.9);
  }

  34% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-4deg) scale(1);
  }

  78% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(8deg) scale(0.76);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(3deg) scale(0.18);
  }
}

@keyframes composerSendToBox {
  0% {
    border-radius: 8px;
    transform: translate(0, 0) scale(1);
  }

  36% {
    border-radius: 18px;
    transform: translate(0, 0) scale(0.34);
  }

  78% {
    border-radius: 18px;
    transform: translate(var(--send-x), var(--send-y)) scale(0.18) rotate(8deg);
    opacity: 1;
  }

  100% {
    border-radius: 18px;
    transform: translate(var(--send-x), var(--send-y)) scale(0.04) rotate(2deg);
    opacity: 0;
  }
}

@media (max-width: 620px) {
  .app-shell {
    width: min(100% - 24px, 980px);
    padding-top: 18px;
  }

  .top-actions {
    gap: 13px;
  }

  .stage {
    min-height: calc(100vh - 92px);
  }

  .box-scene {
    min-height: 54vh;
  }

  .gift-box {
    width: min(72vw, 320px);
  }

  .message-form {
    grid-template-columns: 1fr;
  }

  .private-fields {
    grid-template-columns: 1fr;
  }

  .message-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-sheet {
    width: min(100%, calc(100vw - 20px));
    max-height: 82vh;
  }

  .scroll-paper {
    min-height: 58vh;
    padding: 34px 22px 28px;
  }

  .message-text {
    font-size: clamp(28px, 10vw, 46px);
  }
}

@media (max-width: 860px) {
  .composer-screen {
    width: min(100% - 24px, 1180px);
    min-height: auto;
    padding: 72px 0 28px;
  }

  .composer-layout {
    grid-template-columns: 1fr;
  }

  .composer-form-area {
    max-height: none;
    padding-right: 0;
  }

}
