:root {
  --sticky-top-gap: 0px;
  --topbar-stack-height: 104px;
  --topbar-bg: #fff6ea;
  --topbar-bg-strong: #ffedd4;
  --topbar-line: rgba(255, 90, 31, 0.16);
  --topbar-ink: #4b1f13;
  --topbar-ink-soft: #8c5130;
  --topbar-pill-bg: rgba(255, 246, 234, 0.92);
  --topbar-pill-line: rgba(255, 122, 27, 0.18);
  --bg: #ffdfae;
  --bg-top: #fff3dc;
  --surface: rgba(255, 246, 232, 0.9);
  --surface-strong: #fff1de;
  --surface-soft: rgba(255, 232, 204, 0.94);
  --surface-muted: rgba(255, 220, 185, 0.84);
  --ink: #4b1f13;
  --ink-soft: #8c5130;
  --line: rgba(255, 108, 30, 0.16);
  --line-strong: rgba(255, 108, 30, 0.28);
  --gold: #ff7a1b;
  --coral: #ff4d1f;
  --teal: #d84a16;
  --teal-deep: #9f2f12;
  --ok: #df5b13;
  --warn: #f18c12;
  --error: #b62d16;
  --shadow: 0 24px 60px rgba(154, 52, 18, 0.18);
  --button-shadow: rgba(154, 52, 18, 0.24);
  --accent-wash: rgba(255, 122, 27, 0.18);
  --surface-spot: rgba(171, 74, 23, 0.06);
  --surface-spot-strong: rgba(171, 74, 23, 0.1);
  --focus-line: rgba(255, 100, 29, 0.46);
  --focus-ring: rgba(255, 122, 27, 0.14);
  --active-line: rgba(255, 100, 29, 0.38);
  --active-fill: rgba(255, 100, 29, 0.12);
  --complete-line: rgba(215, 89, 22, 0.26);
  --complete-fill: rgba(215, 89, 22, 0.1);
  --number-fill: rgba(215, 89, 22, 0.16);
  --overlay: rgba(63, 21, 12, 0.58);
  --surface-inset: rgba(255, 255, 255, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-xl: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, var(--accent-wash), transparent 36%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.65;
  z-index: -1;
}

body::before {
  top: 72px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-wash), transparent 70%);
}

body::after {
  left: -120px;
  bottom: 40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--surface-spot-strong), transparent 72%);
}

body.is-donation-toast-open {
  overflow: hidden;
}

body.is-embed-mode {
  min-height: 100vh;
  background: transparent;
  overflow-x: hidden;
}

body.is-embed-mode::before,
body.is-embed-mode::after {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  isolation: isolate;
  width: 100%;
  padding: 0 16px;
  overflow: visible;
  border-bottom: 1px solid var(--topbar-line);
  background: linear-gradient(180deg, var(--topbar-bg), var(--topbar-bg-strong));
  box-shadow:
    0 16px 30px rgba(122, 15, 33, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.topbar__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.topbar__embed-mount {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  line-height: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: "Sora", sans-serif;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 184px;
  flex: 0 0 auto;
  overflow: visible;
  margin-top: -34px;
  margin-bottom: -34px;
}

.brand__mark-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.06) contrast(1.02) drop-shadow(0 28px 42px rgba(122, 15, 33, 0.24));
}

.brand__wording {
  display: grid;
  gap: 4px;
}

.brand__wording strong {
  color: var(--topbar-ink);
  font-weight: 700;
  letter-spacing: -0.06em;
  font-size: 1.35rem;
}

.brand__wording span,
.topbar__meta {
  color: var(--topbar-ink-soft);
  font-size: 0.95rem;
}

.topbar__meta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--topbar-pill-line);
  background: var(--topbar-pill-bg);
  box-shadow: inset 0 1px 0 var(--surface-inset);
}

.minimal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(460px, 1.08fr);
  align-items: start;
  gap: 24px;
}

.left-rail {
  position: sticky;
  top: calc(var(--sticky-top-gap) + var(--topbar-stack-height));
  align-self: start;
  min-width: 0;
  max-height: calc(100vh - var(--topbar-stack-height) - 28px);
}

.hero-card,
.studio-card,
.donation-toast__panel {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  display: grid;
  gap: 16px;
  position: relative;
  top: 0;
  overflow: hidden;
  min-height: auto;
  min-width: 0;
  align-content: start;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 var(--surface-inset);
}

.hero-card.is-disabled {
  opacity: 0.78;
}

.hero-card__halo {
  position: absolute;
  inset: -20% auto auto 58%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-wash), transparent 68%);
  pointer-events: none;
}

.hero-card__header,
.section-head {
  position: relative;
  z-index: 1;
}

.hero-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.hero-card__microcopy {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  min-width: 0;
}

