:root {
  --l4u-primary: #78555e;
  --l4u-primary-soft: #ffd1dc;
  --l4u-secondary-soft: #e6d6ff;
  --l4u-tertiary-soft: #e8dea4;
  --l4u-surface: #faf9fa;
  --l4u-surface-low: #f4f3f4;
  --l4u-ink: #1a1c1d;
  --l4u-muted: #675b7e;
  --l4u-outline: #817476;
}

html.l4u-dark {
  --l4u-primary: #e7b8c5;
  --l4u-primary-soft: #5e3d4a;
  --l4u-secondary-soft: #4a4465;
  --l4u-tertiary-soft: #5a5338;
  --l4u-surface: #161217;
  --l4u-surface-low: #241d26;
  --l4u-ink: #f6eef2;
  --l4u-muted: #d7c8cf;
  --l4u-outline: #c1aeb7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.l4u-body {
  min-height: 100vh;
  background: var(--l4u-surface);
}

html.l4u-dark body.l4u-body {
  background: var(--l4u-surface);
}

.l4u-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.l4u-background::before,
.l4u-background::after {
  content: "";
  position: absolute;
  inset: -28%;
  filter: blur(78px);
  opacity: 0.48;
  transform-origin: center;
  animation: l4uGradientDrift 28s linear infinite;
}

.l4u-background::before {
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 202, 219, 0.78) 0%, transparent 42%),
    radial-gradient(circle at 78% 28%, rgba(211, 198, 255, 0.66) 0%, transparent 39%),
    radial-gradient(circle at 50% 86%, rgba(241, 228, 170, 0.62) 0%, transparent 44%);
}

.l4u-background::after {
  animation-direction: reverse;
  animation-duration: 36s;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 217, 232, 0.44) 0%, transparent 38%),
    radial-gradient(circle at 24% 76%, rgba(196, 222, 255, 0.42) 0%, transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(229, 200, 255, 0.38) 0%, transparent 42%);
}

.l4u-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
  animation: l4uBlobFloat 18s ease-in-out infinite;
}

.l4u-blob-a {
  width: 460px;
  height: 460px;
  left: -140px;
  top: -120px;
  background: var(--l4u-primary-soft);
}

.l4u-blob-b {
  width: 520px;
  height: 520px;
  right: -170px;
  top: 12%;
  animation-delay: -6s;
  background: var(--l4u-secondary-soft);
}

.l4u-blob-c {
  width: 420px;
  height: 420px;
  left: 38%;
  bottom: -160px;
  animation-delay: -10s;
  background: var(--l4u-tertiary-soft);
}

@keyframes l4uBlobFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

@keyframes l4uGradientDrift {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1.02) rotate(0deg);
  }

  50% {
    transform: translate3d(4%, 3%, 0) scale(1.09) rotate(8deg);
  }

  100% {
    transform: translate3d(-3%, -2%, 0) scale(1.02) rotate(16deg);
  }
}

.l4u-surface-glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
}

.l4u-kicker {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--l4u-primary);
}

.l4u-gradient-button {
  background: linear-gradient(135deg, #78555e 0%, #9c6f79 100%);
  color: #fff;
}

.l4u-credit-pill {
  color: #714951;
  background: rgba(255, 209, 220, 0.86);
  border: 1px solid rgba(120, 85, 94, 0.28);
}

.l4u-gradient-button:disabled,
.l4u-google-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  filter: saturate(0.7);
}

.l4u-outline-button {
  border: 1px solid rgba(120, 85, 94, 0.2);
  background: #fff;
  color: var(--l4u-primary);
}

.l4u-google-button {
  width: min(100%, 19rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(120, 85, 94, 0.2);
  background: #fff;
  color: #3f3337;
  box-shadow: 0 16px 28px rgba(26, 28, 29, 0.08);
}

.l4u-google-icon {
  width: 1rem;
  height: 1rem;
}

.l4u-signin-terms-shell {
  border-radius: 1.15rem;
  border: 1px solid rgba(120, 85, 94, 0.16);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.8rem 0.8rem 0.65rem;
}

.l4u-signin-terms-title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  color: #3f3337;
}

.l4u-signin-terms-meta {
  margin: 0.18rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #7e6d72;
}

.l4u-signin-terms-scroll {
  margin-top: 0.55rem;
  max-height: min(44vh, 300px);
  overflow-y: auto;
  border-radius: 0.95rem;
  border: 1px solid rgba(120, 85, 94, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.72rem 0.78rem;
  color: #56484d;
  font-size: 0.73rem;
  line-height: 1.5;
}

.l4u-signin-terms-scroll h4,
.l4u-signin-terms-scroll h5 {
  margin: 0.72rem 0 0.24rem;
  color: #3f3337;
  font-size: 0.76rem;
  font-weight: 800;
}

.l4u-signin-terms-scroll p {
  margin: 0.45rem 0;
}

.l4u-signin-terms-scroll ul {
  margin: 0.35rem 0 0.45rem;
  padding-left: 1.1rem;
}

.l4u-signin-terms-consent {
  border: 1px solid rgba(120, 85, 94, 0.16);
}

.l4u-manual-instruction {
  margin: 0;
  color: #4f3e45;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.l4u-manual-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.l4u-manual-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.52rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(120, 85, 94, 0.14);
  background: rgba(255, 255, 255, 0.74);
  padding: 0.5rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a474e;
  line-height: 1.45;
}

.l4u-manual-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.02rem;
  border-radius: 999px;
  background: rgba(120, 85, 94, 0.18);
  color: #5f434c;
  font-size: 0.66rem;
  font-weight: 800;
}

.l4u-manual-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.l4u-manual-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 85, 94, 0.22);
  background: transparent;
  padding: 0.32rem 0.72rem 0.32rem 0.36rem;
  color: #4f3d44;
  text-decoration: none;
}

.l4u-manual-contact-link:hover,
.l4u-manual-contact-link:focus-visible {
  border-color: rgba(120, 85, 94, 0.42);
  background: rgba(255, 255, 255, 0.72);
  color: #3f3337;
}

.l4u-manual-contact-logo {
  width: 1.42rem;
  height: 1.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.l4u-manual-contact-name {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.l4u-manual-brand-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.l4u-manual-logo-facebook {
  border-radius: 999px;
  overflow: hidden;
}

.l4u-manual-logo-tiktok {
  border-radius: 0.2rem;
  overflow: hidden;
}

.l4u-manual-logo-email {
  border-radius: 0.2rem;
  overflow: hidden;
}

.l4u-manual-uid-box {
  border-radius: 1rem;
  border: 1px solid rgba(120, 85, 94, 0.2);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.7rem 0.78rem;
}

.l4u-manual-uid-row {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.l4u-manual-uid-value {
  margin: 0;
  flex: 1;
  min-width: 0;
  color: #503f45;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: "JetBrains Mono", "Cascadia Code", "Fira Code", Consolas, "Courier New", monospace;
  overflow-wrap: anywhere;
}

.l4u-manual-copy-button {
  border: 1px solid rgba(120, 85, 94, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: #5f474f;
  padding: 0.32rem 0.72rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.l4u-manual-copy-button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.l4u-manual-status {
  color: #614d54;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.l4u-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.l4u-brand-logo {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.58rem;
  box-shadow: 0 8px 16px rgba(120, 85, 94, 0.2);
}

.l4u-brand-word {
  line-height: 1;
  color: #bf8ea2;
}

.l4u-nav-link {
  color: #6c606e;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.l4u-nav-group {
  position: relative;
  align-items: center;
  gap: 0.12rem !important;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 85, 94, 0.14);
  background: rgba(255, 255, 255, 0.68);
}

.l4u-nav-indicator {
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  height: calc(100% - 0.4rem);
  width: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c5761 0%, #b88898 100%);
  box-shadow: 0 8px 18px rgba(120, 85, 94, 0.24);
  pointer-events: none;
  opacity: 0;
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.22, 0.8, 0.24, 1), width 260ms cubic-bezier(0.22, 0.8, 0.24, 1), opacity 180ms ease;
}

.l4u-nav-group .l4u-nav-link {
  position: relative;
  z-index: 1;
  border-bottom: 0;
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
}

.l4u-nav-group .l4u-nav-link.active {
  color: #fff;
}

.l4u-mobile-nav-row {
  margin-top: 0.1rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(120, 85, 94, 0.18);
}

.l4u-nav-group-mobile {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.l4u-nav-group-mobile::-webkit-scrollbar {
  display: none;
}

.l4u-nav-group-mobile .l4u-nav-link {
  white-space: nowrap;
  flex: 0 0 auto;
}

.l4u-nav-link:hover,
.l4u-nav-link:focus-visible {
  color: var(--l4u-primary);
}

.l4u-nav-link.active {
  color: var(--l4u-primary);
  border-bottom-color: var(--l4u-primary);
}

.l4u-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.l4u-page-loader {
  position: fixed;
  inset: 0;
  z-index: 3300;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 245, 246, 0.62) 0%, rgba(250, 249, 250, 0.95) 45%),
    linear-gradient(160deg, #faf9fa 0%, #f4f1f5 55%, #f8f7f8 100%);
  opacity: 1;
  transition: opacity 320ms ease;
}

.l4u-page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.l4u-page-loader-inner {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.l4u-page-loader-icon {
  width: clamp(72px, 14vw, 106px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(120, 85, 94, 0.2));
  animation: l4uViewerFloat 2.2s ease-in-out infinite;
}

.l4u-page-loader-text {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #78555e;
}

.l4u-page-loader-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.l4u-page-loader-dots span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #9b6f78;
  animation: l4uViewerDotPulse 1.05s ease-in-out infinite;
}

.l4u-page-loader-dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.l4u-page-loader-dots span:nth-child(3) {
  animation-delay: 0.24s;
}

.l4u-faq details > summary::-webkit-details-marker {
  display: none;
}

.l4u-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
}

.l4u-modal[hidden] {
  display: none;
}

.l4u-body[data-page="viewer"] .l4u-modal {
  display: none !important;
}

.l4u-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 29, 0.38);
  backdrop-filter: blur(3px);
}

.l4u-modal[data-modal="tiktok-browser-warning"] .l4u-modal-backdrop {
  background: rgba(8, 10, 14, 0.74);
  backdrop-filter: blur(4px);
}

.l4u-modal-card {
  position: relative;
  width: min(560px, calc(100vw - 2rem));
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 55px rgba(26, 28, 29, 0.2);
  padding: 1.2rem;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.l4u-modal-card-tiktok {
  width: min(540px, calc(100vw - 1.5rem));
}

.l4u-modal-card-signin {
  width: min(560px, calc(100vw - 1.5rem));
  max-height: min(92vh, 780px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.l4u-modal-card-signin .l4u-signin-terms-scroll {
  max-height: min(44vh, 300px);
}

.l4u-tiktok-warning-steps {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #4f4045;
}

.l4u-tiktok-warning-steps li {
  padding-left: 0.08rem;
}

#tiktokBrowserCopyFeedback {
  min-height: 1.2em;
}

.l4u-modal.is-open .l4u-modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.l4u-lock-scroll {
  overflow: hidden;
}

.l4u-progress-track {
  width: 100%;
  height: 0.68rem;
  border-radius: 999px;
  background: #f0e8ff;
  overflow: hidden;
}

.l4u-progress-bar {
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #78555e 0%, #c38ea1 100%);
  transition: width 240ms ease;
}

.l4u-modal-card-support {
  width: min(680px, calc(100vw - 1.6rem));
  max-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: contain;
}

.l4u-support-modal-scroll {
  margin-top: 0.65rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.2rem;
  scrollbar-gutter: stable;
}

.l4u-support-modal-footer {
  margin-top: 0.9rem;
  flex-shrink: 0;
}

.l4u-support-feedback-modal {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: 0.85rem;
}

.l4u-support-feedback-modal[hidden] {
  display: none;
}

.l4u-support-feedback-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 16, 19, 0.38);
}

.l4u-support-feedback-card {
  position: relative;
  width: min(100%, 320px);
  border-radius: 1rem;
  border: 1px solid rgba(120, 85, 94, 0.2);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 36px rgba(34, 22, 27, 0.24);
  padding: 0.95rem 0.9rem 0.85rem;
  display: grid;
  justify-items: center;
}

.l4u-support-feedback-modal #socialFeedbackKicker {
  color: #7e5c66;
}

.l4u-support-feedback-modal #socialFeedbackTitle {
  margin: 0.42rem 0 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.l4u-support-feedback-modal #socialFeedbackMessage {
  margin: 0.62rem 0 0;
  font-size: 0.78rem;
  line-height: 1.44;
  text-wrap: balance;
}

.l4u-support-feedback-modal #socialFeedbackOkButton {
  width: min(100%, 200px);
}

.l4u-support-feedback-modal.is-warning #socialFeedbackKicker {
  color: #9c5a3f;
}

.l4u-support-feedback-modal.is-success #socialFeedbackKicker {
  color: #3f8451;
}

.l4u-support-hint,
.l4u-support-status {
  margin: 0;
  line-height: 1.45;
}

.l4u-support-progress-track {
  width: 100%;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(120, 85, 94, 0.14);
  overflow: hidden;
}

.l4u-support-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7f5a63 0%, #c492a3 100%);
  transition: width 260ms ease;
}

.l4u-support-steps {
  display: grid;
  gap: 0.62rem;
}

.l4u-support-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  border-radius: 1rem;
  border: 1px solid rgba(120, 85, 94, 0.18);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.72rem 0.78rem;
}

.l4u-support-step.is-locked {
  opacity: 0.66;
}

.l4u-support-step.is-pending {
  border-color: rgba(120, 85, 94, 0.34);
}

.l4u-support-step.is-complete {
  border-color: rgba(89, 145, 98, 0.38);
  background: rgba(229, 247, 233, 0.76);
}

.l4u-support-step-title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4c3c42;
}

.l4u-support-step-state {
  margin: 0.25rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: #7a6a70;
}

