:root {
  --primary: #171717;
  --secondary: #c86679;
  --accent: #c9a84b;
  --success: #187960;
  --background: #f8faf8;
  --text: #1e1b18;
  --surface: #ffffff;
  --surface-soft: #f2f5f2;
  --line: #dfe5df;
  --muted: #726a60;
  --danger: #b42332;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.16);
  --shadow-soft: 0 14px 36px rgba(23, 23, 23, 0.1);
  --radius: 8px;
  --nav-width: 270px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(110deg, rgba(23, 23, 23, 0.04) 0 1px, transparent 1px 80px),
    linear-gradient(180deg, var(--background), #ffffff 42%, #eef3ef);
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

a {
  color: inherit;
}

.public-body {
  overflow-x: hidden;
}

.admin-body {
  background:
    linear-gradient(90deg, var(--primary) 0 var(--nav-width), transparent var(--nav-width)),
    linear-gradient(180deg, #ffffff, #edf3ee);
}

.loading-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--muted);
}

.loader-mark {
  width: 42px;
  height: 42px;
  border: 3px solid color-mix(in srgb, var(--accent), transparent 58%);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.public-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1fr);
  gap: 34px;
  padding: 28px;
  isolation: isolate;
  min-width: 0;
  overflow-x: hidden;
}

.story-panel,
.form-panel,
.blocked-panel,
.admin-panel,
.login-panel,
.modal-panel {
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid color-mix(in srgb, var(--line), transparent 20%);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

.story-panel {
  min-height: calc(100vh - 56px);
  position: sticky;
  top: 28px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(200, 102, 121, 0.24), transparent 38%),
    linear-gradient(155deg, var(--primary), #221d19 58%, #3a2a27);
}

.story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(255, 255, 255, 0.06) 22% 23%, transparent 23% 58%, rgba(201, 168, 75, 0.15) 58% 59%, transparent 59%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.story-panel > * {
  position: relative;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--primary);
  background:
    linear-gradient(135deg, #fff, #f2e3d7),
    linear-gradient(90deg, var(--accent), var(--secondary));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.brand-row strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.05;
}

.brand-row span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.story-copy {
  max-width: 540px;
  min-width: 0;
  padding: 72px 0 42px;
}

.story-copy h1 {
  max-width: 100%;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.93;
  font-weight: 700;
}

.story-copy p {
  max-width: 440px;
  min-width: 0;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  line-height: 1.7;
}

.motion-strip {
  display: grid;
  gap: 12px;
}

.motion-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transform: translateX(0);
  animation: floatIn 0.75s ease both;
}

.motion-step:nth-child(2) {
  animation-delay: 0.12s;
}

.motion-step:nth-child(3) {
  animation-delay: 0.24s;
}

.motion-step b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--accent);
}

.motion-step span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.4;
}

.form-panel {
  min-height: calc(100vh - 56px);
  align-self: start;
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-top > * {
  min-width: 0;
}

.form-top h2,
.admin-panel h2,
.modal-panel h2,
.login-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.form-top p,
.admin-panel > p,
.login-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.protocol-preview {
  min-width: 142px;
  padding: 12px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, var(--primary), #40332d),
    linear-gradient(90deg, var(--accent), var(--secondary));
}

.protocol-preview span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.protocol-preview strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
}

.progress-rail {
  display: grid;
  grid-template-columns: repeat(var(--step-count), minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0;
}

.progress-item {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.progress-line {
  height: 4px;
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.progress-line::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--success));
  transition: width 0.35s ease;
}

.progress-item.done .progress-line::after,
.progress-item.active .progress-line::after {
  width: 100%;
}

.progress-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
}

.progress-item.active span {
  color: var(--text);
  font-weight: 700;
}

.step-card {
  min-height: 470px;
  animation: stepReveal 0.36s ease both;
}

.step-card h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  line-height: 1.3;
}

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

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

.field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

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

.field label,
.check-line,
.settings-label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
.login-panel input,
.message-box textarea,
.settings-control,
.search-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  font-size: 1rem;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.field textarea,
.message-box textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.login-panel input:focus,
.message-box textarea:focus,
.settings-control:focus,
.search-input:focus {
  border-color: color-mix(in srgb, var(--secondary), var(--accent) 30%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary), transparent 82%);
}

.locked-field {
  color: var(--success);
  background: color-mix(in srgb, var(--success), white 92%) !important;
  font-weight: 800;
}

.hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.minor-note {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 38%);
  border-radius: var(--radius);
  color: #5f4714;
  background: color-mix(in srgb, var(--accent), white 82%);
  line-height: 1.45;
}

.minor-note.visible {
  display: block;
}

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

.upload-zone {
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px dashed color-mix(in srgb, var(--secondary), var(--line) 46%);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 237, 0.64)),
    var(--surface-soft);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.upload-zone:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-soft);
}

.upload-zone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  font-weight: 900;
}

.upload-zone strong {
  font-size: 1rem;
}

.upload-zone small {
  color: var(--muted);
  line-height: 1.35;
}

.preview-media {
  max-width: 100%;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
}