.hero-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(20px, 2.2vw, 28px);
  border-radius: 32px;
  background:
    linear-gradient(180deg, var(--surface-strong), var(--surface-soft));
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 var(--surface-inset),
    0 24px 40px rgba(76, 15, 23, 0.08);
}

.hero-card__body.is-disabled {
  filter: saturate(0.84);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-head__line {
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
}

.section-head h2,
.hero-card h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-wrap: balance;
}

.hero-card h1 {
  font-size: clamp(2.65rem, 4vw, 4.2rem);
  line-height: 0.86;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
}

.section-head p,
.hero-copy,
.hero-helper,
.donation-toast__copy,
.wallet-status-card p,
.wallet-flow__copy p,
.brief-row p,
.field-status {
  margin: 0;
  color: var(--ink-soft);
}

.hero-copy,
.hero-helper {
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.4;
}

.section-head p {
  max-width: 52ch;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--surface-spot-strong);
  background: var(--surface-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-spot);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.donate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  width: 100%;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #fffdf9;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  box-shadow: 0 20px 50px var(--button-shadow);
}

.hero-actions,
.inline-actions,
.wallet-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.studio-card {
  box-shadow:
    var(--shadow),
    inset 0 1px 0 var(--surface-inset);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.donate-button:hover,
.donate-button:focus-visible {
  transform: translateY(-1px);
}

.button[aria-disabled="true"],
.donate-button[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
  transform: none;
}

.button--primary {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #fffdf9;
}

.button--secondary {
  background: var(--surface-spot);
  border-color: var(--line);
  color: var(--ink);
}

.button--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
}

.button--full {
  width: 100%;
}

.button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.studio-form,
.output-stack,
.donation-toast__panel {
  display: grid;
  gap: 20px;
}

.studio-connect-row {
  display: grid;
  gap: 12px;
}

.studio-connect-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.studio-connect-status.is-ok {
  color: var(--ok);
}

.studio-connect-status.is-warn {
  color: var(--warn);
}

.studio-connect-status.is-error {
  color: var(--error);
}

.studio-block,
.output-stack {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--surface-strong), var(--surface-soft));
  box-shadow: inset 0 1px 0 var(--surface-inset);
}

.output-stack.is-locked {
  opacity: 0.72;
}

.studio-block {
  display: grid;
  gap: 18px;
}

.studio-block__head,
.output-stack__head {
  display: grid;
  gap: 6px;
}

.output-stack__status {
  font-size: 0.95rem;
}

.embed-preview-card {
  display: grid;
  gap: 10px;
}

.embed-preview-stage {
  display: grid;
  place-items: center;
  min-height: 98px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--line);
  background:
    radial-gradient(circle at top, var(--accent-wash), transparent 52%),
    var(--surface-soft);
}

.embed-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  border-radius: 999px;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
  font-size: 0.98rem;
  transition: transform 180ms ease, opacity 180ms ease;
}

.embed-preview-button[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.studio-block__head h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.studio-block__head p,
.output-stack__head p,
.donation-toast__subcopy {
  margin: 0;
  color: var(--ink-soft);
}

.studio-look-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label,
.output-field {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.output-field input,
.output-field textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
}

.output-field textarea {
  min-height: 148px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  color: var(--ink);
  padding: 15px 16px;
  resize: vertical;
  box-shadow: inset 0 1px 0 var(--surface-inset);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--focus-line);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.toggle-group,
.amount-grid,
.tier-grid,
.palette-grid {
  display: grid;
  gap: 10px;
}

.toggle-group {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tier-grid,
.amount-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tier-grid label {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.palette-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.toggle,
.amount-button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 800;
}

.palette-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  letter-spacing: -0.03em;
}

.palette-value--trigger {
  cursor: pointer;
}

.palette-tools input[type="color"] {
  width: 58px;
  min-width: 58px;
  height: 42px;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface-soft);
  cursor: pointer;
}