.l4u-support-step-button {
  border: 1px solid rgba(120, 85, 94, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #5f4a50;
  padding: 0.44rem 0.78rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.l4u-support-step-button:disabled {
  cursor: not-allowed;
}

.l4u-support-comment {
  border-radius: 1rem;
  border: 1px solid rgba(120, 85, 94, 0.16);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.7rem 0.76rem;
}

.l4u-support-comment-title {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6a70;
}

.l4u-support-comment-row {
  margin-top: 0.48rem;
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
}

.l4u-support-comment-text {
  margin: 0;
  flex: 1;
  color: #4f4045;
  font-size: 0.76rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.l4u-support-copy-button {
  border: 1px solid rgba(120, 85, 94, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #5f4a50;
  padding: 0.34rem 0.74rem;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.l4u-toast-host {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1400;
  display: grid;
  gap: 0.6rem;
  width: min(24rem, calc(100vw - 1.8rem));
  pointer-events: none;
}

.l4u-toast {
  position: relative;
  overflow: hidden;
  border-radius: 1.05rem;
  border: 1px solid rgba(120, 85, 94, 0.28);
  background: linear-gradient(140deg, rgba(255, 249, 252, 0.98) 0%, rgba(255, 237, 243, 0.96) 100%);
  box-shadow: 0 24px 40px rgba(67, 43, 52, 0.28);
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  color: #3f2930;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  animation: l4uToastIn 250ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.l4u-toast::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.33rem;
  background: linear-gradient(180deg, #7e5662 0%, #b87f92 100%);
}

@keyframes l4uToastIn {
  from {
    opacity: 0;
    transform: translate3d(12px, 10px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 640px) {
  .l4u-toast-host {
    right: 0.8rem;
    bottom: 0.8rem;
    width: calc(100vw - 1.6rem);
  }

  .l4u-toast {
    font-size: 0.85rem;
  }

  .l4u-modal-card-tiktok {
    width: min(96vw, 520px);
    padding: 1rem;
  }

  .l4u-tiktok-warning-steps {
    font-size: 0.76rem;
  }

  .l4u-modal[data-modal="signin"] {
    align-items: flex-end;
    padding: 0.45rem 0.45rem calc(env(safe-area-inset-bottom, 0px) + 0.45rem);
  }

  .l4u-modal-card-signin {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 0.9rem);
    border-radius: 1.15rem;
    padding: 0.92rem 0.84rem;
  }

  .l4u-modal-card-signin h2 {
    margin-top: 0.4rem;
    font-size: 1.34rem;
    line-height: 1.15;
  }

  .l4u-modal-card-signin > p {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .l4u-modal-card-signin .l4u-signin-terms-shell {
    margin-top: 0.75rem;
    padding: 0.7rem 0.66rem 0.56rem;
  }

  .l4u-modal-card-signin .l4u-signin-terms-title {
    font-size: 0.79rem;
  }

  .l4u-modal-card-signin .l4u-signin-terms-meta {
    font-size: 0.67rem;
  }

  .l4u-modal-card-signin .l4u-signin-terms-scroll {
    margin-top: 0.5rem;
    max-height: min(35dvh, 240px);
    font-size: 0.69rem;
    line-height: 1.42;
    padding: 0.62rem 0.64rem;
  }

  .l4u-modal-card-signin .l4u-signin-terms-scroll h4,
  .l4u-modal-card-signin .l4u-signin-terms-scroll h5 {
    margin-top: 0.62rem;
    font-size: 0.72rem;
  }

  .l4u-modal-card-signin .l4u-signin-terms-consent {
    margin-top: 0.65rem;
    padding: 0.68rem 0.62rem;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .l4u-modal-card-signin #signinConsentStatus {
    margin-top: 0.5rem;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .l4u-modal-card-signin #completeSigninButton,
  .l4u-modal-card-signin [data-close-modal] {
    width: 100%;
    justify-content: center;
  }

  .l4u-modal[data-modal="social-support"] {
    align-items: flex-end;
    padding: 0.45rem 0.45rem calc(env(safe-area-inset-bottom, 0px) + 0.45rem);
  }

  .l4u-modal-card-support {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 0.9rem);
    border-radius: 1.15rem;
    padding: 0.82rem;
  }

  .l4u-support-modal-scroll {
    margin-top: 0.5rem;
    padding-right: 0.08rem;
    padding-bottom: 0.15rem;
  }

  .l4u-support-feedback-modal {
    padding: 0.62rem;
  }

  .l4u-support-feedback-card {
    width: min(100%, 300px);
    border-radius: 0.88rem;
    padding: 0.8rem 0.72rem;
  }

  .l4u-support-feedback-modal #socialFeedbackTitle {
    font-size: 0.95rem;
  }

  .l4u-support-feedback-modal #socialFeedbackMessage {
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .l4u-support-modal-footer {
    margin-top: 0.65rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(120, 85, 94, 0.15);
  }

  .l4u-support-modal-title {
    font-size: 1.22rem;
    line-height: 1.08;
  }

  .l4u-support-intro {
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .l4u-support-caption {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .l4u-support-steps {
    gap: 0.5rem;
  }

  .l4u-support-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.44rem;
    border-radius: 0.85rem;
    padding: 0.56rem 0.62rem;
  }

  .l4u-support-step-title {
    font-size: 0.72rem;
  }

  .l4u-support-step-state {
    margin-top: 0.14rem;
    font-size: 0.64rem;
  }

  .l4u-support-step-button,
  .l4u-support-copy-button {
    width: 100%;
    text-align: center;
    padding: 0.4rem 0.64rem;
    font-size: 0.6rem;
  }

  .l4u-support-comment-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.42rem;
  }

  .l4u-support-comment {
    padding: 0.55rem 0.62rem;
  }

  .l4u-support-comment-title {
    font-size: 0.61rem;
  }

  .l4u-support-comment-text {
    font-size: 0.69rem;
    line-height: 1.34;
  }

  .l4u-support-footer-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .l4u-support-hint,
  .l4u-support-status {
    font-size: 0.68rem;
    line-height: 1.34;
  }

  .l4u-modal-card-support .l4u-gradient-button,
  .l4u-modal-card-support .l4u-outline-button {
    width: 100%;
    justify-content: center;
  }
}

.l4u-empty {
  border: 1px dashed rgba(129, 116, 118, 0.35);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.62);
}

.l4u-photo-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
}

.l4u-photo-thumb {
  border-radius: 0.9rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(26, 28, 29, 0.12);
}

.l4u-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l4u-viewer-letter-immersive [data-l4u-nav],
.l4u-viewer-letter-immersive [data-l4u-footer],
.l4u-viewer-letter-immersive .l4u-background {
  display: none !important;
}

.l4u-viewer-letter-immersive main {
  padding-bottom: 0;
}

.l4u-viewer-letter-immersive #viewerLetterSection {
  max-width: none;
  width: 100vw;
  padding: 0;
}

.l4u-letter-immersive {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f4c18d url("/public/images/loveletter-bg.png") center center / cover no-repeat;
}

.l4u-letter-immersive.hidden,
.l4u-letter-immersive .hidden,
.l4u-letter-lock-stage.hidden,
.l4u-envelope-stage.hidden,
.l4u-letter-paper-modal.hidden,
.l4u-collage-stage.hidden,
.l4u-photo-lightbox.hidden {
  display: none !important;
}

.l4u-letter-immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 26, 29, 0.08) 0%, rgba(47, 26, 29, 0.18) 56%, rgba(32, 18, 22, 0.3) 100%);
  opacity: 1;
  pointer-events: none;
}

.l4u-letter-volume-gate {
  position: absolute;
  inset: 0;
  z-index: 16;
  display: grid;
  place-items: center;
  background: rgba(29, 18, 31, 0.38);
  backdrop-filter: blur(8px);
  transition: opacity 220ms ease;
}

.l4u-letter-volume-gate.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.l4u-letter-volume-card {
  width: min(470px, 92vw);
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 242, 247, 0.94) 58%, rgba(244, 236, 255, 0.94) 100%);
  box-shadow: 0 28px 42px rgba(67, 40, 58, 0.26);
  padding: 1.1rem 1.08rem;
  text-align: center;
}

.l4u-letter-volume-kicker {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b5e72;
}

.l4u-letter-volume-title {
  margin: 0.42rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.44rem);
  font-weight: 800;
  color: #402d38;
}

.l4u-letter-volume-text {
  margin: 0.54rem auto 0;
  max-width: 32rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #694f5b;
}

.l4u-letter-volume-button {
  margin-top: 0.8rem;
  border: 1px solid rgba(63, 44, 54, 0.3);
  border-radius: 999px;
  background: linear-gradient(170deg, #3f2c36 0%, #2b1f26 100%);
  color: #fff5f9;
  padding: 0.54rem 1.2rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.l4u-letter-lock-stage,
.l4u-envelope-stage,
.l4u-collage-stage {
  position: relative;
  z-index: 4;
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
}

.l4u-letter-lock-stage {
  width: min(620px, 94vw);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.5rem;
}

.l4u-letter-lock-stage.is-sliding-out {
  pointer-events: none;
  animation: l4uLockStageSlideOut 620ms cubic-bezier(0.2, 0.84, 0.24, 1) both;
}

@keyframes l4uLockStageSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-34vw) scale(0.93);
  }
}

.l4u-letter-lock-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #9c6476;
}

.l4u-letter-lock-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #3d2633;
}

.l4u-letter-lock-status {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #7a5966;
}

.l4u-heart-padlock {
  position: relative;
  width: min(356px, 90vw);
  padding-top: 92px;
  filter: drop-shadow(0 28px 34px rgba(57, 30, 43, 0.3));
}

