@font-face {
  font-family: "MyCustomFont";
  src: url("../assets/fonts/samarkan.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* === Base / Global === */
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: #f5f5f5;
}

mark {
  background-color: yellow;
}

.relation-highlight {
  color: #da7343ba;
  font-weight: 600;
  text-shadow:
    1px 1px 0 #f5cfcf,
    0 0 3px rgba(255, 196, 169, 0.834),
    0 0 5px rgba(15, 96, 194, 0.211);
  font-style: italic;
}

/* === Shared page titles === */
.page-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4c4034;
  margin: 0 0 1.6rem;
}

.section-title {
  font-size: 1.2rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  display: block;
  margin-top: 0.5rem;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 74, 56, 0.6), transparent);
}

.section-title.is-small {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

/* === Header / Navigation === */
.site-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 1.3rem;
  height: auto;
  background-color: #312d2dc3;
  color: white;
  border-bottom: none;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo-icon {
  height: 40px;
  width: auto;
}

.letter-logo {
  height: 26px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "samarkan", sans-serif;
  letter-spacing: 0.1em;
}

.site-nav {
  position: absolute;
  left: max(50%, 500px);
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  min-width: 300px;
}

.site-nav a {
  margin-left: 1.5rem;
  color: white;
  text-decoration: none;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  text-decoration: underline;
  color: white;
}

@media (max-width: 1000px) {
  .site-nav {
    left: 55%;
    gap: 1.1rem;
  }

  .site-nav a {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 820px) {
  .site-nav {
    left: 58%;
    gap: 0.9rem;
  }

  .site-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .letter-logo {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-nav {
    left: 60%;
    gap: 0.7rem;
  }

  .site-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }
}

/* === Home Page === */
body.home-floating-nav .site-header {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

body.home-floating-nav main {
  margin: 0;
  padding: 0;
}

.home-menu-toggle {
  position: fixed;
  right: 1rem;
  top: 1.9rem;
  z-index: 1500;
  width: 3.6rem;
  height: 3.6rem;
  border: none;
  border-radius: 0;
  background: rgba(56, 56, 56, 0.82);
  color: #f8f5f2;
  font-size: 1.95rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.home-menu-toggle:hover {
  background: rgba(56, 56, 56, 0.96);
  transform: translateY(-1px);
}

.home-side-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 82vw);
  background: rgba(24, 24, 24, 0.95);
  color: #f2eee8;
  transform: translateX(102%);
  transition: transform 0.28s cubic-bezier(.2, .7, .12, 1);
  z-index: 1450;
  padding-top: 5.2rem;
  box-shadow: -12px 0 28px rgba(0, 0, 0, 0.38);
}

.home-side-nav.open {
  transform: translateX(0);
}

.home-side-nav a {
  display: block;
  color: #f2eee8;
  text-decoration: none;
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.12rem;
  font-weight: 500;
  font-family: Georgia, serif;
}

.home-side-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1400;
}

.home-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  background-image: url("../assets/Chinese\ logotype\ ver1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #222;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 200px;
  min-height: 400px;
  padding: 4rem 1rem;
  margin-top: 0;
  box-shadow: inset 0 34px 62px -34px rgba(0, 0, 0, 0.44);
}

.hero h1 {
  font-size: 7rem;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin: 0.5rem 0 0.3rem;
  color: #ffffff;
  letter-spacing: 0.09em;
  transform: scaleX(1.1) scaleY(0.8);
  transform-origin: center;
  text-shadow:
    0 0 10px rgba(245, 240, 230, 0.2),
    0 6px 22px rgba(10, 12, 18, 0.46),
    0 16px 44px rgba(8, 10, 14, 0.4),
    0 0 34px rgba(178, 194, 220, 0.14);
}

.hero p {
  font-size: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  opacity: 0.92;
  margin: 0.5rem 0 0;
  letter-spacing: 0.12em;
  text-shadow:
    0 0 8px rgba(243, 237, 227, 0.16),
    0 4px 16px rgba(9, 11, 16, 0.42),
    0 0 18px rgba(166, 183, 210, 0.12);
}

.intro-text {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 4rem auto 1rem;
  padding: 0 2rem;
  text-align: center;
  color: #111;
}

.cta-button {
  display: inline-block;
  background-color: #444;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-style: italic;
  font-weight: 400px;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 6rem;
  margin-top: 3rem;
}

.cta-button:hover {
  background-color: #222;
}

/* === Visualization Page === */
.graph-shell {
  position: relative;
  height: 620px;
  margin: 3rem auto;
  max-width: 1100px;
  border-radius: 16px;
  background: #fffefb;
  border: 1px solid rgba(122, 96, 68, 0.15);
  box-shadow: 0 16px 32px rgba(31, 31, 31, 0.05);
  overflow: hidden;
}

.graph-canvas {
  height: 100%;
}

.graph-controls {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.graph-shell:hover .graph-controls {
  opacity: 1;
  transform: translateY(0);
}

.graph-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(122, 96, 68, 0.25);
  background: #fffdf9;
  color: #4b3b28;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(31, 31, 31, 0.06);
  cursor: pointer;
}

/* === Search Page === */
.search-page {
  max-width: 1000px;
  margin: 2.4rem auto;
  padding: 0 2rem 3rem;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f2a25;
}

.filter-box {
  background: #fffdf9;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 18px 32px rgba(31, 31, 31, 0.05);
}

.filter-box label {
  display: inline-block;
  margin: 0.5rem 1.5rem 0.5rem 0;
  font-size: 1.05rem;
  line-height: 1.8;
  vertical-align: middle;
  font-family: Georgia, serif;
}

.search-controls input[type="text"],
.search-controls select,
.search-controls button {
  font-family: Georgia, serif;
  font-size: 1rem;
  height: 2.6rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(122, 96, 68, 0.25);
  border-radius: 8px;
  box-shadow:
    0 10px 20px rgba(31, 31, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.search-controls input[type="text"] {
  background-color: #fffefb;
  width: 260px;
}

.search-controls button,
.search-controls select {
  background-color: #444;
  color: white;
  border: none;
  font-weight: 500;
  text-align: center;
}

.search-controls button:hover,
.search-controls select:hover {
  background-color: #222;
  transform: translateY(-1px);
}

.search-controls select:focus,
.search-controls input[type="text"]:focus,
.search-controls button:focus {
  outline: none;
  box-shadow:
    0 12px 24px rgba(31, 31, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.search-controls select option {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  background-color: #444;
  color: white;
}

.search-page input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #6a4a2a;
}

.results-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background-color: #fffdf9;
  border-radius: 12px;
}

.result-card {
  background: #fffefb;
  border-radius: 12px;
  border: 1px solid rgba(122, 96, 68, 0.12);
  border-left: 5px solid #c8a15a;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.6rem;
  box-shadow: 0 14px 28px rgba(31, 31, 31, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: Georgia, serif;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(31, 31, 31, 0.1);
}

.result-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4b3b28;
}

.result-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0.8rem 0;
}

.result-section {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: block;
}

.result-section strong {
  color: #6a4a2a;
}

.quote-box {
  border-left: 4px solid #c8a15a;
  background-color: #f8f3e8;
  font-style: italic;
  padding: 1.2rem 1.5rem 1.2rem 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.05rem;
  color: #4b3b28;
}

.quote-box:hover {
  transform: translateY(-3px);
  box-shadow: 4px 6px 14px rgba(0, 0, 0, 0.16);
}

.quote-title {
  font-style: italic;
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #d8c6a1;
  padding-bottom: 0.3rem;
  color: #6e543c;
}

.related-box strong {
  display: inline-block;
  margin-right: 0.5em;
}

.related-box ul {
  display: inline-block;
  margin-left: 1em;
}

.related-details {
  margin-top: 1.5rem;
}

/* === Transcriptions Library === */
.transcription-hero {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 2rem 1.6rem;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-family: Georgia, serif;
  max-width: 1000px;
  margin: 2.4rem auto 0;
}

.transcription-hero-text p {
  max-width: 620px;
  line-height: 1.7;
  margin: 0;
  color: #333;
}

.transcription-search {
  padding: 2rem;
  background: #fffdf9;
  font-family: Georgia, serif;
  max-width: 1000px;
  margin: 0 auto;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

#manuscriptSearch {
  flex: 1 1 280px;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(122, 96, 68, 0.25);
  font-size: 1rem;
  background: #fffefb;
  font-family: Georgia, serif;
  box-shadow:
    0 10px 20px rgba(31, 31, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.search-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-button {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 96, 68, 0.35);
  background: transparent;
  color: #6e4b22;
  cursor: pointer;
  font-family: Georgia, serif;
  box-shadow:
    0 8px 16px rgba(31, 31, 31, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.tag-button.is-active {
  background: #6a4a2a;
  color: #fff;
  box-shadow:
    0 10px 18px rgba(31, 31, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.transcription-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1rem 2rem 3rem;
  background: #fffdf9;
  font-family: Georgia, serif;
  max-width: 1000px;
  margin: 0 auto;
}

.manuscript-card {
  display: flex;
  flex-direction: column;
  background: #fffefb;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(122, 96, 68, 0.1);
  box-shadow: 0 14px 28px rgba(31, 31, 31, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.manuscript-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(31, 31, 31, 0.1);
}

.card-header h2 {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.card-subtitle {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.95rem;
}

.card-body {
  margin-top: 1rem;
  color: #333;
}

.card-body p {
  margin: 0.45rem 0;
}

.card-body ul {
  margin: 0.15rem 0 0.55rem 1.2rem;
  padding: 0;
  list-style: disc;
}

.card-body ul li {
  margin: 0.2rem 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.card-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.card-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: #c8b8a6;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(35, 24, 15, 0.12);
}

.card-link.is-disabled {
  background: #c8b8a6;
  cursor: not-allowed;
}

/* === Manuscript Workspace === */
.manuscript-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: #f7f2e8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: Georgia, serif;
}

.manuscript-subtitle {
  margin: 0.6rem 0 0;
  color: #4b4b4b;
}

.manuscript-meta {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: #2f2f2f;
}

.manuscript-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 2rem;
  padding: 2rem;
  background: #fffefb;
  font-family: Georgia, serif;
}

.folio-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.folio-toolbar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.tool-button {
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #c9bda9;
  background: #fff;
}

.tool-hint {
  font-size: 0.85rem;
  color: #7b6a55;
}

.folio-placeholder {
  background: #f2ebdf;
  border-radius: 16px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.folio-placeholder-inner p {
  margin: 0.6rem 0 0;
  color: #5a4d3d;
}

.folio-caption {
  font-size: 0.9rem;
  color: #6b5b47;
}

.text-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.text-tabs .tab-button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #c6b196;
  background: transparent;
  cursor: pointer;
}

.text-tabs .tab-button.is-active {
  background: #6e4b22;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.line-map {
  background: #f7f3ea;
  padding: 1rem;
  border-radius: 12px;
}

.line-map-title {
  font-weight: 600;
}

.line-map-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.line-chip {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #c9bda9;
  background: #fff;
}

.tei-panel {
  margin-top: 1rem;
}

.tei-raw {
  background: #2a2622;
  color: #f1e9dd;
  padding: 1rem;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
}

.tei-embed-desc {
  margin: 0.4rem 0 0.9rem;
  color: #564738;
}

.tei-embed-frame {
  width: 100%;
  min-height: 820px;
  border: 1px solid rgba(122, 96, 68, 0.22);
  border-radius: 10px;
  background: #fff;
}

.empty-state {
  padding: 1.5rem;
  background: #f7f1e7;
  border-radius: 12px;
}

.transcription-notes {
  padding: 2rem;
  background: #fffdf9;
  font-family: Georgia, serif;
  max-width: 1000px;
  margin: 0 auto;
}

.transcription-notes h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .transcription-hero {
    flex-direction: column;
  }

  .manuscript-workspace {
    grid-template-columns: 1fr;
  }
}

/* === About Page === */
.about-page {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem 4rem;
  color: #2c2c2c;
  font-family: Georgia, serif;
}

.about-hero {
  padding: 1.8rem 0 1.5rem;
}

.about-hero-text h1 {
  margin: 0.4rem 0 1rem;
  font-size: 2.4rem;
}

.about-hero .page-kicker {
  margin-top: -0.4rem;
  margin-bottom: 2.8rem;
}

.about-lead {
  position: relative;
  padding: 2rem 1.6rem 1rem;
  margin-top: 2.4rem;
  background: rgba(248, 243, 235, 0.7);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(30, 22, 15, 0.08);
}

.about-lead p {
  margin: 0 0 1rem;
  line-height: 1.85;
  font-size: 1.05rem;
  color: #2f2a25;
}

.about-lead::before,
.about-lead::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 22px;
  background:
    linear-gradient(90deg,
      rgba(210, 190, 165, 0.5) 0%,
      rgba(210, 190, 165, 0.62) 45%,
      rgba(210, 190, 165, 0.5) 100%);
  border: 1px solid rgba(120, 96, 68, 0.2);
  border-radius: 6px;
  top: -14px;
  -webkit-clip-path: inset(0 round 6px);
  clip-path: inset(0 round 6px);
}

.about-lead::before {
  left: 18px;
  transform: rotate(-3deg);
}

.about-lead::after {
  right: 22px;
  transform: rotate(3deg);
}

.about-section {
  margin-top: 2.5rem;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: aboutFade 0.6s ease forwards;
}

.about-section:nth-of-type(2) {
  animation-delay: 0.05s;
}

.about-section:nth-of-type(3) {
  animation-delay: 0.12s;
}

.about-section:nth-of-type(4) {
  animation-delay: 0.2s;
}

.about-section h2 {
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: "";
  display: block;
  margin-top: 0.5rem;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 74, 56, 0.6), transparent);
}

.about-section p {
  line-height: 1.8;
  margin: 0 0 1rem;
}

.about-list {
  margin: 1rem 0 1.2rem 1.2rem;
  padding: 0;
  line-height: 1.7;
}

.about-divider {
  margin: 3rem 0 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 74, 56, 0.4), transparent);
}

@keyframes aboutFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  text-decoration: none;
  color: #3b2f22;
  background: transparent;
  transition: none;
}

.contact-pill img {
  width: 22px;
  height: 22px;
  opacity: 0.62;
  filter: grayscale(1) contrast(0.82);
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.contact-pill:hover img,
.contact-pill:focus-visible img {
  opacity: 1;
  filter: sepia(1) saturate(8) hue-rotate(-18deg) brightness(0.95) contrast(1.08);
}

@media (max-width: 900px) {
  .about-hero {
    padding: 2.2rem 0 1.2rem;
  }
}

/* === Dataset Page === */
#dataset-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem;
}

.dataset-card {
  width: 300px;
  padding: 1.5rem;
  border-radius: 0.6rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  color: white;
}

.chinese-card {
  background-color: #213b5e;
}

.sanskrit-card {
  background-color: #b85a28;
}

.number-card {
  background-color: #c69d3a;
}

.dataset-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
