:root {
  --color-bg: #1e2b1f;
  --color-bg-frame: #243424;
  --color-text: #f4efe2;
  --color-text-soft: rgba(244, 239, 226, 0.65);
  --color-primary: #8fc97a;
  --color-accent: #e8a33d;
  --color-accent-coral: #e2725b;
  --color-highlight-gold: #f2b705;
  --color-highlight-red: #d62828;
  --radius-frame: 28px;
  --gap: 28px;
  --font: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  color-scheme: dark;
  scrollbar-color: var(--color-bg-frame) var(--color-bg);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

/* Thanh cuộn tối màu thay vì mặc định nền trắng của trình duyệt */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-frame);
  border-radius: 8px;
  border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

button {
  font-family: inherit;
}

/* ---------- Chữ-nút dùng chung ---------- */
.text-button {
  background: none;
  border: none;
  padding: 6px 2px;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-align: inherit;
  transition: transform 0.15s ease, color 0.2s ease;
}

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

.text-button:active {
  transform: scale(0.96);
}

.text-button__label {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
  transition: text-decoration-color 0.2s ease;
}

.text-button:hover .text-button__label {
  text-decoration-color: currentColor;
}

.text-button__count {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--color-accent);
}

.flag-asterisk {
  color: var(--color-highlight-red);
  text-decoration: none;
  margin-left: 2px;
}

@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.92);
    color: var(--color-accent);
  }
  100% {
    transform: scale(1);
  }
}

.text-button.is-pulsing {
  animation: buttonPulse 0.24s ease;
}

/* ---------- Trang chủ / bản đồ ---------- */
.page-header {
  text-align: center;
  padding: 40px 20px 8px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
}

.map {
  max-width: clamp(300px, 90vw, 460px);
  margin: 20px auto 0;
  padding: 12px 4px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    ".    top    ."
    "left center right"
    ".    bottom .";
  row-gap: 14px;
  column-gap: 2px;
  align-items: center;
  justify-items: center;
}

.center-frame {
  width: 100%;
  max-width: clamp(220px, 62vw, 300px);
  background: var(--color-bg-frame);
  border: 1px solid rgba(244, 239, 226, 0.35);
  border-radius: var(--radius-frame);
  padding: clamp(24px, 6vw, 36px) clamp(16px, 4vw, 24px);
  text-align: center;
  transition: transform 0.25s ease;
}