.legal-box {
  max-height: 220px;
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  line-height: 1.55;
  white-space: pre-wrap;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.check-line {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.45;
}

.check-line input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--success);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 0 18px;
  color: var(--text);
  background: var(--surface-soft);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #342b25 58%, var(--secondary));
}

.btn.success {
  color: #fff;
  background: var(--success);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
}

.btn.danger {
  color: #fff;
  background: var(--danger);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.error-box,
.notice-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  line-height: 1.45;
}

.error-box {
  color: var(--danger);
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.notice-box {
  color: #174739;
  background: color-mix(in srgb, var(--success), white 88%);
  border: 1px solid color-mix(in srgb, var(--success), white 58%);
}

.success-shell,
.blocked-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.success-panel,
.blocked-panel {
  width: min(760px, 100%);
  padding: 34px;
  text-align: center;
  animation: stepReveal 0.48s ease both;
}

.success-panel h1,
.blocked-panel h1 {
  margin: 18px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.02;
}

.success-panel p,
.blocked-panel p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.protocol-card {
  display: inline-grid;
  gap: 6px;
  margin: 24px auto;
  padding: 16px 20px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
}

.protocol-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.protocol-card strong {
  font-size: 1.35rem;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--nav-width) minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-content: space-between;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(200, 102, 121, 0.16), transparent 34%),
    var(--primary);
}

.admin-nav {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.admin-nav button {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.admin-nav button.active,
.admin-nav button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.admin-main {
  min-width: 0;
  padding: 26px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-topbar h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1.08;
}

.admin-topbar p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.admin-panel {
  padding: 20px;
  margin-bottom: 18px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: #fff;
}

.data-table th,
.data-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 0.92rem;
}

.data-table th {
  color: var(--muted);
  background: #f8f6f2;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.data-table tr:hover td {
  background: #fffaf5;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  color: #174739;
  background: color-mix(in srgb, var(--success), white 86%);
  font-size: 0.78rem;
  font-weight: 800;
}

.row-actions {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface-soft);
  cursor: pointer;
}

.icon-btn:hover {
  background: color-mix(in srgb, var(--secondary), white 84%);
}

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

.settings-grid .full {
  grid-column: 1 / -1;
}

.settings-label {
  display: grid;
  gap: 8px;
}

.color-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.color-row input {
  min-height: 48px;
  padding: 4px;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--text);
  font-weight: 800;
}

.toggle-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--success);
}

.message-box {
  display: grid;
  gap: 12px;
}

.message-box small {
  color: var(--muted);
  line-height: 1.45;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-panel {
  width: min(440px, 100%);
  padding: 28px;
}

.login-panel form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(23, 23, 23, 0.62);
}

.modal-panel {
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 22px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.detail-section {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.detail-section.full {
  grid-column: 1 / -1;
}

.detail-section h3 {
  margin: 0 0 10px;
}

.detail-section dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px 12px;
  margin: 0;
}

.detail-section dt {
  color: var(--muted);
  font-weight: 700;
}

.detail-section dd {
  margin: 0;
  word-break: break-word;
}

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

.media-pair img,
.detail-video {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.empty-state {
  padding: 38px 20px;
  text-align: center;
  color: var(--muted);
}

.print-only {
  display: none;
}

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

  .story-panel {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .story-copy {
    padding: 38px 0 24px;
  }

  .story-copy h1 {
    font-size: 3rem;
  }

  .admin-body {
    background: linear-gradient(180deg, #ffffff, #edf3ee);
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    min-height: auto;
  }

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

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

@media (max-width: 720px) {
  body {
    background: linear-gradient(180deg, #ffffff, var(--background));
  }

  .public-shell,
  .admin-main,
  .login-shell,
  .success-shell,
  .blocked-shell {
    padding: 12px;
  }

  .story-panel,
  .form-panel,
  .success-panel,
  .blocked-panel,
  .admin-panel,
  .login-panel,
  .modal-panel {
    padding: 18px;
  }

  .story-copy {
    padding: 24px 0 16px;
  }

  .story-copy p {
    max-width: 100%;
  }

  .motion-strip {
    gap: 8px;
  }

  .motion-step:nth-child(n + 2) {
    display: none;
  }

  .protocol-preview {
    width: 100%;
    min-width: 0;
  }

  .story-copy h1,
  .success-panel h1,
  .blocked-panel h1 {
    font-size: 2.35rem;
  }

  .form-top,
  .panel-head,
  .admin-topbar {
    display: grid;
  }

  .form-grid,
  .upload-grid,
  .settings-grid,
  .detail-grid,
  .media-pair {
    grid-template-columns: 1fr;
  }

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

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

  .step-card {
    min-height: auto;
  }

  .progress-rail {
    grid-template-columns: repeat(var(--step-count), minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .progress-item {
    gap: 6px;
  }

  .progress-item span {
    white-space: normal;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .form-actions {
    position: sticky;
    bottom: 0;
    z-index: 4;
    margin: 20px -18px -18px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
  }

  .btn {
    padding: 0 14px;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .color-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-section dl {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #fff;
  }

  .admin-sidebar,
  .admin-topbar,
  .panel-actions,
  .admin-nav,
  .no-print,
  .modal-backdrop {
    display: none !important;
  }

  .print-only {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stepReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