.l4u-heart-shackle {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 132px;
  height: 90px;
  border-radius: 64px 64px 0 0;
  border: 13px solid #f3e0d5;
  border-bottom: 0;
  background: transparent;
  box-shadow: 0 8px 12px rgba(68, 42, 50, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  transition: transform 560ms cubic-bezier(0.2, 0.82, 0.24, 1), opacity 280ms ease;
  z-index: 1;
}

.l4u-heart-shell {
  position: relative;
  width: 292px;
  height: 252px;
  margin: 0 auto;
  z-index: 2;
}

.l4u-heart-shape {
  position: absolute;
  left: 50%;
  top: 68px;
  width: 172px;
  height: 172px;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 28px;
  background: linear-gradient(150deg, #f9abbf 0%, #f47a9e 56%, #e85f87 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), inset 0 -12px 24px rgba(103, 33, 61, 0.2);
}

.l4u-heart-shape::before,
.l4u-heart-shape::after {
  content: "";
  position: absolute;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background: inherit;
}

.l4u-heart-shape::before {
  left: -86px;
  top: 0;
}

.l4u-heart-shape::after {
  left: 0;
  top: -86px;
}

.l4u-heart-inner {
  position: absolute;
  left: 50%;
  top: 106px;
  transform: translateX(-50%);
  width: 238px;
  display: grid;
  justify-items: center;
  gap: 0.48rem;
  z-index: 3;
}

.l4u-heart-led {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: #ffebb8;
  box-shadow: 0 0 10px rgba(255, 240, 190, 0.78);
}

.l4u-pin-dials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.l4u-pin-dial {
  width: 46px;
  border-radius: 0.78rem;
  background: rgba(255, 240, 246, 0.9);
  border: 1px solid rgba(117, 44, 75, 0.28);
  padding: 0.26rem 0.16rem;
  display: grid;
  justify-items: center;
  gap: 0.08rem;
}

.l4u-pin-step {
  width: 1.4rem;
  height: 1.2rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(92, 47, 66, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: #6d3f54;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.l4u-pin-digit {
  width: 100%;
  position: relative;
  display: block;
  min-height: 1.1em;
  overflow: hidden;
  text-align: center;
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #4a2a39;
}

.l4u-pin-digit-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
  will-change: transform, opacity;
}

.l4u-pin-digit-value.is-up-in {
  transform: translateY(116%);
  opacity: 0;
}

.l4u-pin-digit-value.is-down-in {
  transform: translateY(-116%);
  opacity: 0;
}

.l4u-pin-digit-value.is-up-out,
.l4u-pin-digit-value.is-down-out {
  transform: translateY(0);
  opacity: 1;
}

.l4u-pin-digit-value.is-next.is-active {
  transform: translateY(0);
  opacity: 1;
}

.l4u-pin-digit-value.is-up-out.is-active {
  transform: translateY(-116%);
  opacity: 0;
}

.l4u-pin-digit-value.is-down-out.is-active {
  transform: translateY(116%);
  opacity: 0;
}

.l4u-heart-unlock-button {
  margin-top: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: linear-gradient(170deg, #442634 0%, #2f1b24 100%);
  color: #fff3f8;
  padding: 0.48rem 1.36rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.l4u-heart-padlock.is-wrong {
  animation: l4uPadlockShake 430ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.l4u-heart-padlock.is-wrong .l4u-heart-led {
  background: #ff4f58;
  box-shadow: 0 0 14px rgba(255, 79, 88, 0.84);
  animation: l4uLedAlarm 300ms steps(2) 2;
}

.l4u-heart-padlock.is-unlocking .l4u-heart-shackle,
.l4u-heart-padlock.is-unlocked .l4u-heart-shackle {
  transform: translateX(-50%) rotate(-26deg) translate(-10px, 6px);
}

.l4u-heart-padlock.is-unlocked .l4u-heart-shell,
.l4u-heart-padlock.is-unlocked .l4u-heart-inner {
  opacity: 0.1;
}

@keyframes l4uPadlockShake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-12px);
  }

  40% {
    transform: translateX(11px);
  }

  60% {
    transform: translateX(-8px);
  }

  80% {
    transform: translateX(7px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes l4uLedAlarm {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.l4u-envelope-stage {
  width: min(460px, 92vw);
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.l4u-envelope-stage.is-sliding-in {
  pointer-events: none;
  animation: l4uEnvelopeStageSlideIn 620ms cubic-bezier(0.2, 0.84, 0.24, 1) both;
}

@keyframes l4uEnvelopeStageSlideIn {
  0% {
    opacity: 0;
    transform: translate3d(32vw, 0, 0) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.l4u-envelope-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #935a6f;
}

.l4u-envelope-button {
  position: relative;
  width: min(320px, 82vw);
  aspect-ratio: 7 / 4.8;
  border: 0;
  border-radius: 1.1rem;
  background:
    linear-gradient(162deg, #fff8f1 0%, #f8e7d5 58%, #eecfb9 100%);
  box-shadow:
    0 26px 34px rgba(88, 49, 58, 0.24),
    inset 0 0 0 1px rgba(91, 56, 63, 0.2),
    inset 0 -20px 28px rgba(124, 77, 77, 0.09);
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
  transform: translateY(0) scale(1) perspective(960px);
  transition: transform 220ms ease, filter 220ms ease;
}

.l4u-envelope-button:hover {
  transform: translateY(-4px) scale(1.02) perspective(960px) rotateX(2deg);
  filter: brightness(1.02);
}

.l4u-envelope-top,
.l4u-envelope-paper,
.l4u-envelope-letter {
  position: absolute;
  border-radius: inherit;
}

.l4u-envelope-paper {
  inset: 41% 0 0;
  border-radius: 0.04rem 0.04rem 1.1rem 1.1rem;
  clip-path: polygon(0 0, 50% 40%, 100% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(172deg, #f9e7d9 0%, #efc8b4 100%);
  box-shadow:
    inset 0 0 0 1px rgba(108, 66, 72, 0.22),
    inset 0 12px 18px rgba(255, 235, 222, 0.55),
    0 8px 14px rgba(86, 50, 58, 0.18);
  z-index: 3;
}

.l4u-envelope-letter {
  left: 9%;
  right: 9%;
  top: 23%;
  height: 63%;
  border-radius: 0.62rem 0.62rem 0.34rem 0.34rem;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff6ea 62%, #f5e4ce 100%);
  border: 1px solid rgba(120, 82, 65, 0.25);
  box-shadow:
    0 6px 16px rgba(94, 58, 63, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  transform: translateY(24%) scale(0.94);
  transform-origin: 50% 100%;
  transition: transform 740ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 740ms ease;
  z-index: 2;
}

.l4u-envelope-letter::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 0.95rem;
  bottom: 0.8rem;
  border-radius: 0.3rem;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(131, 96, 80, 0.16) 0 2px,
      rgba(255, 255, 255, 0) 2px 15px
    );
  opacity: 0.54;
}

.l4u-envelope-top {
  inset: 0;
  clip-path: polygon(0 0, 50% 60%, 100% 0, 100% 49%, 0 49%);
  background: linear-gradient(165deg, #fbe1d4 0%, #efbaa8 100%);
  box-shadow: inset 0 -1px 0 rgba(89, 42, 53, 0.24);
  transform-origin: 50% 0;
  transform: rotateX(0deg);
  backface-visibility: hidden;
  transition: transform 560ms cubic-bezier(0.22, 0.8, 0.24, 1), filter 560ms ease;
  z-index: 5;
}

.l4u-envelope-detail-lines {
  position: absolute;
  left: 22%;
  right: 22%;
  top: 58%;
  height: 24%;
  border-radius: 0.2rem;
  background:
    linear-gradient(180deg, rgba(119, 79, 91, 0.16) 0 2px, transparent 2px 9px, rgba(119, 79, 91, 0.16) 9px 11px, transparent 11px 18px, rgba(119, 79, 91, 0.16) 18px 20px, transparent 20px 100%);
  opacity: 0.64;
  pointer-events: none;
  z-index: 4;
}

.l4u-envelope-stamp {
  position: absolute;
  right: 9%;
  top: 14%;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 0.18rem;
  border: 1px dashed rgba(135, 84, 98, 0.46);
  background: linear-gradient(145deg, rgba(255, 236, 244, 0.8) 0%, rgba(241, 206, 223, 0.8) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 6;
}

.l4u-envelope-seal {
  position: absolute;
  left: 50%;
  top: 47.2%;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 199, 190, 0.42) 0%, rgba(255, 199, 190, 0) 52%),
    linear-gradient(150deg, #a33a4a 0%, #7b1f30 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 228, 231, 0.42), 0 5px 12px rgba(103, 40, 56, 0.34);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 7;
}

.l4u-envelope-button.is-opening .l4u-envelope-top {
  transform: rotateX(-174deg) translateY(-4px);
  filter: brightness(1.03);
}

.l4u-envelope-button.is-opening .l4u-envelope-letter {
  animation: l4uEnvelopeLetterFlyOut 860ms cubic-bezier(0.16, 0.8, 0.2, 1) forwards;
  filter: saturate(1.04);
}

.l4u-envelope-button.is-opening .l4u-envelope-seal {
  animation: l4uSealFadeOut 420ms ease forwards;
}

@keyframes l4uSealFadeOut {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-8px) scale(0.72);
    opacity: 0;
  }
}

@keyframes l4uEnvelopeLetterFlyOut {
  0% {
    opacity: 1;
    transform: translateY(24%) scale(0.94) rotate(0deg);
  }

  38% {
    opacity: 1;
    transform: translateY(-22%) scale(1.03) rotate(-1.2deg);
  }

  100% {
    opacity: 0;
    transform: translateY(-188%) scale(1.1) rotate(-4.5deg);
  }
}

.l4u-letter-paper-modal {
  position: absolute;
  inset: 0;
  z-index: 11;
  display: grid;
  place-items: center;
  background: rgba(37, 24, 34, 0.28);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.l4u-letter-paper-modal.is-entering {
  animation: l4uLetterModalFadeIn 280ms ease both;
}

.l4u-letter-paper-modal.is-entering .l4u-letter-paper {
  animation: l4uLetterPaperPopIn 520ms cubic-bezier(0.2, 0.86, 0.2, 1) both;
}

.l4u-letter-paper-shell {
  position: relative;
  width: min(92vw, 680px, calc(78vh * 1.4166667));
  aspect-ratio: 680 / 480;
  animation: l4uLetterPaperFloat 5.4s ease-in-out infinite;
  z-index: 1;
}

@keyframes l4uLetterPaperFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.15deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(-2.2deg);
  }
}

.l4u-letter-balloon-rig {
  position: absolute;
  right: -0.52rem;
  top: -12rem;
  width: min(10.4rem, 27vw);
  pointer-events: none;
  z-index: 5;
  transform-origin: 28% 86%;
  animation: l4uBalloonRigDrift 5.4s ease-in-out infinite;
}

.l4u-balloon-cluster {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 8px 11px rgba(92, 57, 66, 0.2));
}

.l4u-balloon-node {
  --balloon-fill: #f3c2d5;
  --balloon-stroke: #b7889c;
}

.l4u-balloon-node.tone-pink-a {
  --balloon-fill: #f4bdcf;
  --balloon-stroke: #b88699;
}

.l4u-balloon-node.tone-pink-b {
  --balloon-fill: #efb7d2;
  --balloon-stroke: #b0819b;
}

.l4u-balloon-node.tone-yellow-a {
  --balloon-fill: #f7e8b3;
  --balloon-stroke: #c1aa67;
}

.l4u-balloon-node.tone-yellow-b {
  --balloon-fill: #f6deb2;
  --balloon-stroke: #be9a71;
}

.l4u-balloon-node.tone-purple-a {
  --balloon-fill: #d9c7f2;
  --balloon-stroke: #9f8bbc;
}

.l4u-balloon-node.tone-purple-b {
  --balloon-fill: #cebde9;
  --balloon-stroke: #9987b4;
}

.l4u-balloon-body {
  fill: var(--balloon-fill);
  stroke: var(--balloon-stroke);
  stroke-width: 3;
}

.l4u-balloon-knot {
  fill: var(--balloon-fill);
  stroke: var(--balloon-stroke);
  stroke-width: 2;
}

.l4u-balloon-gloss {
  fill: rgba(255, 255, 255, 0.44);
}

.l4u-balloon-string {
  fill: none;
  stroke: rgba(129, 98, 106, 0.78);
  stroke-width: 2;
  stroke-linecap: round;
}

.l4u-balloon-anchor {
  fill: #c48ca4;
  stroke: rgba(105, 68, 79, 0.72);
  stroke-width: 2;
}

.l4u-balloon-anchor-knot {
  fill: #ad6f8b;
}

.l4u-kite-group {
  position: absolute;
  left: -4.1rem;
  top: -5.9rem;
  width: 7.6rem;
  height: auto;
  overflow: visible;
  animation: l4uKiteSway 4.2s ease-in-out infinite;
  transform-origin: 14% 86%;
  z-index: 4;
}

.l4u-kite-line {
  fill: none;
  stroke: rgba(129, 98, 106, 0.76);
  stroke-width: 2;
  stroke-linecap: round;
}

.l4u-kite .l4u-kite-sail {
  fill: #f0bfd4;
  stroke: rgba(161, 112, 136, 0.74);
  stroke-width: 2.6;
}

.l4u-kite.is-secondary .l4u-kite-sail {
  fill: #d2c0ef;
  stroke: rgba(128, 108, 166, 0.74);
}

.l4u-kite .l4u-kite-sail-cross {
  fill: none;
  stroke: rgba(130, 99, 117, 0.8);
  stroke-width: 2;
  stroke-linecap: round;
}

.l4u-kite .l4u-kite-tail {
  fill: none;
  stroke: rgba(118, 90, 98, 0.74);
  stroke-width: 2;
  stroke-linecap: round;
}

.l4u-kite .l4u-kite-tail-knot {
  fill: #f5dfaa;
  stroke: rgba(187, 153, 90, 0.76);
  stroke-width: 1.5;
}

.l4u-kite.is-secondary .l4u-kite-tail-knot {
  fill: #ecc0d9;
  stroke: rgba(163, 108, 134, 0.72);
}

.l4u-kite.is-secondary {
  animation: l4uKitePulse 2.9s ease-in-out 0.5s infinite;
  transform-origin: 78px 126px;
}

@keyframes l4uBalloonRigDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0.6deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(-1.3deg);
  }
}

@keyframes l4uKiteSway {
  0%,
  100% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-3deg);
  }
}

@keyframes l4uKitePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes l4uLetterModalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes l4uLetterPaperPopIn {
  0% {
    opacity: 0.08;
    transform: translateY(46px) scale(0.58);
  }

  64% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.l4u-letter-paper {
  --l4u-letter-line-step: 1.9rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  border: 1px solid rgba(160, 130, 96, 0.36);
  background:
    radial-gradient(circle at 13% 16%, rgba(255, 250, 236, 0.8) 0%, rgba(255, 250, 236, 0) 34%),
    radial-gradient(circle at 84% 88%, rgba(208, 169, 111, 0.12) 0%, rgba(208, 169, 111, 0) 44%),
    linear-gradient(165deg, #f8ecd4 0%, #f2e2c4 58%, #ead6b2 100%);
  box-shadow: 0 32px 46px rgba(84, 59, 32, 0.26);
  padding: 0.86rem clamp(1.2rem, 3.5vw, 2.05rem) 0.72rem clamp(1.45rem, 3.8vw, 2.2rem);
}

.l4u-letter-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    repeating-linear-gradient(44deg, rgba(116, 86, 53, 0.036) 0 2px, rgba(255, 255, 255, 0) 2px 8px),
    radial-gradient(circle at 34% 0%, rgba(255, 252, 241, 0.38) 0%, rgba(255, 252, 241, 0) 28%);
  opacity: 0.58;
}

.l4u-letter-paper > * {
  position: relative;
  z-index: 1;
}

.l4u-letter-paper-date {
  margin: 0;
  font-size: clamp(0.82rem, 1.25vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #946879;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: right;
}

.l4u-letter-script-block {
  margin-top: 0.45rem;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0.26rem 0.58rem 0.2rem;
  border-radius: 0.24rem;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 calc(var(--l4u-letter-line-step) - 1px),
      rgba(160, 128, 97, 0.28) calc(var(--l4u-letter-line-step) - 1px) var(--l4u-letter-line-step)
    );
}

.l4u-letter-paper-title {
  margin: 0.36rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3e2734;
  font-family: "Cormorant Garamond", serif;
}

.l4u-letter-paper-recipient {
  margin: 0;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #563644;
  font-family: "Caveat", "Cormorant Garamond", serif;
  line-height: var(--l4u-letter-line-step);
}

.l4u-letter-typed {
  margin: var(--l4u-letter-line-step) 0 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.34rem;
  white-space: pre-wrap;
  -webkit-hyphens: manual;
  hyphens: manual;
  overflow-wrap: break-word;
  word-break: normal;
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  line-height: var(--l4u-letter-line-step);
  letter-spacing: 0.012em;
  color: #4a3440;
  font-family: "Cormorant Garamond", serif;
  text-indent: 1.9em;
  text-align: justify;
  text-justify: inter-character;
  text-align-last: left;
}

.l4u-letter-typed::-webkit-scrollbar {
  width: 8px;
}

.l4u-letter-typed::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(127, 92, 70, 0.35);
}

.l4u-letter-paper-closing {
  margin: 0;
  padding-top: calc(var(--l4u-letter-line-step) * 0.44);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: var(--l4u-letter-line-step);
  color: #5a3a48;
  text-align: right;
  font-family: "Cormorant Garamond", serif;
}

.l4u-letter-paper-signature {
  margin: 0;
  font-size: clamp(1.36rem, 2.8vw, 2rem);
  line-height: var(--l4u-letter-line-step);
  color: #4a2e3b;
  text-align: right;
  font-family: "Caveat", cursive;
}

.l4u-letter-typed.is-typing::after {
  content: "|";
  margin-left: 0.08rem;
  animation: l4uTypeBlink 860ms step-end infinite;
}

@keyframes l4uTypeBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.l4u-letter-next-button {
  margin-top: 0.56rem;
  margin-left: auto;
  display: block;
  border: 1px solid rgba(75, 44, 57, 0.28);
  border-radius: 999px;
  background: linear-gradient(170deg, #4a2c39 0%, #35202a 100%);
  color: #fff4f9;
  padding: 0.52rem 1.24rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.l4u-letter-rose {
  position: absolute;
  left: -2.45rem;
  bottom: -2.65rem;
  width: 8.4rem;
  height: 11rem;
  pointer-events: none;
  z-index: 6;
  transform: rotate(-45deg);
  transform-origin: 48% 82%;
  filter: drop-shadow(0 6px 8px rgba(70, 42, 49, 0.22));
}

.l4u-letter-rose .l4u-rose-stem {
  fill: none;
  stroke: #4f7f47;
  stroke-width: 9;
  stroke-linecap: round;
}

.l4u-letter-rose .l4u-rose-stem-highlight {
  fill: none;
  stroke: rgba(177, 216, 167, 0.66);
  stroke-width: 3.6;
  stroke-linecap: round;
}

.l4u-letter-rose .l4u-rose-thorn {
  fill: #3e6838;
}

.l4u-letter-rose .l4u-rose-leaf {
  fill: #67995d;
  stroke: rgba(53, 93, 47, 0.58);
  stroke-width: 2;
}

.l4u-letter-rose .l4u-rose-leaf.is-right {
  fill: #5f8c55;
}

.l4u-letter-rose .l4u-rose-petal {
  stroke: rgba(152, 61, 93, 0.44);
  stroke-width: 2;
}

.l4u-letter-rose .l4u-rose-petal.is-back-left {
  fill: #de6f94;
}

.l4u-letter-rose .l4u-rose-petal.is-back-right {
  fill: #d8648a;
}

.l4u-letter-rose .l4u-rose-petal.is-top {
  fill: #e98eac;
}

.l4u-letter-rose .l4u-rose-petal.is-mid-left {
  fill: #f08db0;
}

.l4u-letter-rose .l4u-rose-petal.is-mid-right {
  fill: #ec84a8;
}

.l4u-letter-rose .l4u-rose-petal.is-front {
  fill: #f6a8c0;
}

.l4u-letter-rose .l4u-rose-core {
  fill: #cc4f78;
}

.l4u-collage-stage {
  width: min(1080px, 96vw);
  padding: 1.2rem 0.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.3rem;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: 50% 18%;
}

.l4u-collage-sky-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.l4u-collage-sky-decor span {
  position: absolute;
}

.l4u-collage-cloud {
  width: 8.4rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.74);
  box-shadow: 0 8px 16px rgba(126, 94, 95, 0.14);
  animation: l4uCollageFloatSlow 11.2s ease-in-out infinite;
}

.l4u-collage-cloud::before,
.l4u-collage-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.l4u-collage-cloud::before {
  width: 2.9rem;
  height: 2.4rem;
  left: 1.25rem;
  top: -0.9rem;
}

.l4u-collage-cloud::after {
  width: 3.4rem;
  height: 2.9rem;
  right: 1rem;
  top: -1.1rem;
}

.l4u-collage-cloud.is-a {
  left: 2%;
  top: 8%;
}

.l4u-collage-cloud.is-b {
  left: 34%;
  top: 4%;
  transform: scale(0.86);
  animation-delay: 1.4s;
}

.l4u-collage-cloud.is-c {
  right: 12%;
  top: 8%;
  transform: scale(0.96);
  animation-delay: 0.7s;
}

.l4u-collage-cloud.is-d {
  right: 2%;
  top: 24%;
  transform: scale(0.78);
  animation-delay: 2.2s;
}

.l4u-collage-hotair {
  width: 4.8rem;
  height: 6rem;
  border-radius: 42% 42% 38% 38%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 40%),
    repeating-linear-gradient(90deg, #f5c1d7 0 12px, #f8e9b9 12px 24px, #d5c2f2 24px 36px);
  border: 2px solid rgba(145, 111, 120, 0.46);
  box-shadow: 0 14px 20px rgba(98, 66, 78, 0.2);
  animation: l4uCollageFloat 7.2s ease-in-out infinite;
}

.l4u-collage-hotair::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 84%;
  width: 1.6rem;
  height: 0.86rem;
  transform: translateX(-50%);
  border-radius: 0.2rem;
  background: #d79f6f;
  box-shadow: inset 0 0 0 1px rgba(110, 78, 56, 0.48);
}

.l4u-collage-hotair::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 74%;
  width: 1.6rem;
  height: 0.9rem;
  transform: translateX(-50%);
  border-left: 2px solid rgba(122, 88, 89, 0.7);
  border-right: 2px solid rgba(122, 88, 89, 0.7);
}

.l4u-collage-hotair.is-a {
  left: 10%;
  top: 19%;
}

.l4u-collage-hotair.is-b {
  right: 15%;
  top: 14%;
  transform: scale(0.86);
  animation-delay: 1.8s;
}

.l4u-collage-balloon {
  width: 2rem;
  height: 2.5rem;
  border-radius: 50% 50% 48% 48%;
  border: 2px solid rgba(143, 108, 121, 0.52);
  background: #f3c1d2;
  box-shadow: 0 8px 12px rgba(101, 69, 79, 0.18);
  animation: l4uCollageFloat 6.8s ease-in-out infinite;
}

.l4u-collage-balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.38rem;
  width: 0.46rem;
  height: 0.4rem;
  transform: translateX(-50%);
  background: inherit;
  border-left: 2px solid rgba(143, 108, 121, 0.52);
  border-right: 2px solid rgba(143, 108, 121, 0.52);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.l4u-collage-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 2rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(132, 103, 112, 0.8) 0%, rgba(132, 103, 112, 0) 100%);
}