.center-frame__eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 3 chữ xếp tam giác: Tự Do ở trên, Độc Lập + Hạnh Phúc ngang hàng ở dưới */
.center-frame__values {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.center-frame__values-top,
.center-frame__values-bottom {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.text-button--value {
  font-size: clamp(15px, 5vw, 24px);
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.text-button--value-dot::before {
  content: "· ";
  color: var(--color-text-soft);
  margin-right: 2px;
}

.pillar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-button--pillar {
  font-size: clamp(21px, 4vw, 26px);
  font-weight: 700;
  padding: 10px 6px;
}

/* Bạn bè / Sự nghiệp xoay dọc theo cạnh bên của khung trung tâm */
.pillar--left .text-button--pillar,
.pillar--right .text-button--pillar {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.pillar--left .text-button--pillar {
  transform: rotate(180deg);
}

.pillar--left .text-button--pillar:active {
  transform: rotate(180deg) scale(0.96);
}

@keyframes buttonPulseRotatedLeft {
  0% {
    transform: rotate(180deg) scale(1);
  }
  45% {
    transform: rotate(180deg) scale(0.92);
    color: var(--color-accent);
  }
  100% {
    transform: rotate(180deg) scale(1);
  }
}

.pillar--left .text-button--pillar.is-pulsing {
  animation-name: buttonPulseRotatedLeft;
}

.page-footer {
  text-align: center;
  padding: 8px 20px 40px;
  color: var(--color-text-soft);
  font-size: 13px;
}

.page-footer p {
  margin: 0 0 4px;
}

.page-footer p:last-child {
  margin-bottom: 0;
}

/* ---------- Màn hình chi tiết (Phần / Mục nhỏ) ---------- */
.view--part,
.view--section,
.view--item,
.view--article {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

.detail-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.text-button--back {
  font-weight: 600;
  color: var(--color-text-soft);
}

.detail-eyebrow {
  margin: 0 0 6px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mỗi đoạn trong đường dẫn (breadcrumb) là 1 chữ-nút — bấm để quay thẳng về đúng tầng đó */
.text-button--eyebrow {
  padding: 4px 1px;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.detail-title {
  margin: 0 0 6px;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
}

.detail-subtitle {
  margin: 0 0 28px;
  color: var(--color-text-soft);
  font-size: 14px;
}

.section-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.section-list__item {
  border-top: 1px solid rgba(244, 239, 226, 0.12);
}

.section-list__item:last-child {
  border-bottom: 1px solid rgba(244, 239, 226, 0.12);
}

.text-button--section {
  width: 100%;
  padding: 18px 2px;
  justify-content: space-between;
  font-size: clamp(17px, 2.6vw, 20px);
  font-weight: 700;
}

.item-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.item-list__item {
  border-top: 1px solid rgba(244, 239, 226, 0.12);
}

.item-list__item:last-child {
  border-bottom: 1px solid rgba(244, 239, 226, 0.12);
}

.text-button--item {
  width: 100%;
  padding: 14px 0;
  justify-content: space-between;
  font-size: 15.5px;
  font-weight: 600;
}

.text-button--item::after {
  content: "›";
  color: var(--color-text-soft);
}

.empty-state {
  color: var(--color-text-soft);
}

.detail-fields {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.detail-field {
  padding: 14px 0;
  border-top: 1px solid rgba(244, 239, 226, 0.12);
}

.detail-field:last-child {
  border-bottom: 1px solid rgba(244, 239, 226, 0.12);
}

.detail-field__label {
  margin: 0 0 4px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-field__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
}

/* ---------- Bài viết chi tiết (trong 1 Mục con) ---------- */
.article-body {
  margin-top: 24px;
}

.article-heading {
  margin: 28px 0 10px;
  font-size: clamp(16px, 2.6vw, 19px);
  font-weight: 800;
  color: var(--color-primary);
}

/* Mỗi tiêu đề (lớn/nhỏ) là 1 nút bấm gập/mở — mặc định bài viết chỉ hiện các tiêu đề,
   bấm vào mới lộ nội dung bên dưới (xem buildToggleSection trong app.js). */
.article-section {
  border-top: 1px solid rgba(244, 239, 226, 0.12);
}

.article-body > .article-section:first-child {
  border-top: none;
}

.article-section--subheading {
  border-top: none;
  margin-left: 4px;
}

.text-button--heading-toggle,
.text-button--subheading-toggle {
  width: 100%;
  justify-content: space-between;
}

.text-button--heading-toggle {
  padding: 14px 0 12px;
  font-size: clamp(16px, 2.6vw, 19px);
  font-weight: 800;
  color: var(--color-primary);
}

.article-body > .article-section:first-child > .text-button--heading-toggle {
  padding-top: 0;
}

.text-button--subheading-toggle {
  padding: 10px 0 8px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.article-toggle__icon {
  color: var(--color-text-soft);
  font-size: 19px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.article-section.is-open > .text-button--heading-toggle .article-toggle__icon,
.article-section.is-open > .text-button--subheading-toggle .article-toggle__icon {
  transform: rotate(45deg);
}

.article-toggle__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.article-section.is-open > .article-toggle__content {
  grid-template-rows: 1fr;
}

.article-toggle__content-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 6px;
}

.article-toggle__content-inner > *:first-child {
  margin-top: 4px;
}

.article-paragraph {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.6;
}

/* Dùng cho nội dung ẩn (trong 1 tiêu đề gập lại) từng là tiêu đề phụ — nghiêng để
   tách biệt rõ với chữ tiêu đề phụ (cùng màu) đứng ngay phía trên nó. */
.article-paragraph--italic {
  font-style: italic;
  color: var(--color-text-soft);
}

.article-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.article-list__item {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.article-list__item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.article-list__label {
  color: var(--color-text);
}

.article-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 2px solid var(--color-accent);
  background: rgba(232, 163, 61, 0.08);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

/* Bấm vào 1 dòng (đoạn văn / lưu ý / mục danh sách) để highlight — trạng thái lưu theo máy */
.is-highlightable {
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.12s ease;
}

.is-highlightable:active {
  transform: scale(0.99);
}

.is-highlighted {
  background: rgba(242, 183, 5, 0.2);
}

.article-note.is-highlighted {
  background: rgba(242, 183, 5, 0.28);
}

/* ---------- Sơ đồ vòng tròn (vd đồng hồ sinh học 12 múi giờ) ---------- */
.clock-wheel-wrap {
  display: flex;
  justify-content: center;
  margin: 20px auto 24px;
}

.clock-wheel {
  width: 100%;
  max-width: clamp(240px, 78vw, 320px);
  height: auto;
}

.clock-wheel__wedge--a {
  fill: rgba(143, 201, 122, 0.14);
  stroke: rgba(244, 239, 226, 0.22);
  stroke-width: 1;
}

.clock-wheel__wedge--b {
  fill: rgba(143, 201, 122, 0.04);
  stroke: rgba(244, 239, 226, 0.22);
  stroke-width: 1;
}

.clock-wheel__label {
  fill: var(--color-text);
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 700;
}

.clock-wheel__tick {
  fill: var(--color-accent);
  font-family: var(--font);
  font-size: 7px;
  font-weight: 700;
}

/* ---------- Sơ đồ chuỗi bước (vd chuỗi quá trình phát triển) ---------- */
.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 16px 0 22px;
  text-align: center;
}

.flow-step {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 6px 10px;
}

.flow-arrow {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1;
}

/* ---------- Bảng dữ liệu trong bài viết (cuộn ngang trên mobile) ---------- */
.article-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 16px;
  border: 1px solid rgba(244, 239, 226, 0.12);
  border-radius: 12px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  white-space: nowrap;
}

.article-table th,
.article-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(244, 239, 226, 0.12);
}

.article-table th {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-table tbody tr:last-child td {
  border-bottom: none;
}

.article-table td:first-child,
.article-table th:first-child {
  position: sticky;
  left: 0;
  background: var(--color-bg);
}

/* ---------- Ghi chú của tôi (bảng tự điền, cuối bài viết) ---------- */
.notes {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 226, 0.16);
}

.notes-hint {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--color-text-soft);
}

.notes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.notes-line {
  min-height: 38px;
  padding: 9px 12px;
  background: var(--color-bg-frame);
  border: 1px solid rgba(244, 239, 226, 0.2);
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease;
}

.notes-line:focus {
  border-color: var(--color-primary);
}

.notes-line:empty::before {
  content: "Nhập ghi chú…";
  color: var(--color-text-soft);
}

.text-button--notes-add {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 6px 2px;
}

/* ---------- Thuyết con nhím: 3 vòng tròn + 3 vùng giao đôi + 1 tâm ----------
   Bố cục: 1 vòng ở trên (Việc tôi thích), 2 vòng ở dưới (Việc tôi giỏi / Việc xã hội
   cần) — theo đúng sơ đồ tham khảo. Toạ độ vòng tròn: top=(50%,34%) trái=(32%,68%)
   phải=(68%,68%), bán kính 32% — các nhãn/điểm neo bên dưới đều tính theo 3 tâm này. */
.venn-wrap {
  display: flex;
  justify-content: center;
}

.venn {
  position: relative;
  width: 100%;
  max-width: clamp(260px, 82vw, 380px);
  aspect-ratio: 1 / 1;
  margin: 20px auto 8px;
}

.venn__circle {
  position: absolute;
  width: 64%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.venn__circle:hover,
.venn__circle:focus-within {
  transform: scale(1.03);
  z-index: 2;
}

.venn__circle--top {
  left: 18%;
  top: 2%;
  background: rgba(143, 201, 122, 0.22);
  border: 1.5px solid rgba(143, 201, 122, 0.55);
}

.venn__circle--left {
  left: 0;
  top: 36%;
  background: rgba(226, 114, 91, 0.22);
  border: 1.5px solid rgba(226, 114, 91, 0.55);
}

.venn__circle--right {
  right: 0;
  top: 36%;
  background: rgba(232, 163, 61, 0.22);
  border: 1.5px solid rgba(232, 163, 61, 0.55);
}

/* Khung neo vô hình — cùng vị trí/kích thước với vòng tròn tương ứng, nhưng được vẽ
   sau (xem renderCareerVenn ở app.js) nên chữ bên trong luôn nổi trên mọi vòng tròn,
   kể cả ở phần 2-3 vòng đè lên nhau. pointer-events: none để không chặn click vào
   phần vòng tròn không có chữ; .venn__label bên trong bật lại pointer-events cho nút. */
.venn__label-anchor {
  position: absolute;
  width: 64%;
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

.venn__label-anchor--top {
  left: 18%;
  top: 2%;
}

.venn__label-anchor--left {
  left: 0;
  top: 36%;
}

.venn__label-anchor--right {
  right: 0;
  top: 36%;
}

/* Nhãn đặt ở phần "khoảng trống" riêng của từng vòng (không giao với 2 vòng còn lại),
   neo bằng toạ độ %/% rồi tự căn giữa quanh điểm neo đó — tránh đè lên đường cong. */
.venn__label {
  position: absolute;
  width: 56%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: auto;
}

.venn__label-anchor--top .venn__label {
  left: 50%;
  top: 16%;
  transform: translate(-50%, -50%);
}

.venn__label-anchor--left .venn__label {
  left: 18%;
  top: 78%;
  width: 48%;
  transform: translate(-50%, -50%);
}

.venn__label-anchor--right .venn__label {
  left: 82%;
  top: 78%;
  width: 48%;
  transform: translate(-50%, -50%);
}

.text-button--venn {
  flex-direction: column;
  gap: 4px;
  font-size: clamp(12.5px, 3.1vw, 15px);
  font-weight: 700;
  line-height: 1.22;
}

.text-button--venn .text-button__count {
  font-size: 0.6em;
}

/* 3 vùng giao đôi (chỉ giao 2/3 vòng) — chỉ là chú thích mô tả, không phải nút bấm,
   đặt tại điểm nằm trong đúng 2 vòng liên quan và ngoài vòng còn lại. */
.venn__overlap {
  position: absolute;
  width: 34%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.venn__overlap--top-left {
  left: 32%;
  top: 46%;
}

.venn__overlap--top-right {
  left: 68%;
  top: 46%;
}

.venn__overlap--bottom {
  left: 50%;
  top: 77%;
}

.venn__overlap-text {
  margin: 0;
  font-size: clamp(10.5px, 2.4vw, 12px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-soft);
}

/* Vùng giao cả 3 vòng ("Nghề nghiệp lý tưởng") — 3 lớp clip-path lồng nhau, mỗi lớp
   cắt theo đúng 1 vòng tròn (toạ độ khớp .venn__circle--top/left/right ở trên), nên
   phần hiện ra cuối cùng chính là giao đúng hình học của cả 3, tô vàng nổi bật. */
.venn__center {
  position: absolute;
  inset: 0;
  clip-path: circle(32% at 50% 34%);
  filter: drop-shadow(0 0 10px rgba(242, 183, 5, 0.85));
  pointer-events: none;
}

.venn__center-b {
  position: absolute;
  inset: 0;
  clip-path: circle(32% at 32% 68%);
}

.venn__center-c {
  position: absolute;
  inset: 0;
  clip-path: circle(32% at 68% 68%);
  background: rgba(242, 183, 5, 0.85);
}

/* Khung vô hình rộng hơn hình vàng thấy được một chút — để vùng chạm dễ bấm hơn
   mà chữ hiển thị vẫn gọn bên trong hình vàng (nút chiếm trọn khung này). */
.venn__center-label {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 38%;
  height: 28%;
  transform: translate(-50%, -50%);
}

.text-button--venn-center {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  text-align: center;
  font-size: clamp(11px, 2.6vw, 13px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-highlight-red);
}

/* ---------- Pop-up chi tiết (3 chữ trong khung trung tâm) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  max-height: 82vh;
  overflow-y: auto;
  background: var(--color-bg-frame);
  border: 1px solid rgba(244, 239, 226, 0.35);
  border-radius: 24px;
  padding: 28px 24px;
  transform: scale(0.94) translateY(14px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.modal-title {
  margin: 0;
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 800;
  color: var(--color-primary);
}

.text-button--close {
  font-size: 18px;
  color: var(--color-text-soft);
  padding: 2px 4px;
}

.modal-section-list {
  margin-top: 8px;
}

.modal-section {
  border-top: 1px solid rgba(244, 239, 226, 0.12);
}

.modal-section:last-child {
  border-bottom: 1px solid rgba(244, 239, 226, 0.12);
}

.text-button--modal-section {
  width: 100%;
  padding: 14px 2px;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
}

.modal-section__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.modal-section.is-open .modal-section__body {
  grid-template-rows: 1fr;
}

.modal-section__body-inner {
  overflow: hidden;
  min-height: 0;
}

.modal-item-list {
  list-style: none;
  margin: 0;
  padding: 0 0 16px 4px;
}

.modal-item-list li {
  padding: 8px 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.modal-section__note {
  margin: 0;
  padding: 0 0 16px 4px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.modal-item-list li::before {
  content: "— ";
  color: var(--color-primary);
}

/* ---------- Hiệu ứng chuyển màn hình ---------- */
@keyframes viewEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view-enter {
  animation: viewEnter 0.3s ease;
}
