:root {
  --bg: #edf6f4;
  --paper: #fffdf9;
  --paper-soft: #f7fbff;
  --ink: #26303f;
  --muted: #6e7687;
  --line: #d8e2e4;
  --line-strong: #b8c8cf;
  --blue: #6f9fc3;
  --blue-deep: #3f6f95;
  --green: #9fcbb8;
  --rose: #d69b9a;
  --amber: #e5c46f;
  --lilac: #b8add8;
  --shadow: 0 18px 42px rgba(42, 64, 82, 0.12);
  --mono: "Cascadia Code", "Fira Code", Consolas, monospace;
  --sans: "Noto Sans TC", "Microsoft JhengHei", "Yu Gothic UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 8% 10%, rgba(184, 173, 216, 0.32), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(111, 159, 195, 0.3), transparent 27rem),
    linear-gradient(180deg, #f8fbff 0%, #edf6f4 48%, #f7f3fb 100%);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.app-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  padding: 18px;
  border-right: 1px solid rgba(128, 153, 164, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.84), rgba(239, 247, 248, 0.92)),
    var(--paper);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: 0 10px 24px rgba(74, 99, 135, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.step-nav {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.step-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  font-weight: 800;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.step-link span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.step-link:hover {
  transform: translateX(2px);
  background: rgba(255, 253, 249, 0.72);
  border-color: rgba(128, 153, 164, 0.24);
}

.step-link.active {
  color: var(--ink);
  border-color: rgba(111, 159, 195, 0.34);
  background: #fffdf9;
  box-shadow: inset 0 0 0 2px rgba(111, 159, 195, 0.12), 0 10px 20px rgba(42, 64, 82, 0.08);
}

.privacy-note {
  border: 1px solid rgba(128, 153, 164, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--muted);
  line-height: 1.55;
}

.privacy-note strong {
  color: var(--ink);
}

.privacy-note p {
  margin: 6px 0 0;
}

.workspace {
  min-width: 0;
  padding: 22px;
}

.topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 18px;
  max-width: 1240px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue-deep);
  font: 800 0.75rem/1 var(--mono);
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.top-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(128, 153, 164, 0.32);
  border-radius: 8px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
}

.button.primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #5f96bd, #8d7ec0);
}

.button.ghost {
  background: rgba(255, 253, 249, 0.72);
}

.button.warn {
  background: #fff7df;
  border-color: rgba(216, 174, 73, 0.44);
}

.button.danger {
  color: #9a5361;
  border-color: rgba(194, 129, 140, 0.45);
  background: #fff4f4;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.message {
  display: none;
  max-width: 1240px;
  margin: 0 auto 14px;
  border: 1px solid rgba(128, 153, 164, 0.28);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.message.show {
  display: block;
}

.message.error {
  color: #934d5e;
  border-color: rgba(190, 117, 131, 0.42);
  background: #fff4f4;
}

.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.main-panel,
.inspector-card,
.panel {
  border: 1px solid rgba(128, 153, 164, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow);
}

.main-panel {
  min-height: 640px;
  overflow: hidden;
}

.view {
  padding: 24px;
}

.view-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.view-head h2 {
  margin-bottom: 6px;
  font-size: 1.38rem;
  letter-spacing: -0.01em;
}

.view-head p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.section-grid:last-child {
  margin-bottom: 0;
}

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

.panel {
  padding: 20px;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.panel h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: var(--blue-deep);
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.panel li {
  margin-bottom: 4px;
}

.panel ul,
.panel ol {
  margin: 0;
  padding-left: 1.2rem;
}

.workflow-card {
  padding: 24px;
  border: 2px solid rgba(111, 159, 195, 0.22);
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(247, 251, 255, 0.96));
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.workflow-card:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 159, 195, 0.5);
  box-shadow: 0 12px 28px rgba(42, 64, 82, 0.1);
}

.workflow-card h3 {
  font-size: 1.18rem;
}

.tips-card {
  border-left: 3px solid var(--blue);
  background: rgba(247, 251, 255, 0.7);
}

.tips-card:last-child {
  border-left-color: var(--green);
}

.tips-card li strong {
  color: var(--ink);
}

.dropzone {
  display: grid;
  place-items: center;
  cursor: pointer;
  min-height: 160px;
  border: 2px dashed rgba(111, 159, 195, 0.42);
  border-radius: 12px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.88), rgba(247, 243, 251, 0.8)),
    var(--paper-soft);
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.dropzone:hover {
  border-color: var(--blue);
  background: rgba(247, 251, 255, 0.95);
}