.l4u-collage-balloon.is-a {
  right: 5%;
  top: 29%;
  background: #f8e6b2;
}

.l4u-collage-balloon.is-b {
  right: 10%;
  top: 36%;
  background: #d4c4ef;
  animation-delay: 0.9s;
}

.l4u-collage-balloon.is-c {
  right: 15%;
  top: 31%;
  background: #f3bfd3;
  animation-delay: 1.4s;
}

.l4u-collage-kite {
  width: 2.9rem;
  height: 2.9rem;
  border: 2px solid rgba(136, 99, 117, 0.6);
  transform: rotate(45deg);
  box-shadow: 0 10px 14px rgba(95, 63, 74, 0.16);
  animation: l4uCollageSway 5.8s ease-in-out infinite;
}

.l4u-collage-kite::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(248, 225, 171, 0.94) 0%, rgba(248, 225, 171, 0.94) 50%, rgba(213, 195, 240, 0.94) 50% 100%);
}

.l4u-collage-kite::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 3.1rem;
  transform: translateX(-50%) rotate(-45deg);
  background: linear-gradient(180deg, rgba(130, 93, 111, 0.74) 0%, rgba(130, 93, 111, 0) 100%);
}

.l4u-collage-kite.is-a {
  left: 20%;
  top: 30%;
}

.l4u-collage-kite.is-b {
  left: 34%;
  top: 24%;
  transform: rotate(45deg) scale(0.84);
  animation-delay: 0.8s;
}

.l4u-collage-bubble {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 58%);
  box-shadow: inset 0 0 0 1px rgba(197, 221, 255, 0.35);
  animation: l4uCollageBubbleRise 9s linear infinite;
}

.l4u-collage-bubble.is-a {
  left: 8%;
  bottom: 8%;
}

.l4u-collage-bubble.is-b {
  left: 18%;
  bottom: 14%;
  width: 0.84rem;
  height: 0.84rem;
  animation-delay: 1.1s;
}

.l4u-collage-bubble.is-c {
  right: 24%;
  bottom: 10%;
  width: 1.12rem;
  height: 1.12rem;
  animation-delay: 0.8s;
}

.l4u-collage-bubble.is-d {
  right: 7%;
  bottom: 12%;
  width: 0.76rem;
  height: 0.76rem;
  animation-delay: 2.4s;
}

.l4u-collage-bubble.is-e {
  right: 35%;
  bottom: 6%;
  width: 0.9rem;
  height: 0.9rem;
  animation-delay: 1.8s;
}

.l4u-collage-bubble.is-f {
  left: 42%;
  bottom: 10%;
  width: 0.7rem;
  height: 0.7rem;
  animation-delay: 3s;
}

@keyframes l4uCollageFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes l4uCollageFloatSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes l4uCollageSway {
  0%,
  100% {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(40deg) translate3d(0, -8px, 0);
  }
}

@keyframes l4uCollageBubbleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0;
  }

  14% {
    opacity: 0.85;
  }

  100% {
    transform: translate3d(0, -220px, 0) scale(1.1);
    opacity: 0;
  }
}

.l4u-collage-header,
.l4u-polaroid-grid {
  position: relative;
  z-index: 2;
}

.l4u-collage-stage.is-entering {
  animation: l4uCollageStageIn 620ms cubic-bezier(0.2, 0.86, 0.2, 1) both;
}

@keyframes l4uCollageStageIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.965);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.l4u-collage-header {
  text-align: center;
}

.l4u-collage-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f5f72;
}

.l4u-collage-title {
  margin: 0.3rem 0 0;
  font-size: clamp(1.22rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #3b2631;
}

.l4u-collage-text {
  margin: 0.36rem 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #6d4d5a;
}

.l4u-collage-actions {
  margin-top: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.54rem;
}

.l4u-collage-action-button {
  border: 1px solid rgba(76, 46, 58, 0.24);
  border-radius: 999px;
  background: rgba(255, 246, 251, 0.92);
  color: #5f3f4d;
  padding: 0.5rem 1.06rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.l4u-collage-action-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 14px rgba(74, 42, 54, 0.16);
}

.l4u-collage-action-button.is-primary {
  background: linear-gradient(170deg, #4a2c39 0%, #35202a 100%);
  border-color: rgba(53, 32, 42, 0.62);
  color: #fff4f9;
}

.l4u-polaroid-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(186px, 220px));
  justify-content: center;
  gap: 1.15rem 1rem;
  align-items: start;
}

.l4u-polaroid-empty {
  margin: 0;
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.84rem;
  color: #7b5d68;
}

.l4u-love-polaroid {
  --l4u-polaroid-tilt: 0deg;
  --l4u-polaroid-paper: rgb(243, 228, 233);
  --l4u-polaroid-accent: rgb(196, 154, 170);
  position: relative;
  width: min(220px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(126, 89, 104, 0.22);
  border-radius: 0.62rem;
  padding: 0.62rem 0.62rem 1.92rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, var(--l4u-polaroid-paper) 0%, #fff 100%);
  box-shadow: 0 18px 22px rgba(74, 42, 54, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  opacity: 1;
  filter: none;
  overflow: hidden;
  transform: rotate(var(--l4u-polaroid-tilt)) translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.l4u-love-polaroid.is-staged {
  opacity: 0;
  transform: rotate(var(--l4u-polaroid-tilt)) translateY(26px) scale(0.72);
  filter: saturate(0.86) blur(0.45px);
  pointer-events: none;
}

.l4u-love-polaroid.is-revealed {
  pointer-events: auto;
  animation: l4uPolaroidPopIn 700ms cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

@keyframes l4uPolaroidPopIn {
  0% {
    opacity: 0;
    transform: rotate(var(--l4u-polaroid-tilt)) translateY(30px) scale(0.72);
  }

  62% {
    opacity: 1;
    transform: rotate(var(--l4u-polaroid-tilt)) translateY(-8px) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: rotate(var(--l4u-polaroid-tilt)) translateY(0) scale(1);
  }
}

.l4u-love-polaroid:hover {
  transform: rotate(var(--l4u-polaroid-tilt)) translateY(-6px) scale(1.02);
  box-shadow: 0 24px 32px rgba(74, 42, 54, 0.24);
}

.l4u-love-polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.3rem;
  object-fit: cover;
  border: 1px solid rgba(72, 43, 56, 0.22);
  box-shadow: 0 5px 10px rgba(42, 24, 32, 0.16);
}

.l4u-polaroid-theme {
  display: none !important;
}

.l4u-polaroid-theme-balloon {
  left: 50%;
  top: -3.08rem;
  width: 2.24rem;
  height: 2.82rem;
  transform: translateX(-50%);
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(160deg, #f4c1d7 0%, #d8c4f1 52%, #f6e4b2 100%);
  border: 2px solid rgba(137, 100, 117, 0.52);
  box-shadow: 0 10px 14px rgba(95, 63, 74, 0.18);
}

.l4u-polaroid-theme-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.42rem;
  width: 0.46rem;
  height: 0.38rem;
  transform: translateX(-50%);
  border-left: 2px solid rgba(137, 100, 117, 0.52);
  border-right: 2px solid rgba(137, 100, 117, 0.52);
  background: #e5b6cd;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.l4u-polaroid-theme-string {
  left: 50%;
  top: -0.34rem;
  width: 1.5px;
  height: 2.56rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(122, 86, 102, 0.84) 0%, rgba(122, 86, 102, 0) 100%);
}

.l4u-polaroid-theme-hotair {
  left: 50%;
  top: -4.16rem;
  width: 3.24rem;
  height: 4.12rem;
  transform: translateX(-50%);
  border-radius: 46% 46% 40% 40%;
  border: 2px solid rgba(140, 102, 120, 0.52);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 40%),
    repeating-linear-gradient(90deg, #f4bfd5 0 10px, #f6e6b4 10px 20px, #d5c2ef 20px 30px);
  box-shadow: 0 12px 16px rgba(95, 63, 74, 0.18);
}

.l4u-polaroid-theme-hotair::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 84%;
  width: 1.34rem;
  height: 0.72rem;
  transform: translateX(-50%);
  border-radius: 0.16rem;
  background: #d9a170;
  box-shadow: inset 0 0 0 1px rgba(112, 80, 58, 0.5);
}

.l4u-polaroid-theme-hotair-line {
  top: -0.26rem;
  width: 1.5px;
  height: 2.34rem;
  background: linear-gradient(180deg, rgba(121, 88, 98, 0.84) 0%, rgba(121, 88, 98, 0) 100%);
}

.l4u-polaroid-theme-hotair-line.is-left {
  left: calc(50% - 0.8rem);
}

.l4u-polaroid-theme-hotair-line.is-right {
  left: calc(50% + 0.8rem);
}

.l4u-polaroid-theme-kite {
  right: -0.72rem;
  top: -2.52rem;
  width: 2.28rem;
  height: 2.28rem;
  border: 2px solid rgba(136, 99, 117, 0.6);
  transform: rotate(45deg);
  box-shadow: 0 9px 12px rgba(95, 63, 74, 0.16);
}

.l4u-polaroid-theme-kite::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(248, 225, 171, 0.94) 0%, rgba(248, 225, 171, 0.94) 50%, rgba(213, 195, 240, 0.94) 50% 100%);
}

.l4u-polaroid-theme-kite-line {
  right: 0.54rem;
  top: -0.34rem;
  width: 1px;
  height: 2.84rem;
  transform: rotate(24deg);
  background: linear-gradient(180deg, rgba(130, 93, 111, 0.74) 0%, rgba(130, 93, 111, 0) 100%);
}

.l4u-polaroid-theme-cloud {
  left: 50%;
  top: -1.56rem;
  width: 4.12rem;
  height: 1.44rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.82);
  box-shadow: 0 8px 12px rgba(118, 88, 91, 0.14);
}

.l4u-polaroid-theme-cloud::before,
.l4u-polaroid-theme-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.l4u-polaroid-theme-cloud::before {
  width: 1.48rem;
  height: 1.22rem;
  left: 0.72rem;
  top: -0.56rem;
}

.l4u-polaroid-theme-cloud::after {
  width: 1.76rem;
  height: 1.42rem;
  right: 0.58rem;
  top: -0.64rem;
}

.l4u-photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4200;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.62rem;
  background: rgba(24, 15, 24, 0.84);
  backdrop-filter: blur(7px);
}

.l4u-photo-lightbox.is-open {
  animation: l4uLightboxIn 220ms ease;
}

@keyframes l4uLightboxIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.l4u-photo-lightbox-close {
  justify-self: end;
  margin-right: max(1rem, calc(50vw - 420px));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(35, 24, 33, 0.84);
  color: #fff3fa;
  padding: 0.4rem 0.9rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.l4u-photo-lightbox-frame {
  position: relative;
  width: min(64vw, 520px);
  aspect-ratio: 7 / 9;
  border-radius: 0.8rem;
  overflow: hidden;
  perspective: 1300px;
  background: transparent;
  border: 0;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  -webkit-tap-highlight-color: transparent;
}

.l4u-photo-lightbox-frame:active {
  cursor: grabbing;
}

.l4u-lightbox-photo {
  position: absolute;
  inset: 1.1rem 0.86rem 1.05rem;
  width: calc(100% - 1.72rem);
  height: calc(100% - 2.15rem);
  object-fit: cover;
  padding: 0.48rem 0.48rem 1.75rem;
  box-sizing: border-box;
  border-radius: 0.34rem;
  border: 1px solid rgba(118, 82, 95, 0.22);
  background: linear-gradient(180deg, #fff7fb 0%, #fff 100%);
  box-shadow: 0 22px 28px rgba(33, 19, 29, 0.28);
  transition: transform 330ms cubic-bezier(0.2, 0.8, 0.22, 1), opacity 330ms ease;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

body.l4u-lightbox-no-select,
body.l4u-lightbox-no-select * {
  user-select: none;
  -webkit-user-select: none;
}

.l4u-lightbox-photo-current {
  transform: translate3d(0, 0, 0) rotateY(0deg) scale(0.98);
  opacity: 1;
}

.l4u-lightbox-photo-incoming.from-right {
  transform: translate3d(44%, 0, 0) rotateY(-16deg) scale(0.86);
  opacity: 0;
}

.l4u-lightbox-photo-incoming.from-left {
  transform: translate3d(-44%, 0, 0) rotateY(16deg) scale(0.86);
  opacity: 0;
}

.l4u-lightbox-photo-incoming.is-active {
  transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
  opacity: 1;
}

.l4u-lightbox-photo-current.to-left {
  transform: translate3d(-42%, 0, 0) rotateY(15deg) scale(0.86);
  opacity: 0;
}

.l4u-lightbox-photo-current.to-right {
  transform: translate3d(42%, 0, 0) rotateY(-15deg) scale(0.86);
  opacity: 0;
}

.l4u-photo-lightbox-caption {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fceeff;
}

@media (max-width: 860px) {
  .l4u-letter-volume-card {
    padding: 0.94rem 0.9rem;
  }

  .l4u-heart-padlock {
    width: min(318px, 92vw);
    padding-top: 86px;
  }

  .l4u-heart-shell {
    width: 258px;
    height: 224px;
  }

  .l4u-heart-shape {
    width: 156px;
    height: 156px;
    top: 62px;
  }

  .l4u-heart-shape::before,
  .l4u-heart-shape::after {
    width: 156px;
    height: 156px;
  }

  .l4u-heart-shape::before {
    left: -78px;
  }

  .l4u-heart-shape::after {
    top: -78px;
  }

  .l4u-heart-inner {
    width: 220px;
    top: 98px;
  }

  .l4u-pin-dial {
    width: 42px;
  }

  .l4u-letter-paper-shell {
    width: min(84vw, 620px, calc(88vh * 0.7083333));
    aspect-ratio: 680 / 960;
  }

  .l4u-letter-paper {
    --l4u-letter-line-step: 1.72rem;
    padding: 0.84rem 0.98rem 0.66rem 1.12rem;
  }

  .l4u-letter-balloon-rig {
    right: -0.42rem;
    top: -10.2rem;
    width: min(8.6rem, 33vw);
  }

  .l4u-kite-group {
    left: -3.3rem;
    top: -4.8rem;
    width: 6.2rem;
  }

  .l4u-collage-stage {
    border-radius: 1rem;
  }

  .l4u-letter-script-block {
    padding: 0.2rem 0.34rem 0.16rem;
  }

  .l4u-letter-rose {
    left: -0.5rem;
    bottom: -2.22rem;
    width: 7.15rem;
    height: 9.4rem;
  }

  .l4u-polaroid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0.78rem;
  }

  .l4u-love-polaroid {
    width: 100%;
  }

  .l4u-polaroid-theme-balloon {
    top: -2.72rem;
    width: 1.98rem;
    height: 2.46rem;
  }

  .l4u-polaroid-theme-string {
    height: 2.24rem;
  }

  .l4u-polaroid-theme-hotair {
    top: -3.74rem;
    width: 2.9rem;
    height: 3.68rem;
  }

  .l4u-polaroid-theme-hotair-line {
    height: 2.06rem;
  }

  .l4u-polaroid-theme-kite {
    width: 2rem;
    height: 2rem;
    top: -2.24rem;
  }

  .l4u-polaroid-theme-kite-line {
    height: 2.42rem;
  }

  .l4u-polaroid-theme-cloud {
    width: 3.56rem;
    height: 1.28rem;
    top: -1.38rem;
  }

  .l4u-photo-lightbox-close {
    margin-right: 0.9rem;
  }

  .l4u-photo-lightbox-frame {
    width: min(86vw, 460px);
  }
}

.l4u-crt-experience.hidden {
  display: none !important;
}

.l4u-crt-experience {
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  padding: 0;
  display: grid;
  place-items: center;
}

.l4u-crt-room {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 24% 26%, rgba(80, 78, 71, 0.5) 0%, transparent 44%),
    radial-gradient(circle at 78% 74%, rgba(70, 68, 61, 0.44) 0%, transparent 42%),
    linear-gradient(150deg, #121416 0%, #1a1d20 45%, #101316 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}

.l4u-crt-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 2px,
    transparent 2px,
    transparent 9px
  );
  pointer-events: none;
}

.l4u-crt-room::after {
  content: "";
  position: absolute;
  right: -86px;
  top: -34px;
  width: 320px;
  height: 170px;
  background: linear-gradient(135deg, rgba(225, 225, 225, 0.2) 0%, rgba(126, 126, 126, 0.42) 45%, rgba(36, 38, 40, 0.64) 100%);
  transform: rotate(40deg);
  opacity: 0.64;
  pointer-events: none;
}

.l4u-crt-vinyl {
  position: absolute;
  left: -92px;
  bottom: -134px;
  width: min(360px, 36vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 34%, rgba(86, 114, 160, 0.4) 0%, rgba(30, 31, 38, 0) 52%),
    radial-gradient(circle at 68% 64%, rgba(160, 116, 101, 0.46) 0%, rgba(30, 31, 38, 0) 56%),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.09) 0 1px, rgba(13, 14, 16, 0.95) 2px 8px);
  border: 12px solid rgba(8, 10, 12, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 36px 48px rgba(0, 0, 0, 0.46);
  animation: l4uVinylSpin 9s linear infinite;
  transition: filter 280ms ease, opacity 280ms ease;
}