.palette-grid {
  grid-template-columns: repeat(auto-fill, minmax(24px, 1fr));
  gap: 8px;
  max-height: 240px;
  padding: 10px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.palette-grid[hidden] {
  display: none;
}

.palette-swatch {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: var(--swatch-color);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.palette-swatch.is-active {
  box-shadow:
    0 0 0 3px var(--surface-strong),
    0 0 0 5px var(--line-strong);
}

.toggle.is-active,
.amount-button.is-active {
  border-color: var(--active-line);
  background: var(--active-fill);
}

.field-status {
  font-size: 0.92rem;
  margin-top: -4px;
}

.field-status--ok {
  color: var(--ok);
}

.field-status--warn {
  color: var(--warn);
}

.field-status--error {
  color: var(--error);
}

.donation-toast {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.donation-toast[hidden] {
  display: none;
}

.donation-toast__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: var(--overlay);
}

.donation-toast__panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(680px, calc(100vw - 24px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 18px 18px 14px;
  gap: 12px;
  background:
    linear-gradient(180deg, var(--surface-strong), var(--surface-soft));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 var(--surface-inset);
}

.donation-toast__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.donation-toast__subcopy {
  margin-top: 6px;
}

.donation-toast__panel {
  font-size: 0.95rem;
}

.donation-toast__panel .pill,
.donation-toast__panel .form-label,
.donation-toast__panel label,
.donation-toast__panel .wallet-status-card__label,
.donation-toast__panel .brief-row span,
.donation-toast__panel .transaction-card span {
  font-size: 0.88rem;
}

.donation-toast__panel .pill {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.72rem;
}

.donation-toast__subcopy,
.donation-toast__panel .wallet-status-card p,
.donation-toast__panel .wallet-flow__copy p {
  font-size: 0.88rem;
  line-height: 1.35;
}

.donation-toast__panel input,
.donation-toast__panel textarea {
  font-size: 0.92rem;
  padding: 10px 12px;
}

.donation-toast__panel .wallet-status-card strong,
.donation-toast__panel .brief-row strong,
.donation-toast__panel .brief-row code,
.donation-toast__panel .transaction-card strong,
.donation-toast__panel .transaction-card code,
.donation-toast__panel .wallet-flow__copy strong {
  font-size: 0.92rem;
}

.donation-toast__panel .amount-button,
.donation-toast__panel .button {
  font-size: 0.9rem;
  min-height: 42px;
}

.donation-toast__panel .wallet-flow__number {
  font-size: 0.86rem;
  width: 28px;
  height: 28px;
}

.wallet-status-card,
.creator-brief-card,
.transaction-card {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.wallet-status-card strong,
.brief-row strong,
.brief-row code,
.transaction-card strong,
.transaction-card code,
.wallet-flow__copy strong {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.wallet-status-card__label {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.brief-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brief-row--stacked {
  display: grid;
}

.brief-row code,
.transaction-card code {
  color: var(--teal-deep);
  word-break: break-all;
}

.wallet-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.wallet-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.wallet-flow__step.is-active {
  border-color: var(--active-line);
  background: var(--active-fill);
}

.wallet-flow__step.is-complete {
  border-color: var(--complete-line);
  background: var(--complete-fill);
}

.wallet-flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--surface-spot-strong);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  flex: 0 0 auto;
}

.wallet-flow__step.is-active .wallet-flow__number {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #fffdf9;
}

.wallet-flow__step.is-complete .wallet-flow__number {
  background: var(--number-fill);
  color: var(--teal-deep);
}

.wallet-flow__copy {
  display: grid;
  gap: 2px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: min(620px, calc(100vw - 24px));
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(56, 17, 22, 0.95);
  color: #fff8ef;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-public-view .app-shell {
  width: min(760px, calc(100vw - 32px));
}

body.is-public-view .studio-card {
  display: none;
}

body.is-public-view .minimal-layout {
  grid-template-columns: 1fr;
}

body.is-public-view .hero-card {
  position: relative;
  min-height: auto;
}

body.is-embed-mode .topbar,
body.is-embed-mode .app-shell {
  display: none;
}

body.is-embed-mode .donation-toast {
  position: static;
  inset: auto;
  display: block;
  min-height: 100vh;
  padding: 12px;
}

body.is-embed-mode .donation-toast__backdrop {
  display: none;
}

body.is-embed-mode .donation-toast__panel {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(720px, 100%);
  max-height: calc(100vh - 24px);
  overflow: auto;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .minimal-layout,
  .studio-look-grid {
    grid-template-columns: 1fr;
  }

  .left-rail {
    position: relative;
    top: 0;
  }

  .hero-card {
    position: relative;
    top: 0;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 0 10px;
  }

  .app-shell {
    width: calc(100vw - 20px);
    padding-top: 18px;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    gap: 14px;
  }

  .brand__mark {
    width: 116px;
    height: 116px;
    margin-top: -18px;
    margin-bottom: -18px;
  }

  .brand__wording strong {
    font-size: 1.2rem;
  }

  .brand__wording span {
    font-size: 0.9rem;
  }

  .topbar__actions {
    display: grid;
    gap: 10px;
    justify-items: end;
  }

  .topbar__meta {
    width: 100%;
    justify-content: center;
  }

  .hero-card,
  .studio-card,
  .donation-toast__panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .inline-actions,
  .wallet-cta-row,
  .toggle-group,
  .tier-grid,
  .amount-grid,
  .wallet-flow {
    grid-template-columns: 1fr;
  }

  .palette-grid {
    grid-template-columns: repeat(auto-fill, minmax(22px, 1fr));
    max-height: 220px;
  }

  .donation-toast__panel {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