.dropzone.drag {
  border-color: var(--blue-deep);
  background: #eef8fb;
}

.dropzone strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.hidden-input {
  display: none;
}

.action-row,
.prompt-row,
.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.action-row {
  margin: 12px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 4px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.field-help {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.token-count {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.78rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(128, 153, 164, 0.34);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fffdf9;
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.58;
}

.field-stack {
  align-content: start;
}

.alt-greeting-list {
  display: grid;
  gap: 10px;
}

.alt-greeting-item {
  border: 1px solid rgba(128, 153, 164, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: var(--paper-soft);
}

.alt-greeting-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.alt-greeting-head strong {
  font-size: 0.9rem;
}

.alt-greeting-remove {
  flex: 0 0 auto;
}

.field textarea.code,
pre {
  font-family: var(--mono);
  font-size: 0.84rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(111, 159, 195, 0.14);
}

.card-summary {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(128, 153, 164, 0.22);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(247, 251, 255, 0.6), rgba(247, 243, 251, 0.4));
  overflow-wrap: anywhere;
}

.avatar-preview {
  display: grid;
  place-items: center;
  width: 88px;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--blue));
  font-weight: 900;
}

.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skill-section {
  margin-bottom: 18px;
}

.skill-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(128, 153, 164, 0.24);
  border-radius: 8px;
  padding: 12px 16px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.skill-toggle:hover {
  background: rgba(247, 251, 255, 0.95);
  border-color: rgba(111, 159, 195, 0.4);
}

.skill-arrow {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.skill-section.expanded .skill-arrow {
  transform: rotate(90deg);
}

.skill-content {
  display: none;
  margin-top: 10px;
}

.skill-section.expanded .skill-content {
  display: block;
}

.entry-config {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.entry-list {
  display: grid;
  gap: 10px;
}

.entry-item {
  border: 1px solid rgba(128, 153, 164, 0.22);
  border-radius: 8px;
  background: #fffdf9;
  overflow: hidden;
}

.entry-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(90deg, rgba(239, 247, 248, 0.95), rgba(248, 245, 253, 0.95));
}

.entry-title strong {
  display: block;
  overflow-wrap: anywhere;
}

.entry-title small {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.entry-title small {
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.entry-body {
  padding: 12px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(128, 153, 164, 0.26);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--muted);
  background: #fffdf9;
  font: 800 0.72rem/1 var(--mono);
}

.badge.on {
  color: #487760;
  border-color: rgba(95, 150, 118, 0.34);
  background: #eef8f1;
}

.badge.off {
  color: #935161;
  border-color: rgba(184, 116, 132, 0.36);
  background: #fff3f4;
}

.prompt-row {
  display: grid;
  gap: 6px;
}

.prompt-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(128, 153, 164, 0.16);
  border-radius: 6px;
  padding: 8px 12px;
  background: var(--paper);
  transition: border-color 0.15s ease;
}

.prompt-card:hover {
  border-color: rgba(111, 159, 195, 0.35);
}

.prompt-info {
  flex: 1;
  min-width: 0;
}

.prompt-card strong {
  display: block;
  font-size: 0.86rem;
  color: var(--ink);
}

.prompt-card small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.prompt-card .button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 4px 10px;
  font-size: 0.78rem;
}

.json-preview {
  max-height: 380px;
  overflow: auto;
  border: 1px solid rgba(128, 153, 164, 0.24);
  border-radius: 8px;
  padding: 12px;
  background: #f8f7f2;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.inspector {
  display: grid;
  align-content: start;
  gap: 12px;
}

.inspector-card {
  padding: 15px;
}

.inspector-card h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font: 800 0.72rem/1 var(--mono);
}

.status-pill.ok {
  color: #487760;
  background: #edf8f0;
}

.status-pill.warn {
  color: #8b6424;
  background: #fff6dc;
}

.status-pill.muted {
  color: var(--muted);
  background: #eef2f4;
}

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

.stat {
  border: 1px solid rgba(128, 153, 164, 0.22);
  border-radius: 8px;
  padding: 10px;
  background: #fffdf9;
}

.stat strong,
.stat span {
  display: block;
  overflow-wrap: anywhere;
}

.stat strong {
  font-size: 1.18rem;
}

.stat span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.warning-list {
  display: grid;
  gap: 8px;
}