.l4u-crt-vinyl::before {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: #0f1216;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.l4u-crt-vinyl::after {
  content: "";
  position: absolute;
  inset: 40%;
  border-radius: 50%;
  background-image: var(--l4u-vinyl-label-image, radial-gradient(circle at 32% 32%, #f2d9ca 0%, #cf9c84 56%, #8a5f4b 100%));
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.24);
}

@keyframes l4uVinylSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.l4u-crt-tv {
  position: relative;
  z-index: 2;
  width: min(480px, 74vw);
  padding: 1rem 1rem 0.8rem;
  border-radius: 1.8rem;
  background: linear-gradient(160deg, #54504d 0%, #373431 54%, #2b2927 100%);
  border: 1px solid rgba(255, 255, 255, 0.19);
  box-shadow: 0 35px 54px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: filter 280ms ease, transform 280ms ease, opacity 280ms ease;
}

.l4u-crt-screen-shell {
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #101313 0%, #1f1d1c 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.6rem;
}

.l4u-crt-screen {
  position: relative;
  border-radius: 0.95rem;
  min-height: 278px;
  overflow: hidden;
  background: radial-gradient(circle at 40% 10%, rgba(255, 214, 170, 0.12) 0%, transparent 40%), #131313;
}

.l4u-crt-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
  z-index: 4;
}

.l4u-crt-slides-track {
  --l4u-slide-duration: 42s;
  --l4u-slide-shift: 50%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0 1.95rem;
  animation: l4uCrtSlide var(--l4u-slide-duration) linear infinite;
  will-change: transform;
}

.l4u-crt-slide-group {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-right: 1.75rem;
}

@keyframes l4uCrtSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--l4u-slide-shift)));
  }
}

.l4u-crt-polaroid {
  --l4u-polaroid-tilt: -2deg;
  --l4u-polaroid-scale: 1;
  --l4u-polaroid-focus: 0;
  position: relative;
  margin: 0;
  width: 182px;
  border-radius: 0.38rem;
  padding: 0.52rem 0.52rem 1.58rem;
  background: #f4eee5;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.5);
  transform: rotate(var(--l4u-polaroid-tilt)) scale(var(--l4u-polaroid-scale));
  transform-origin: center center;
  transition: transform 140ms linear, box-shadow 150ms linear;
}

.l4u-crt-polaroid::after {
  content: "";
  position: absolute;
  inset: 0.49rem 0.49rem 1.52rem;
  border-radius: 0.17rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(20, 15, 12, 0.24) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 2px, rgba(0, 0, 0, 0.04) 2px 4px);
  opacity: 0.62;
  pointer-events: none;
}

.l4u-crt-polaroid:nth-child(odd) {
  margin-top: 0.18rem;
}

.l4u-crt-polaroid:nth-child(even) {
  margin-top: -0.18rem;
}

.l4u-crt-polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  filter: sepia(0.52) grayscale(0.3) contrast(1.2) saturate(0.64) brightness(0.93);
  border-radius: 0.2rem;
}

.l4u-crt-polaroid.is-center {
  box-shadow: 0 0 0 1px rgba(255, 241, 218, 0.34), 0 15px 28px rgba(0, 0, 0, 0.62);
}

.l4u-crt-scanlines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 0 1px, rgba(0, 0, 0, 0.24) 2px 4px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 22%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.42;
  pointer-events: none;
  z-index: 5;
  animation: l4uScanDrift 140ms linear infinite;
}

@keyframes l4uScanDrift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(3px);
  }
}

.l4u-crt-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 58% 20%, rgba(255, 240, 212, 0.35) 0%, rgba(255, 240, 212, 0) 48%);
  pointer-events: none;
  z-index: 4;
}

.l4u-crt-static-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 58%, rgba(255, 255, 255, 0.36) 0%, rgba(220, 220, 220, 0.08) 48%, rgba(20, 20, 20, 0.46) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 2px, rgba(40, 40, 40, 0.3) 2px 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, rgba(0, 0, 0, 0.18) 1px 3px);
  mix-blend-mode: screen;
  z-index: 6;
}

.l4u-crt-static-layer.is-active {
  opacity: 1;
  animation: l4uStaticFlicker 150ms steps(2) infinite;
}

@keyframes l4uStaticFlicker {
  0% {
    transform: translate3d(0, 0, 0);
    filter: contrast(1.1) brightness(1.06);
  }

  50% {
    transform: translate3d(1px, -1px, 0);
    filter: contrast(1.34) brightness(1.2);
  }

  100% {
    transform: translate3d(-1px, 1px, 0);
    filter: contrast(1.18) brightness(1.09);
  }
}

.l4u-crt-controls {
  margin-top: 0.72rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(19, 17, 16, 0.45);
  padding: 0.58rem 0.62rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  transition: opacity 280ms ease;
}

.l4u-crt-display-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.l4u-crt-led {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: #ffd487;
  box-shadow: 0 0 8px rgba(255, 214, 133, 0.82);
}

.l4u-crt-knob-row {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.l4u-crt-knob {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #262626 0%, #0f1011 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.58);
}

.l4u-crt-music-meter {
  flex: 1;
  min-width: 74px;
  max-width: 118px;
  height: 1.25rem;
  padding: 0.14rem 0.22rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(24, 32, 19, 0.92) 0%, rgba(10, 16, 10, 0.92) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 4px, transparent 4px 8px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.11rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.l4u-crt-meter-bar {
  flex: 1;
  min-width: 3px;
  height: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, #fef8cf 0%, #7fbb65 34%, #43672f 100%);
  box-shadow: 0 0 7px rgba(127, 187, 101, 0.5);
  transform-origin: center bottom;
  animation: l4uMeterDance 840ms ease-in-out infinite;
}

.l4u-crt-meter-bar:nth-child(2) {
  animation-delay: 0.08s;
}

.l4u-crt-meter-bar:nth-child(3) {
  animation-delay: 0.14s;
}

.l4u-crt-meter-bar:nth-child(4) {
  animation-delay: 0.22s;
}

.l4u-crt-meter-bar:nth-child(5) {
  animation-delay: 0.3s;
}

.l4u-crt-meter-bar:nth-child(6) {
  animation-delay: 0.19s;
}

.l4u-crt-meter-bar:nth-child(7) {
  animation-delay: 0.27s;
}

.l4u-crt-meter-bar:nth-child(8) {
  animation-delay: 0.35s;
}

@keyframes l4uMeterDance {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.55;
  }

  42% {
    transform: scaleY(1);
    opacity: 0.95;
  }

  76% {
    transform: scaleY(0.62);
    opacity: 0.72;
  }
}

.l4u-crt-meta-row {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: opacity 280ms ease;
}

.l4u-crt-title {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ddd1c0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l4u-crt-date {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a7a29b;
  flex-shrink: 0;
}

.l4u-crt-gate-modal {
  position: absolute;
  inset: 0;
  z-index: 11;
  display: grid;
  place-items: center;
  background: rgba(8, 9, 11, 0.44);
  backdrop-filter: blur(6px);
  transition: opacity 200ms ease;
}

.l4u-crt-gate-modal.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.l4u-crt-gate-card {
  width: min(450px, 92vw);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(13, 14, 17, 0.86);
  color: #efe4d5;
  padding: 1rem 1.05rem;
  text-align: center;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.52);
}

.l4u-crt-gate-kicker {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dfb6a2;
}

.l4u-crt-gate-title {
  margin: 0.4rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  color: #fff3e4;
}

.l4u-crt-gate-text {
  margin: 0.5rem auto 0;
  max-width: 30rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #d8c7b8;
}

.l4u-crt-gate-button {
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 245, 230, 0.96);
  color: #34261f;
  padding: 0.5rem 1.14rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.l4u-crt-room.is-gated .l4u-crt-tv,
.l4u-crt-room.is-gated .l4u-crt-vinyl,
.l4u-crt-room.is-gated .l4u-crt-playback-button {
  filter: blur(4px) saturate(0.88);
}

.l4u-crt-room.is-intro-obscured .l4u-crt-tv,
.l4u-crt-room.is-intro-obscured .l4u-crt-vinyl,
.l4u-crt-room.is-intro-obscured .l4u-crt-playback-button {
  filter: blur(11px) saturate(0.4) brightness(0.52);
}

.l4u-crt-room.is-intro-obscured .l4u-crt-controls,
.l4u-crt-room.is-intro-obscured .l4u-crt-meta-row {
  opacity: 0.12;
}

.l4u-viewer-loading {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(245, 236, 222, 0.15) 0%, rgba(21, 24, 27, 0.08) 44%),
    linear-gradient(160deg, #0f1215 0%, #191d21 52%, #0d1013 100%);
  transition: opacity 220ms ease;
}

.l4u-viewer-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.l4u-viewer-loading-inner {
  display: grid;
  justify-items: center;
  gap: 0.78rem;
}

.l4u-viewer-loading-icon {
  width: clamp(72px, 14vw, 108px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
  animation: l4uViewerFloat 2.2s ease-in-out infinite;
}

@keyframes l4uViewerFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.l4u-viewer-loading-text {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ece0d0;
}

.l4u-viewer-loading-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.l4u-viewer-loading-dots span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #f0e6d9;
  animation: l4uViewerDotPulse 1.05s ease-in-out infinite;
}

.l4u-viewer-loading-dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.l4u-viewer-loading-dots span:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes l4uViewerDotPulse {
  0%,
  80%,
  100% {
    transform: scale(0.5);
    opacity: 0.38;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.l4u-crt-warning {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 8;
  width: auto;
  border: 0;
  background: transparent;
  color: #e8ded0;
  text-align: center;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 0.68rem;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.l4u-crt-warning.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.96);
}

.l4u-crt-countdown-dial {
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  place-items: center;
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.5);
}

.l4u-crt-countdown-ring {
  --l4u-count-progress: 0;
  position: relative;
  width: 102px;
  height: 102px;
  border-radius: 999px;
  background: conic-gradient(#ffffff calc(var(--l4u-count-progress) * 1turn), rgba(255, 255, 255, 0.16) 0turn);
  display: grid;
  place-items: center;
}

.l4u-crt-countdown-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.l4u-crt-countdown-number {
  position: relative;
  z-index: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #111315;
}

.l4u-crt-warning-text {
  margin: 0;
  max-width: 18rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #f1e5d3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.l4u-crt-playback-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(160deg, #231e19 0%, #15110d 100%);
  color: #f2e4ce;
  width: 2.55rem;
  height: 1.58rem;
  padding: 0;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 140ms ease, filter 140ms ease;
}

.l4u-crt-playback-button:active {
  transform: translateY(1px);
}

.l4u-crt-playback-button:focus-visible {
  outline: 2px solid rgba(255, 248, 221, 0.85);
  outline-offset: 2px;
}

.l4u-crt-room.is-paused .l4u-crt-playback-button {
  color: #cabba6;
  filter: brightness(0.9);
}

.l4u-crt-music-notes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.l4u-crt-note {
  --l4u-note-x: 40vw;
  --l4u-note-y: -35vh;
  --l4u-note-delay: 0s;
  --l4u-note-duration: 4.2s;
  --l4u-note-size: 1.35rem;
  --l4u-note-rotate-start: -8deg;
  --l4u-note-rotate-end: 16deg;
  --l4u-note-scale-start: 0.6;
  --l4u-note-scale-end: 1.26;
  --l4u-note-peak-opacity: 0.8;
  position: absolute;
  left: 56vw;
  top: 48vh;
  font-size: var(--l4u-note-size);
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.9);
  text-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(var(--l4u-note-scale-start)) rotate(var(--l4u-note-rotate-start));
  animation: l4uNoteFly var(--l4u-note-duration) linear infinite;
  animation-delay: var(--l4u-note-delay);
}

@keyframes l4uNoteFly {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(var(--l4u-note-scale-start)) rotate(var(--l4u-note-rotate-start));
  }

  13% {
    opacity: var(--l4u-note-peak-opacity);
  }

  76% {
    opacity: calc(var(--l4u-note-peak-opacity) * 0.92);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--l4u-note-x), var(--l4u-note-y), 0) scale(var(--l4u-note-scale-end)) rotate(var(--l4u-note-rotate-end));
  }
}

.l4u-crt-audio-host {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.l4u-viewer-crt-mode [data-l4u-nav],
.l4u-viewer-crt-mode [data-l4u-footer],
.l4u-viewer-crt-mode .l4u-background {
  display: none !important;
}

.l4u-viewer-crt-mode main {
  padding-bottom: 0;
}

.l4u-crt-room.is-paused .l4u-crt-slides-track,
.l4u-crt-room.is-paused .l4u-crt-vinyl,
.l4u-crt-room.is-paused .l4u-crt-meter-bar,
.l4u-crt-room.is-paused .l4u-crt-note {
  animation-play-state: paused;
}

.l4u-crt-room.is-booting .l4u-crt-slides-track {
  opacity: 0;
}

@media (max-width: 860px) {
  .l4u-crt-room {
    min-height: 100vh;
  }

  .l4u-crt-tv {
    width: min(390px, 90vw);
    padding: 0.82rem 0.82rem 0.7rem;
  }

  .l4u-crt-screen {
    min-height: 236px;
  }

  .l4u-crt-polaroid {
    width: 144px;
  }

  .l4u-crt-polaroid img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .l4u-crt-slide-group {
    gap: 1.22rem;
    padding-right: 1.22rem;
  }

  .l4u-crt-vinyl {
    width: 232px;
    left: -78px;
    bottom: -96px;
  }

  .l4u-crt-warning {
    transform: translate(-50%, -50%);
  }

  .l4u-crt-gate-card {
    width: min(390px, 92vw);
    padding: 0.92rem 0.9rem;
  }

  .l4u-crt-countdown-dial {
    width: 108px;
    height: 108px;
  }

  .l4u-crt-countdown-ring {
    width: 86px;
    height: 86px;
  }

  .l4u-crt-countdown-number {
    font-size: 1.55rem;
  }

  .l4u-crt-music-meter {
    min-width: 60px;
    max-width: 90px;
  }

  .l4u-crt-playback-button {
    width: 2.2rem;
    height: 1.38rem;
    font-size: 0.45rem;
  }
}

.l4u-cost-pill {
  margin-left: auto;
  min-width: 11.2rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.l4u-create-form-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.l4u-upload-dropzone {
  border: 1px dashed rgba(120, 85, 94, 0.32);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.05rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.l4u-upload-dropzone:hover,
.l4u-upload-dropzone:focus-visible,
.l4u-upload-dropzone.is-dragging {
  border-color: rgba(120, 85, 94, 0.7);
  box-shadow: 0 10px 18px rgba(26, 28, 29, 0.08);
  transform: translateY(-1px);
}

.l4u-upload-dropzone.is-busy {
  opacity: 0.72;
  pointer-events: none;
}

.l4u-upload-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.82);
  padding: 0.55rem 0.7rem;
}

.l4u-upload-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.74rem;
  color: #5e4f59;
}

.l4u-upload-status {
  font-size: 0.7rem;
  color: #7f6a72;
}

.l4u-photo-thumb-rich {
  position: relative;
  box-shadow: 0 10px 18px rgba(26, 28, 29, 0.12);
}

.l4u-photo-remove {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 0;
  background: rgba(26, 28, 29, 0.68);
  color: #fff;
  cursor: pointer;
}

.l4u-photo-meta {
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.3rem;
  margin: 0;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: rgba(26, 28, 29, 0.56);
}

.l4u-letter-preview-shell {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.l4u-letter-sheet {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 45px rgba(26, 28, 29, 0.11);
}

.l4u-preview-photo-shell {
  height: 11.3rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(129, 116, 118, 0.2);
  background: rgba(244, 243, 244, 0.85);
  overflow: hidden;
}

.l4u-modal-card-credits,
.l4u-modal-card-uploading,
.l4u-modal-card-published {
  width: min(680px, calc(100vw - 2rem));
  border-radius: 2rem;
  padding: 2rem;
}

.l4u-modal-card-success {
  width: min(500px, calc(100vw - 2rem));
  text-align: center;
}

.l4u-modal-card-credits {
  width: min(520px, calc(100vw - 2rem));
  text-align: center;
}

.l4u-modal-card-uploading {
  width: min(600px, calc(100vw - 2rem));
  text-align: center;
}

.l4u-modal-card-published {
  width: min(760px, calc(100vw - 2rem));
  max-height: min(92vh, 820px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.l4u-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 999px;
  background: rgba(255, 209, 220, 0.92);
  color: #7a4f5a;
  font-size: 1.5rem;
  font-weight: 800;
}

.l4u-modal-icon-centered {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

#publishSuccessTitle {
  font-size: clamp(2.1rem, 8vw, 4.25rem);
  line-height: 1.05;
}

#publishSuccessSubtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

#publishShareLink {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere;
}

#copyShareLinkButton {
  flex-shrink: 0;
}

.l4u-publish-quick-share {
  margin-top: 0.35rem;
}

.l4u-publish-quick-share-title {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7c83;
}

.l4u-publish-quick-share-grid {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.l4u-quick-share-btn {
  --share-accent: #7a5f86;
  border: 1px solid rgba(120, 85, 94, 0.2);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  color: #5f4a52;
  display: grid;
  justify-items: center;
  gap: 0.22rem;
  padding: 0.5rem 0.3rem 0.46rem;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.l4u-quick-share-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(120, 85, 94, 0.35);
  box-shadow: 0 10px 16px rgba(26, 28, 29, 0.08);
}

.l4u-quick-share-btn:focus-visible {
  outline: 2px solid rgba(120, 85, 94, 0.42);
  outline-offset: 2px;
}

.l4u-quick-share-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--share-accent);
}

.l4u-quick-share-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.l4u-quick-share-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.l4u-quick-share-btn[data-quick-share="messenger"] {
  --share-accent: #0084ff;
}

.l4u-quick-share-btn[data-quick-share="facebook"] {
  --share-accent: #1877f2;
}

.l4u-quick-share-btn[data-quick-share="email"] {
  --share-accent: #ea4335;
}

.l4u-quick-share-btn[data-quick-share="tiktok"] {
  --share-accent: #111111;
}

.l4u-quick-share-btn[data-quick-share="message"] {
  --share-accent: #4f7df2;
}

.l4u-quick-share-btn[data-quick-share="whatsapp"] {
  --share-accent: #25d366;
}

.l4u-quick-share-btn[data-quick-share="telegram"] {
  --share-accent: #2aabee;
}

.l4u-quick-share-btn[data-quick-share="more"] {
  --share-accent: #7a5f86;
}

#createNewLetterFromSuccess {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.l4u-task-button {
  border: 0;
  color: #6b5578;
  background: linear-gradient(135deg, #dfcbff 0%, #d5c6ff 100%);
}

.l4u-success-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(129, 116, 118, 0.2);
  padding: 0.65rem 0.95rem;
  font-weight: 700;
  color: #4a4147;
}

.l4u-success-action span {
  font-size: 1.2rem;
  line-height: 1;
}

.l4u-shop-balance-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 85, 94, 0.24);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.46rem 0.92rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #745f67;
}

.l4u-shop-balance-pill span {
  color: #4f3c43;
}

.l4u-shop-stage {
  border-radius: 2.2rem;
  border: 1px solid transparent;
  background: transparent;
  padding: 1rem;
}

.l4u-shop-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l4u-shop-card {
  position: relative;
  border-radius: 2rem;
  border: 1px solid rgba(120, 85, 94, 0.12);
  background: rgba(255, 255, 255, 0.94);
  padding: 1.45rem 1.4rem 1.3rem;
  box-shadow: 0 20px 32px rgba(26, 28, 29, 0.08);
  display: flex;
  flex-direction: column;
}

.l4u-shop-card-popular {
  border: 2px solid rgba(120, 85, 94, 0.72);
  box-shadow: 0 24px 38px rgba(120, 85, 94, 0.16);
}

.l4u-shop-badge {
  position: absolute;
  left: 50%;
  top: -0.62rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #7b5b63;
  color: #fff;
  padding: 0.22rem 0.78rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.l4u-shop-tier {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7b82;
}

.l4u-shop-name {
  margin: 0.42rem 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  color: #29292d;
}

.l4u-shop-price {
  margin: 1rem 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1f2127;
}

.l4u-shop-note {
  margin: 0.28rem 0 0;
  font-size: 0.86rem;
  color: #8d8087;
}

.l4u-shop-feature-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.66rem;
}

.l4u-shop-feature-item {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  margin: 0;
  color: #5d5257;
  font-size: 0.95rem;
  font-weight: 600;
}

.l4u-shop-feature-item::before {
  content: "\2713";
  width: 1.03rem;
  height: 1.03rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(120, 85, 94, 0.16);
  color: #6f525b;
  font-size: 0.68rem;
  font-weight: 900;
}

.l4u-shop-feature-item.is-disabled {
  color: #b5adb1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.l4u-shop-feature-item.is-disabled::before {
  content: "\2715";
  background: rgba(136, 128, 132, 0.14);
  color: #9f9498;
}

.l4u-shop-button {
  border: 0;
  border-radius: 999px;
  min-height: 2.65rem;
  padding: 0.6rem 1rem;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.l4u-shop-button:hover {
  transform: translateY(-1px);
  filter: saturate(1.03);
}

.l4u-shop-button-starter {
  background: #eceaec;
  color: #4f4d52;
}

.l4u-shop-button-value {
  background: linear-gradient(135deg, #a57b88 0%, #e2b9c7 100%);
  color: #fff;
  box-shadow: 0 11px 20px rgba(165, 123, 136, 0.28);
}

.l4u-shop-button-power {
  background: #d6c6ee;
  color: #594f69;
}

.l4u-shop-payments-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a8e93;
}

.l4u-shop-payments-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.l4u-shop-payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.36rem 0.76rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #7f757b;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(120, 85, 94, 0.16);
}

.l4u-shop-payment-logo {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.l4u-landing-hero {
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.l4u-gradient-word {
  background: linear-gradient(92deg, #6d4953 0%, #b58295 45%, #e0afbe 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.l4u-gradient-word-morph {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 780px);
  min-width: 0;
  min-height: clamp(4rem, 11vw, 6.8rem);
  margin-left: auto;
  margin-right: auto;
}

.l4u-gradient-word-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.l4u-gradient-word-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.l4u-gradient-word-morph.is-ready .l4u-gradient-word-fallback {
  opacity: 0;
}

.l4u-gradient-word-morph.is-mobile-typing .l4u-gradient-word-canvas {
  display: none;
}

.l4u-gradient-word-morph.is-mobile-typing .l4u-gradient-word-fallback {
  position: relative;
  inset: auto;
  display: inline-flex;
  min-height: 1.06em;
  align-items: center;
  justify-content: center;
  opacity: 1;
  white-space: nowrap;
  color: #b58295;
  background: linear-gradient(92deg, #6d4953 0%, #b58295 45%, #e0afbe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.l4u-gradient-word-morph.is-mobile-typing .l4u-gradient-word-fallback::after {
  content: "|";
  margin-left: 0.08em;
  color: rgba(128, 88, 103, 0.82);
  animation: l4uTypingCaretBlink 760ms steps(1, end) infinite;
}

@keyframes l4uTypingCaretBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.l4u-marquee-shell {
  position: relative;
  overflow: hidden;
  --l4u-marquee-edge-fade: clamp(2.2rem, 9vw, 6.8rem);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--l4u-marquee-edge-fade),
    #000 calc(100% - var(--l4u-marquee-edge-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--l4u-marquee-edge-fade),
    #000 calc(100% - var(--l4u-marquee-edge-fade)),
    transparent 100%
  );
}

.l4u-marquee-loop {
  display: inline-flex;
  align-items: stretch;
  width: max-content;
  animation: l4uLeftToRight 26s linear infinite;
  will-change: transform;
}

.l4u-marquee-shell:hover .l4u-marquee-loop,
.l4u-marquee-shell:focus-within .l4u-marquee-loop {
  animation-play-state: paused;
}

.l4u-marquee-track {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: stretch;
  gap: clamp(0.6rem, 1.8vw, 1.05rem);
  padding: 0.25rem 0.86rem;
}

.l4u-marquee-item {
  --l4u-marquee-grad-a: rgba(247, 173, 198, 0.34);
  --l4u-marquee-grad-b: rgba(252, 216, 170, 0.31);
  --l4u-marquee-accent: rgba(177, 106, 135, 0.22);
  --l4u-marquee-icon-color: rgba(136, 86, 104, 0.8);
  --l4u-marquee-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 21s-6.7-4.35-9.2-7.95C1.1 10.48 2.23 6.9 5.42 5.89c2.08-.66 4.32.08 5.58 1.84 1.26-1.76 3.5-2.5 5.58-1.84 3.19 1.01 4.32 4.59 2.62 7.16C18.7 16.65 12 21 12 21z'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
  min-width: clamp(11.2rem, 22vw, 13.9rem);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 1rem;
  border: 1px solid rgba(120, 85, 94, 0.2);
  background:
    linear-gradient(132deg, var(--l4u-marquee-grad-a) 0%, var(--l4u-marquee-grad-b) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.66) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(59, 41, 53, 0.08);
  padding: 0.58rem 0.9rem 0.64rem 2.94rem;
}

.l4u-marquee-item::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 50%;
  width: 2.62rem;
  height: 2.62rem;
  transform: translateY(-50%);
  background-color: var(--l4u-marquee-icon-color);
  -webkit-mask-image: var(--l4u-marquee-icon);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: var(--l4u-marquee-icon);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  opacity: 0.8;
  pointer-events: none;
}

.l4u-marquee-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, transparent 0%, var(--l4u-marquee-accent) 120%);
  pointer-events: none;
}

.l4u-marquee-track .l4u-marquee-item:nth-child(6n + 1) {
  --l4u-marquee-grad-a: rgba(249, 169, 196, 0.39);
  --l4u-marquee-grad-b: rgba(253, 217, 177, 0.33);
  --l4u-marquee-accent: rgba(190, 106, 137, 0.26);
  --l4u-marquee-icon-color: rgba(155, 86, 114, 0.8);
  --l4u-marquee-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 21s-6.7-4.35-9.2-7.95C1.1 10.48 2.23 6.9 5.42 5.89c2.08-.66 4.32.08 5.58 1.84 1.26-1.76 3.5-2.5 5.58-1.84 3.19 1.01 4.32 4.59 2.62 7.16C18.7 16.65 12 21 12 21z'/%3E%3C/svg%3E");
}

.l4u-marquee-track .l4u-marquee-item:nth-child(6n + 2) {
  --l4u-marquee-grad-a: rgba(173, 203, 255, 0.38);
  --l4u-marquee-grad-b: rgba(195, 234, 236, 0.31);
  --l4u-marquee-accent: rgba(104, 137, 177, 0.24);
  --l4u-marquee-icon-color: rgba(79, 112, 151, 0.8);
  --l4u-marquee-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-5v2h2a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h2v-2H5a2 2 0 0 1-2-2V5z'/%3E%3C/svg%3E");
}

.l4u-marquee-track .l4u-marquee-item:nth-child(6n + 3) {
  --l4u-marquee-grad-a: rgba(190, 179, 255, 0.36);
  --l4u-marquee-grad-b: rgba(244, 201, 239, 0.32);
  --l4u-marquee-accent: rgba(133, 112, 173, 0.24);
  --l4u-marquee-icon-color: rgba(109, 91, 149, 0.8);
  --l4u-marquee-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 10V8a5 5 0 0 1 10 0v2h1a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h1zm2 0h6V8a3 3 0 0 0-6 0v2z'/%3E%3C/svg%3E");
}