.warning {
  border-radius: 8px;
  padding: 10px;
  color: #8a5f23;
  background: #fff7df;
  line-height: 1.55;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.warning.info {
  color: var(--muted);
  background: #f2f7fb;
}

.next-step {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.site-footer {
  max-width: 1240px;
  margin: 18px auto 0;
  padding: 18px 14px 24px;
  border-top: 1px solid rgba(128, 153, 164, 0.24);
  color: var(--muted);
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.65;
}

.site-footer p {
  margin: 2px 0;
}

.footer-credit {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.footer-credit p {
  margin: 0;
}

.site-footer a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.empty {
  border: 1px dashed rgba(128, 153, 164, 0.38);
  border-radius: 8px;
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.7);
  text-align: center;
}

.merge-options {
  display: grid;
  gap: 8px;
}

.merge-options label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid rgba(128, 153, 164, 0.22);
  border-radius: 8px;
  padding: 10px;
  background: #fffdf9;
}

.merge-options strong {
  display: block;
}

.merge-options small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.45;
}

.export-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.export-btn {
  min-height: 54px;
  font-size: 1.05rem;
  border-radius: 10px;
}

@media (max-width: 1080px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(128, 153, 164, 0.24);
  }

  .step-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .step-link {
    justify-content: center;
  }

  .privacy-note {
    display: none;
  }

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

@media (max-width: 768px) {
  .app-shell {
    padding-bottom: 72px;
    min-height: 100dvh;
  }

  .sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    height: auto;
    z-index: 1000;
    padding: 0 4px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(128, 153, 164, 0.28);
    background: rgba(255, 253, 249, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 -4px 24px rgba(42, 64, 82, 0.08);
    overflow: visible;
  }

  .brand,
  .privacy-note {
    display: none;
  }

  .step-nav {
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin: 0;
    padding: 6px 0;
  }

  .step-link {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 50px;
    padding: 6px 4px;
    border: none;
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
  }

  .step-link:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
  }

  .step-link:active {
    transform: scale(0.95);
  }

  .step-link span {
    font-size: 0.88rem;
    font-weight: 900;
  }

  .step-link.active {
    border: none;
    background: rgba(111, 159, 195, 0.14);
    box-shadow: none;
    color: var(--blue-deep);
  }

  .workspace {
    padding: 14px 12px;
  }

  .topbar,
  .view-head {
    display: grid;
    gap: 10px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  .top-actions,
  .action-row,
  .prompt-row {
    justify-content: stretch;
  }

  .button {
    min-height: 44px;
    flex: 1 1 auto;
    font-size: 0.88rem;
  }

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

  .main-panel {
    min-height: auto;
  }

  .view {
    padding: 14px;
  }

  .section-grid,
  .section-grid.three,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .inspector {
    order: -1;
  }

  .inspector.collapsed .stats,
  .inspector.collapsed .warning-list,
  .inspector.collapsed .inspector-card:last-child {
    display: none;
  }

  .inspector-head {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .inspector-head::after {
    content: '\25BC';
    font-size: 0.62rem;
    color: var(--muted);
    transition: transform 0.25s ease;
  }

  .inspector.collapsed .inspector-head::after {
    transform: rotate(-90deg);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .entry-config {
    grid-template-columns: 1fr 1fr;
  }

  .entry-item.collapsed .entry-body {
    display: none;
  }

  .entry-title {
    grid-template-columns: minmax(0, 1fr) auto auto;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .entry-title::after {
    content: '\25BC';
    font-size: 0.62rem;
    color: var(--muted);
    align-self: center;
    transition: transform 0.25s ease;
  }

  .entry-item.collapsed .entry-title::after {
    transform: rotate(-90deg);
  }

  .prompt-card {
    padding: 8px 10px;
  }

  .prompt-card small {
    display: none;
  }

  .dropzone {
    min-height: 120px;
  }

  .json-preview {
    max-height: 220px;
    font-size: 0.78rem;
  }

  .message.show {
    position: fixed;
    bottom: 80px;
    left: 12px;
    right: 12px;
    z-index: 999;
    margin: 0;
    max-width: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(42, 64, 82, 0.16);
    animation: toast-slide-up 0.3s ease;
  }

  .card-summary {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .avatar-preview {
    width: 64px;
  }

  .export-actions {
    gap: 10px;
  }

  .export-btn {
    min-height: 50px;
  }

  .site-footer {
    padding-bottom: 80px;
  }

  .merge-options label {
    padding: 12px;
    gap: 10px;
    min-height: 44px;
  }

  .merge-options input[type="radio"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 12px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 100px;
  }

  .alt-greeting-item textarea {
    min-height: 80px;
  }
}

@keyframes toast-slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