.l4u-marquee-track .l4u-marquee-item:nth-child(6n + 4) {
  --l4u-marquee-grad-a: rgba(255, 186, 170, 0.36);
  --l4u-marquee-grad-b: rgba(255, 222, 171, 0.34);
  --l4u-marquee-accent: rgba(187, 120, 94, 0.24);
  --l4u-marquee-icon-color: rgba(162, 101, 78, 0.8);
  --l4u-marquee-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2a10 10 0 1 0 .001 20.001A10 10 0 0 0 12 2zm-1.5 6.75 5.25 3.25-5.25 3.25V8.75z'/%3E%3C/svg%3E");
}

.l4u-marquee-track .l4u-marquee-item:nth-child(6n + 5) {
  --l4u-marquee-grad-a: rgba(170, 220, 199, 0.37);
  --l4u-marquee-grad-b: rgba(193, 232, 251, 0.31);
  --l4u-marquee-accent: rgba(95, 145, 133, 0.24);
  --l4u-marquee-icon-color: rgba(72, 121, 109, 0.8);
  --l4u-marquee-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7.5 18a4.5 4.5 0 0 1-.7-8.95A5.8 5.8 0 0 1 18 8.4a4.2 4.2 0 1 1 .5 8.4H7.5z'/%3E%3C/svg%3E");
}

.l4u-marquee-track .l4u-marquee-item:nth-child(6n + 6) {
  --l4u-marquee-grad-a: rgba(255, 209, 181, 0.35);
  --l4u-marquee-grad-b: rgba(255, 195, 215, 0.34);
  --l4u-marquee-accent: rgba(166, 106, 123, 0.24);
  --l4u-marquee-icon-color: rgba(141, 87, 106, 0.8);
  --l4u-marquee-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M10.59 13.41a1.5 1.5 0 0 0 2.12 0l2.88-2.88a3 3 0 1 0-4.24-4.24L9.94 7.7a1 1 0 1 1-1.41-1.41l1.41-1.42a5 5 0 1 1 7.07 7.07l-2.88 2.88a3.5 3.5 0 0 1-4.95 0 1 1 0 0 1 1.41-1.41zm2.82-2.82a1.5 1.5 0 0 0-2.12 0L8.4 13.48a3 3 0 1 0 4.24 4.24l1.42-1.41a1 1 0 1 1 1.41 1.41l-1.41 1.42a5 5 0 1 1-7.07-7.07l2.88-2.88a3.5 3.5 0 0 1 4.95 0 1 1 0 0 1-1.41 1.41z'/%3E%3C/svg%3E");
}

.l4u-marquee-symbol {
  display: none;
}

.l4u-marquee-symbol svg {
  display: none;
}

.l4u-marquee-label {
  position: relative;
  z-index: 1;
  text-align: left;
  text-transform: uppercase;
  font-size: clamp(0.63rem, 1.16vw, 0.77rem);
  font-weight: 800;
  letter-spacing: 0.077em;
  line-height: 1.26;
  color: #684b58;
  text-wrap: balance;
}

@keyframes l4uLeftToRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.l4u-template-card {
  background: transparent;
  border: 1px solid rgba(120, 85, 94, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.l4u-template-card[data-template-card] {
  cursor: pointer;
}

.l4u-template-card[data-template-card]:focus-visible {
  outline: 2px solid rgba(120, 85, 94, 0.42);
  outline-offset: 3px;
}

.l4u-template-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(26, 28, 29, 0.08);
  border-color: rgba(120, 85, 94, 0.3);
}

.l4u-admin-note,
.l4u-admin-denied {
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.74);
  padding: 1rem 1.15rem;
  color: #75686d;
}

.l4u-admin-denied {
  max-width: 34rem;
}

.l4u-admin-stat-card {
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 10px 20px rgba(26, 28, 29, 0.06);
  padding: 1rem;
}

.l4u-admin-stat-label {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #918389;
}

.l4u-admin-stat-value {
  margin: 0.38rem 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.05;
  font-weight: 800;
  color: #45353b;
}

.l4u-admin-collapsible-card,
.l4u-admin-chart-card,
.l4u-admin-table-card {
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 12px 24px rgba(26, 28, 29, 0.06);
  padding: 1rem;
}

.l4u-admin-collapsible-toggle {
  width: 100%;
  border: 1px solid rgba(120, 85, 94, 0.16);
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(249, 241, 244, 0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 0.95rem;
  cursor: pointer;
}

.l4u-admin-collapsible-toggle.is-collapsed {
  border-style: dashed;
}

.l4u-admin-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(120, 85, 94, 0.14);
  color: #5c4950;
}

.l4u-admin-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(120, 85, 94, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.3rem;
}

.l4u-admin-tab-button {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #7a676e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.46rem 0.95rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.l4u-admin-tab-button.is-active {
  background: linear-gradient(145deg, #8f6976 0%, #73545f 100%);
  color: #fff;
}

.l4u-admin-chart {
  min-height: 13rem;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  border: 1px solid rgba(120, 85, 94, 0.14);
  border-radius: 1rem;
  padding: 0.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 241, 243, 0.75) 100%);
}

.l4u-admin-chart-col {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
}

.l4u-admin-chart-rail {
  width: 100%;
  height: 8.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(120, 85, 94, 0.06), rgba(120, 85, 94, 0.14));
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 0.35rem 0.25rem;
}

.l4u-admin-chart-bar {
  width: min(100%, 1.45rem);
  border-radius: 999px 999px 0.48rem 0.48rem;
  background: linear-gradient(180deg, #9f6f7e 0%, #73535d 100%);
  box-shadow: 0 8px 15px rgba(115, 83, 93, 0.25);
  transition: height 220ms ease;
  position: relative;
}

.l4u-admin-chart-bar::after {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.l4u-admin-chart-bar.is-pages {
  background: linear-gradient(180deg, #ab90d3 0%, #73628f 100%);
}

.l4u-admin-chart-label {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f8087;
}

.l4u-admin-chart-value {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  color: #54464b;
}

.l4u-admin-table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(120, 85, 94, 0.14);
}

.l4u-admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: rgba(255, 255, 255, 0.7);
}

.l4u-admin-table th,
.l4u-admin-table td {
  text-align: left;
  padding: 0.7rem 0.72rem;
  border-bottom: 1px solid rgba(120, 85, 94, 0.12);
  vertical-align: top;
  font-size: 0.77rem;
  color: #594c51;
}

.l4u-admin-table th {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b7d83;
  background: rgba(255, 255, 255, 0.82);
}

.l4u-admin-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.7rem;
}

.l4u-admin-credit-actions,
.l4u-admin-page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.l4u-admin-credit-input {
  width: 4.6rem;
  border: 1px solid rgba(120, 85, 94, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #47383e;
  padding: 0.34rem 0.55rem;
}

.l4u-admin-mini-btn {
  border: 1px solid rgba(120, 85, 94, 0.26);
  border-radius: 999px;
  background: #fff;
  color: #694f57;
  padding: 0.3rem 0.6rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.l4u-admin-mini-btn.is-danger {
  border-color: rgba(202, 94, 107, 0.4);
  color: #b84d5a;
  background: #fff7f8;
}

.l4u-admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.l4u-admin-modal[hidden] {
  display: none;
}

.l4u-admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 29, 0.46);
  backdrop-filter: blur(3px);
}

.l4u-admin-modal-card {
  position: relative;
  width: min(900px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 52px rgba(26, 28, 29, 0.24);
  padding: 1.3rem;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
}

.l4u-admin-modal.is-open .l4u-admin-modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.l4u-settings-shell {
  max-width: 920px;
}

.l4u-settings-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.1rem, 5vw, 2.8rem);
  line-height: 1.04;
  font-weight: 800;
  color: #202126;
}

.l4u-settings-subtitle {
  margin: 0.45rem 0 0;
  font-size: 1rem;
  color: #87808a;
}

.l4u-settings-form {
  display: grid;
  gap: 1.25rem;
}

.l4u-settings-profile-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.85rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem 1.1rem;
}

.l4u-settings-mini-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #92858b;
}

.l4u-settings-name-input {
  margin-top: 0.35rem;
  width: min(360px, 80vw);
  border: 1px solid rgba(120, 85, 94, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.65rem 1rem;
  color: #41363a;
  font-size: 0.92rem;
}

.l4u-settings-name-input:focus {
  outline: 2px solid rgba(120, 85, 94, 0.22);
  outline-offset: 1px;
}

.l4u-settings-uid-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.l4u-settings-uid-value {
  margin: 0;
  border-radius: 0.85rem;
  border: 1px solid rgba(120, 85, 94, 0.2);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.38rem 0.62rem;
  color: #5a4a50;
  font-size: 0.78rem;
  font-family: "JetBrains Mono", "Cascadia Code", "Fira Code", Consolas, "Courier New", monospace;
  max-width: min(360px, 82vw);
  overflow-wrap: anywhere;
  text-align: right;
}

.l4u-settings-uid-copy {
  border: 1px solid rgba(120, 85, 94, 0.23);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #664f56;
  padding: 0.3rem 0.65rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.l4u-settings-uid-copy:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.l4u-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.l4u-settings-card {
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 30px rgba(26, 28, 29, 0.06);
  padding: 1.35rem 1.3rem 1.25rem;
}

.l4u-settings-card-head {
  display: flex;
  align-items: center;
  gap: 0.66rem;
}

.l4u-settings-icon-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.l4u-settings-icon-badge .material-symbols-outlined {
  font-size: 1.1rem;
  font-variation-settings: "FILL" 1, "wght" 600, "opsz" 24;
}

.l4u-settings-icon-notify {
  color: #7a535f;
  background: #f6d9e3;
}

.l4u-settings-icon-appearance {
  color: #6c5d88;
  background: #e3dcf7;
}

.l4u-settings-card-title {
  margin: 0;
  font-size: 1.7rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #34343a;
}

.l4u-settings-row {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.l4u-settings-row-title {
  display: block;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #34343a;
}

.l4u-settings-row-subtitle {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a39aa2;
}

.l4u-switch {
  position: relative;
  width: 2.55rem;
  height: 1.45rem;
  display: inline-flex;
  flex-shrink: 0;
}

.l4u-switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

.l4u-switch-track {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #d9d6d9;
  border: 1px solid #d3d0d4;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.l4u-switch-track::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(26, 28, 29, 0.2);
  transition: transform 180ms ease;
}

.l4u-switch input:checked + .l4u-switch-track::after {
  transform: translateX(1.05rem);
}

.l4u-switch-rose input:checked + .l4u-switch-track {
  background: #7d5b66;
  border-color: #7d5b66;
}

.l4u-switch-neutral input:checked + .l4u-switch-track {
  background: #91828a;
  border-color: #91828a;
}

.l4u-switch-lilac input:checked + .l4u-switch-track {
  background: #d4bdf0;
  border-color: #d4bdf0;
}

.l4u-switch input:disabled {
  cursor: not-allowed;
}

.l4u-switch input:disabled + .l4u-switch-track {
  opacity: 0.68;
}

.l4u-settings-account {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem 1.15rem;
}

.l4u-settings-account-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #2f3138;
}

.l4u-settings-account-subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.94rem;
  color: #8f8790;
}

.l4u-settings-account-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.l4u-settings-ghost-button,
.l4u-settings-danger-button {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.l4u-settings-ghost-button {
  border: 1px solid rgba(120, 85, 94, 0.24);
  color: #6b5960;
  background: rgba(255, 255, 255, 0.95);
}

.l4u-settings-danger-button {
  border: 1px solid rgba(224, 131, 135, 0.42);
  color: #d4535d;
  background: rgba(255, 247, 247, 0.95);
}

.l4u-settings-status {
  min-height: 1.3rem;
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: #91858c;
}

.l4u-settings-social {
  margin-top: 2.6rem;
  text-align: center;
}

.l4u-settings-social-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #2f3036;
}

.l4u-settings-social-subtitle {
  margin: 0.4rem 0 0;
  font-size: 0.96rem;
  color: #9a9098;
}

.l4u-settings-social-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.l4u-settings-social-card {
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem 0.6rem;
  display: grid;
  justify-items: center;
  gap: 0.38rem;
  color: #7e7078;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(26, 28, 29, 0.05);
}

.l4u-settings-social-card .material-symbols-outlined {
  font-size: 1.2rem;
  font-variation-settings: "FILL" 1, "wght" 600, "opsz" 24;
}

.l4u-settings-social-card span:last-child {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html.l4u-dark .text-lfu-ink {
  color: var(--l4u-ink) !important;
}

html.l4u-dark .text-lfu-primary {
  color: var(--l4u-primary) !important;
}

html.l4u-dark .text-lfu-muted {
  color: var(--l4u-muted) !important;
}

html.l4u-dark .text-lfu-outline {
  color: var(--l4u-outline) !important;
}

html.l4u-dark .bg-lfu-surface,
html.l4u-dark .bg-lfu-surface-low {
  background-color: var(--l4u-surface-low) !important;
}

html.l4u-dark .l4u-surface-glass {
  background: rgba(22, 17, 24, 0.72);
  border-color: rgba(255, 255, 255, 0.15);
}

html.l4u-dark .l4u-outline-button,
html.l4u-dark .l4u-google-button {
  background: rgba(34, 27, 35, 0.9);
  color: #f3eaed;
  border-color: rgba(255, 255, 255, 0.18);
}

html.l4u-dark .l4u-signin-terms-shell,
html.l4u-dark .l4u-signin-terms-consent {
  background: rgba(34, 27, 35, 0.86);
  border-color: rgba(255, 255, 255, 0.18);
}

html.l4u-dark .l4u-signin-terms-title,
html.l4u-dark .l4u-signin-terms-scroll h4,
html.l4u-dark .l4u-signin-terms-scroll h5 {
  color: #f2e8ed;
}

html.l4u-dark .l4u-signin-terms-meta,
html.l4u-dark .l4u-signin-terms-scroll {
  color: #d0c1c8;
}

html.l4u-dark .l4u-signin-terms-scroll {
  background: rgba(30, 24, 33, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
}

html.l4u-dark .l4u-manual-uid-box {
  background: rgba(44, 34, 47, 0.95);
  border-color: rgba(255, 255, 255, 0.18);
  color: #efdde4;
}

html.l4u-dark .l4u-manual-contact-link {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #efdde4;
}

html.l4u-dark .l4u-manual-copy-button {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(44, 34, 47, 0.95);
  color: #f3e6eb;
}

html.l4u-dark .l4u-manual-instruction,
html.l4u-dark .l4u-manual-status {
  color: #f2e4ea;
}

html.l4u-dark .l4u-manual-steps li {
  background: rgba(44, 34, 47, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
  color: #e8d7de;
}

html.l4u-dark .l4u-manual-step-index {
  background: rgba(255, 255, 255, 0.2);
  color: #f7e9ef;
}

html.l4u-dark .l4u-manual-contact-link:hover,
html.l4u-dark .l4u-manual-contact-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff0f6;
}

html.l4u-dark .l4u-modal-card-support,
html.l4u-dark .l4u-support-step,
html.l4u-dark .l4u-support-comment {
  background: rgba(36, 29, 39, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
}

html.l4u-dark .l4u-support-progress-track {
  background: rgba(240, 191, 208, 0.2);
}

html.l4u-dark .l4u-support-step-title,
html.l4u-dark .l4u-support-comment-text {
  color: #f3e8ee;
}

html.l4u-dark .l4u-support-step-state,
html.l4u-dark .l4u-support-comment-title {
  color: #cfc0c8;
}

html.l4u-dark .l4u-support-step.is-complete {
  border-color: rgba(111, 182, 123, 0.42);
  background: rgba(42, 64, 47, 0.62);
}

html.l4u-dark .l4u-support-step-button,
html.l4u-dark .l4u-support-copy-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(48, 40, 52, 0.95);
  color: #f1e4ea;
}

html.l4u-dark .l4u-support-feedback-backdrop {
  background: rgba(5, 6, 10, 0.56);
}

html.l4u-dark .l4u-support-feedback-card {
  background: rgba(33, 27, 37, 0.98);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 36px rgba(4, 3, 7, 0.5);
}

html.l4u-dark .l4u-support-feedback-modal #socialFeedbackKicker {
  color: #f0bfd0;
}

html.l4u-dark .l4u-support-feedback-modal #socialFeedbackTitle {
  color: #fff1f6;
}

html.l4u-dark .l4u-support-feedback-modal #socialFeedbackMessage {
  color: #dbcad2;
}

html.l4u-dark .l4u-support-feedback-modal.is-warning #socialFeedbackKicker {
  color: #f0be98;
}

html.l4u-dark .l4u-support-feedback-modal.is-success #socialFeedbackKicker {
  color: #99d3a5;
}

html.l4u-dark .l4u-support-modal-footer {
  border-top-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 640px) {
  .l4u-manual-contacts {
    gap: 0.5rem;
  }

  .l4u-manual-contact-link {
    width: 100%;
    justify-content: flex-start;
  }
}

html.l4u-dark .l4u-manual-uid-value {
  color: #f1e2e8;
}

html.l4u-dark .l4u-credit-pill {
  color: #efc6d2;
  background: rgba(88, 58, 71, 0.72);
  border-color: rgba(239, 198, 210, 0.35);
}

html.l4u-dark .l4u-modal-card,
html.l4u-dark .l4u-toast,
html.l4u-dark [class*="bg-white"] {
  background: rgba(30, 24, 33, 0.9) !important;
  color: var(--l4u-ink);
  border-color: rgba(255, 255, 255, 0.14) !important;
}

html.l4u-dark .l4u-modal[data-modal="tiktok-browser-warning"] .l4u-modal-backdrop {
  background: rgba(4, 6, 10, 0.8);
}

html.l4u-dark .l4u-tiktok-warning-steps {
  color: #d8c7cd;
}

html.l4u-dark .l4u-toast {
  border-color: rgba(240, 193, 208, 0.45) !important;
  background: linear-gradient(145deg, rgba(62, 40, 49, 0.98) 0%, rgba(88, 54, 66, 0.95) 100%) !important;
  color: #ffeef4;
  box-shadow: 0 24px 42px rgba(12, 7, 11, 0.42);
}

html.l4u-dark .l4u-toast::before {
  background: linear-gradient(180deg, #f0bfd0 0%, #e79eaf 100%);
}

html.l4u-dark [class*="border-white"] {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

html.l4u-dark .l4u-nav-link {
  color: #d6c7cd;
}

html.l4u-dark .l4u-brand-word {
  color: #f0bfd0;
}

html.l4u-dark .l4u-gradient-word-morph.is-mobile-typing .l4u-gradient-word-fallback::after {
  color: rgba(240, 191, 208, 0.9);
}

html.l4u-dark .l4u-gradient-word-morph.is-mobile-typing .l4u-gradient-word-fallback {
  color: #f0bfd0;
  background: linear-gradient(92deg, #c98ea1 0%, #f0bfd0 45%, #ffe5ee 100%);
}

html.l4u-dark .l4u-background::before {
  background:
    radial-gradient(circle at 22% 26%, rgba(133, 74, 100, 0.66) 0%, transparent 42%),
    radial-gradient(circle at 78% 28%, rgba(88, 76, 139, 0.58) 0%, transparent 39%),
    radial-gradient(circle at 50% 86%, rgba(108, 94, 47, 0.5) 0%, transparent 44%);
  opacity: 0.5;
}

html.l4u-dark .l4u-background::after {
  background:
    radial-gradient(circle at 72% 12%, rgba(122, 70, 91, 0.42) 0%, transparent 38%),
    radial-gradient(circle at 24% 76%, rgba(74, 98, 146, 0.34) 0%, transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(113, 80, 141, 0.32) 0%, transparent 42%);
  opacity: 0.46;
}

html.l4u-dark .l4u-nav-group {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(30, 24, 33, 0.6);
}

html.l4u-dark .l4u-mobile-nav-row {
  border-top-color: rgba(255, 255, 255, 0.14);
}

html.l4u-dark .l4u-nav-indicator {
  background: linear-gradient(135deg, #f0bfd0 0%, #e29aae 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

html.l4u-dark .l4u-nav-group .l4u-nav-link.active {
  color: #301e26;
}

html.l4u-dark .l4u-marquee-item {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(132deg, rgba(136, 96, 118, 0.28) 0%, rgba(76, 83, 119, 0.24) 100%),
    linear-gradient(180deg, rgba(34, 27, 38, 0.9) 0%, rgba(26, 21, 33, 0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 12px 22px rgba(0, 0, 0, 0.28);
}

html.l4u-dark .l4u-marquee-item::after {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, transparent 0%, rgba(217, 171, 190, 0.1) 120%);
}

html.l4u-dark .l4u-marquee-label {
  color: #ecd3dc;
}

html.l4u-dark .l4u-create-form-panel,
html.l4u-dark .l4u-letter-preview-shell,
html.l4u-dark .l4u-letter-sheet,
html.l4u-dark .l4u-upload-dropzone,
html.l4u-dark .l4u-upload-row,
html.l4u-dark .l4u-success-action,
html.l4u-dark .l4u-modal-card-credits,
html.l4u-dark .l4u-modal-card-published,
html.l4u-dark .l4u-modal-card-uploading {
  background: rgba(30, 24, 33, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
}

html.l4u-dark .l4u-shop-stage {
  background: transparent;
  border-color: transparent;
}

html.l4u-dark .l4u-shop-card {
  background: rgba(36, 29, 39, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

html.l4u-dark .l4u-shop-card-popular {
  border-color: rgba(231, 184, 197, 0.75);
}

html.l4u-dark .l4u-shop-name,
html.l4u-dark .l4u-shop-price,
html.l4u-dark .l4u-shop-feature-item {
  color: #f2e7ec;
}

html.l4u-dark .l4u-shop-note,
html.l4u-dark .l4u-shop-tier,
html.l4u-dark .l4u-shop-payments-label,
html.l4u-dark .l4u-shop-payment-pill,
html.l4u-dark .l4u-shop-balance-pill {
  color: #d2c1c9;
}

html.l4u-dark .l4u-shop-payment-pill,
html.l4u-dark .l4u-shop-balance-pill {
  background: rgba(36, 29, 39, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

html.l4u-dark .l4u-shop-payment-logo {
  filter: brightness(1.04) contrast(1.08);
}

html.l4u-dark .l4u-shop-button-starter {
  background: rgba(255, 255, 255, 0.15);
  color: #efe4e8;
}

html.l4u-dark .l4u-shop-button-power {
  background: rgba(214, 198, 238, 0.45);
  color: #f3e8ff;
}


html.l4u-dark .l4u-admin-note,
html.l4u-dark .l4u-admin-denied,
html.l4u-dark .l4u-admin-stat-card,
html.l4u-dark .l4u-admin-collapsible-card,
html.l4u-dark .l4u-admin-chart-card,
html.l4u-dark .l4u-admin-table-card,
html.l4u-dark .l4u-admin-table,
html.l4u-dark .l4u-admin-modal-card,
html.l4u-dark .l4u-admin-tabs,
html.l4u-dark .l4u-admin-collapsible-toggle,
html.l4u-dark .l4u-admin-chart {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(30, 24, 33, 0.9);
}

html.l4u-dark .l4u-admin-stat-value,
html.l4u-dark .l4u-admin-chart-value,
html.l4u-dark .l4u-admin-table td,
html.l4u-dark .l4u-admin-table th,
html.l4u-dark .l4u-admin-mini-btn,
html.l4u-dark .l4u-admin-credit-input,
html.l4u-dark .l4u-admin-tab-button,
html.l4u-dark .l4u-admin-toggle-icon {
  color: #f0e5ea;
}

html.l4u-dark .l4u-admin-table th {
  background: rgba(36, 29, 39, 0.92);
}

html.l4u-dark .l4u-admin-chart-rail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.14));
}

html.l4u-dark .l4u-admin-credit-input,
html.l4u-dark .l4u-admin-mini-btn {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(36, 29, 39, 0.92);
}

html.l4u-dark .l4u-admin-tab-button.is-active {
  background: linear-gradient(145deg, #f0bfd0 0%, #d996ad 100%);
  color: #3b1f2a;
}

html.l4u-dark .l4u-admin-toggle-icon {
  background: rgba(255, 255, 255, 0.12);
}

html.l4u-dark .l4u-admin-chart-bar::after {
  background: rgba(255, 255, 255, 0.62);
}

html.l4u-dark .l4u-admin-mini-btn.is-danger {
  border-color: rgba(234, 134, 141, 0.42);
  color: #ff9fa8;
  background: rgba(73, 30, 37, 0.5);
}

html.l4u-dark .l4u-success-action {
  color: #efe4e9;
}

html.l4u-dark .l4u-publish-quick-share-title {
  color: #d4c5cc;
}

html.l4u-dark .l4u-quick-share-btn {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(36, 29, 39, 0.94);
  color: #efe4e9;
}

html.l4u-dark .l4u-settings-title,
html.l4u-dark .l4u-settings-card-title,
html.l4u-dark .l4u-settings-row-title,
html.l4u-dark .l4u-settings-account-title,
html.l4u-dark .l4u-settings-social-title {
  color: #f2e8ed;
}

html.l4u-dark .l4u-settings-subtitle,
html.l4u-dark .l4u-settings-row-subtitle,
html.l4u-dark .l4u-settings-account-subtitle,
html.l4u-dark .l4u-settings-social-subtitle,
html.l4u-dark .l4u-settings-mini-label,
html.l4u-dark .l4u-settings-status {
  color: #cdbfc6;
}

html.l4u-dark .l4u-settings-profile-row,
html.l4u-dark .l4u-settings-card,
html.l4u-dark .l4u-settings-account,
html.l4u-dark .l4u-settings-social-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(30, 24, 33, 0.9);
}

html.l4u-dark .l4u-settings-name-input {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(36, 29, 39, 0.92);
  color: #f2e8ed;
}

html.l4u-dark .l4u-settings-uid-value {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(44, 34, 47, 0.95);
  color: #f0dfe6;
}

html.l4u-dark .l4u-settings-uid-copy {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(44, 34, 47, 0.95);
  color: #f0dfe6;
}

html.l4u-dark .l4u-settings-ghost-button {
  border-color: rgba(255, 255, 255, 0.2);
  color: #e8dbe0;
  background: rgba(36, 29, 39, 0.92);
}

html.l4u-dark .l4u-settings-danger-button {
  border-color: rgba(234, 134, 141, 0.42);
  color: #ff9fa8;
  background: rgba(73, 30, 37, 0.5);
}

html.l4u-dark .l4u-settings-social-card {
  color: #dcccd4;
}

@media (max-width: 768px) {
  .l4u-settings-profile-row {
    padding: 0.85rem 0.9rem;
  }

  .l4u-settings-name-input {
    width: 100%;
  }

  .l4u-settings-uid-block {
    width: 100%;
    align-items: flex-start;
  }

  .l4u-settings-uid-value {
    width: 100%;
    text-align: left;
  }

  .l4u-settings-uid-copy {
    width: 100%;
  }

  .l4u-settings-grid {
    grid-template-columns: 1fr;
  }

  .l4u-settings-card {
    border-radius: 1.5rem;
  }

  .l4u-settings-account {
    border-radius: 1.45rem;
  }

  .l4u-settings-account-actions {
    width: 100%;
  }

  .l4u-settings-ghost-button,
  .l4u-settings-danger-button {
    flex: 1 1 auto;
    text-align: center;
  }

  .l4u-settings-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l4u-cost-pill {
    width: 100%;
    min-width: 0;
  }

  .l4u-shop-grid {
    grid-template-columns: 1fr;
  }

  .l4u-shop-stage {
    padding: 0.75rem;
  }

  .l4u-shop-card {
    border-radius: 1.45rem;
    padding: 1.15rem;
  }

  .l4u-shop-name {
    font-size: 1.7rem;
  }

  .l4u-shop-price {
    font-size: 2.25rem;
  }

  .l4u-shop-button {
    width: 100%;
  }

  .l4u-modal[data-modal="publish-success"] {
    align-items: flex-end;
    padding: 0.45rem 0.45rem calc(env(safe-area-inset-bottom, 0px) + 0.45rem);
  }

  .l4u-modal-card-published {
    width: 100%;
    max-width: 560px;
    max-height: calc(100dvh - 0.9rem);
    border-radius: 1.35rem;
    padding: 1.1rem;
  }

  #publishSuccessLayout {
    grid-template-columns: 1fr !important;
    gap: 0.9rem;
  }

  #publishSuccessTitle {
    font-size: clamp(1.85rem, 11vw, 2.8rem);
  }

  #publishShareRow {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .l4u-publish-quick-share-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  #copyShareLinkButton {
    width: 100%;
  }

  #publishSuccessFooter {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  #createNewLetterFromSuccess {
    width: 100%;
  }

  .l4u-gradient-word-morph.is-mobile-typing {
    min-height: clamp(3.2rem, 14vw, 4.6rem);
  }

  .l4u-marquee-shell {
    --l4u-marquee-edge-fade: clamp(1.4rem, 6vw, 2.6rem);
  }

  .l4u-marquee-item {
    min-width: 9.4rem;
    padding: 0.5rem 0.62rem 0.56rem 2.36rem;
  }

  .l4u-marquee-item::before {
    left: 0.28rem;
    width: 2.08rem;
    height: 2.08rem;
    opacity: 0.8;
  }

  .l4u-marquee-label {
    font-size: 0.62rem;
    letter-spacing: 0.068em;
  }
}

@media (max-width: 560px) {
  .l4u-publish-quick-share-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .l4u-blob-a {
    width: 360px;
    height: 360px;
  }

  .l4u-blob-b {
    width: 390px;
    height: 390px;
  }

  .l4u-blob-c {
    width: 300px;
    height: 300px;
  }

  .l4u-admin-chart {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .l4u-admin-table {
    min-width: 640px;
  }

  .l4u-admin-modal-card {
    width: min(96vw, 700px);
    border-radius: 1.3rem;
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .l4u-background::before,
  .l4u-background::after,
  .l4u-blob,
  .l4u-reveal,
  .l4u-modal-card,
  .l4u-progress-bar,
  .l4u-marquee-loop {
    animation: none;
    transition: none;
  }

  .l4u-gradient-word-canvas {
    display: none;
  }

  .l4u-gradient-word-fallback {
    opacity: 1 !important;
  }
}
