:root {
  color-scheme: dark;
  --bg-dark: #080a13;
  --bg-deep: #06070d;
  --bg-card: rgba(17, 21, 37, 0.7);
  --bg-card-soft: rgba(17, 21, 37, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(139, 92, 246, 0.2);
  --border-glow-hover: rgba(6, 182, 212, 0.5);
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-gold: #f59e0b;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.45);
  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --fire: #f45d3f;
  --water: #3aa9ff;
  --wood: #57c878;
  --lightning: #ffd34d;
  --stone: #a9977b;
  --poison: #b86cff;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

[data-i18n="en"] {
  display: none !important;
}

html[data-lang="en"] [data-i18n="vi"] {
  display: none !important;
}

html[data-lang="en"] [data-i18n="en"] {
  display: revert !important;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.inline-link,
.hero-back-link {
  color: var(--accent-cyan);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.inline-link:hover,
.hero-back-link:hover {
  color: var(--text-main);
}

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

.sidebar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 100vh;
  padding: 1.5rem 1.1rem;
  overflow: auto;
  background: rgba(8, 10, 19, 0.82);
  border-right: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.brand strong {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.brand strong span {
  color: transparent;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.brand strong b {
  padding: 0.15rem 0.45rem;
  color: var(--accent-cyan);
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand em {
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 900;
}

.brand > span {
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.45;
}

.nav {
  display: grid;
  gap: 0.4rem;
}

.nav a {
  padding: 0.65rem 0.75rem;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
}

.content {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  min-height: 87px;
  padding: 1rem 1.75rem;
  background: rgba(8, 10, 19, 0.8);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-button {
  display: none;
  min-width: 54px;
  min-height: 42px;
  color: var(--text-main);
  background: rgba(17, 21, 37, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-weight: 900;
}

.language-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(17, 21, 37, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.language-toggle button {
  min-width: 44px;
  min-height: 34px;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.language-toggle button[aria-pressed="true"] {
  color: #041015;
  background: var(--accent-cyan);
}

.language-toggle button:hover {
  color: var(--text-main);
}

.language-toggle button[aria-pressed="true"]:hover {
  color: #041015;
}

.search {
  flex: 1 1 320px;
  width: min(720px, 100%);
  min-width: 0;
  min-height: 46px;
  color: var(--text-main);
  background: rgba(17, 21, 37, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  outline: none;
  padding: 0 0.9rem;
}

.search:focus {
  border-color: var(--border-glow-hover);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}

.result-count {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 5rem 2rem 5rem;
}

.page-header {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto 3rem;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

h1 {
  color: transparent;
  background: linear-gradient(135deg, #ffffff 20%, var(--text-muted) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
  font-size: 2.25rem;
  font-weight: 900;
}

h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  font-size: 1.45rem;
  font-weight: 900;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.18rem;
}

.grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.insight-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 1rem 0 2rem;
}

.card,
.insight,
.hero-image-card,
.hero-index-card,
.hero-profile,
.stat-surface {
  color: var(--text-main);
  background: var(--bg-card-soft);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  transition: var(--transition);
}

.card {
  padding: 1.25rem;
}

a.card:hover,
.hero-index-card:hover,
.hero-index-card:focus-visible {
  transform: translateY(-6px);
  color: var(--text-main);
  background: var(--bg-card);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  outline: none;
}

.card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.card p,
.insight p {
  margin: 0;
  color: var(--text-muted);
}

.insight {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
}

.insight span {
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.insight p + p {
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-subtle);
}

.en-note {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.bilingual,
.callout {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  color: var(--text-muted);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-radius: 16px;
}

.bilingual p,
.callout p {
  margin: 0;
  max-width: 1050px;
}

.bilingual strong {
  display: inline-flex;
  min-width: 34px;
  color: var(--text-main);
}

.metric {
  display: block;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.badge-row,
.hero-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  width: fit-content;
  padding: 0.2rem 0.65rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge.fire { border-color: color-mix(in srgb, var(--fire), transparent 30%); color: #ffb19f; }
.badge.water { border-color: color-mix(in srgb, var(--water), transparent 30%); color: #9bd4ff; }
.badge.wood { border-color: color-mix(in srgb, var(--wood), transparent 30%); color: #a5e8b8; }
.badge.lightning { border-color: color-mix(in srgb, var(--lightning), transparent 30%); color: #ffe28c; }
.badge.stone { border-color: color-mix(in srgb, var(--stone), transparent 30%); color: #dccfb9; }
.badge.poison { border-color: color-mix(in srgb, var(--poison), transparent 30%); color: #d7b6ff; }

.table-shell {
  display: grid;
  gap: 0.5rem;
}

.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-actions {
  display: flex;
  gap: 0.5rem;
}

.table-actions button,
.hero-zoom-controls button,
.image-lightbox-close {
  color: var(--text-main);
  background: rgba(17, 21, 37, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: var(--transition);
}

.table-actions button {
  min-width: 38px;
  min-height: 34px;
}

.table-actions button:hover,
.hero-zoom-controls button:hover,
.image-lightbox-close:hover {
  border-color: var(--border-glow-hover);
  background: var(--bg-card);
}

.table-wrap {
  overflow: auto;
  background: rgba(17, 21, 37, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  scrollbar-color: var(--accent-cyan) rgba(17, 21, 37, 0.7);
  scrollbar-width: thin;
}

.table-wrap::-webkit-scrollbar {
  height: 10px;
}

.table-wrap::-webkit-scrollbar-track {
  background: rgba(17, 21, 37, 0.7);
}

.table-wrap::-webkit-scrollbar-thumb {
  background: var(--accent-cyan);
  border-radius: 999px;
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
  text-align: left;
  font-size: 0.82rem;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--text-main);
  background: rgba(17, 21, 37, 0.94);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  color: var(--text-muted);
}

tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.prose {
  max-width: 1000px;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose code,
code {
  padding: 0.12rem 0.35rem;
  color: #eaf4ff;
  background: rgba(6, 7, 13, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}

.source-list {
  display: grid;
  gap: 0.5rem;
}

.source-list code {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-gallery,
.hero-codex {
  --hero-card-size: 250px;
  margin-top: 2rem;
}

.hero-gallery-head,
.hero-codex-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-gallery-head h2,
.hero-codex-head h2 {
  margin-top: 0;
}

.hero-zoom-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  padding: 0.5rem;
  background: rgba(17, 21, 37, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.hero-zoom-controls button {
  width: 38px;
  height: 34px;
  font-size: 1.25rem;
  line-height: 1;
}

.hero-zoom-controls input {
  width: 150px;
  accent-color: var(--accent-cyan);
}

.hero-filter-toolbar {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.25rem;
  padding: 1rem;
  background: rgba(6, 7, 13, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
}

.hero-filter-group {
  display: grid;
  gap: 0.55rem;
}

.hero-filter-group strong {
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  color: var(--text-muted);
  background: rgba(17, 21, 37, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: var(--transition);
}

.filter-chip span {
  min-width: 1.45rem;
  padding: 0.1rem 0.35rem;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  text-align: center;
}

.filter-chip:hover,
.filter-chip.active {
  color: var(--text-main);
  border-color: var(--border-glow-hover);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.08);
}

.hero-image-grid,
.hero-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, var(--hero-card-size)));
  gap: 1rem;
  align-items: stretch;
  justify-content: start;
}

.hero-image-card,
.hero-index-card {
  display: grid;
  grid-template-rows: minmax(190px, var(--hero-card-size)) auto;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
}

.hero-image-frame {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  background: rgba(8, 10, 19, 0.6);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-image-button {
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding: 0.75rem;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.hero-image-button img,
.hero-index-card .hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.hero-index-card:hover .hero-image-frame img {
  transform: scale(1.04);
}

.hero-image-missing {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 180px;
  padding: 1.2rem;
  color: var(--text-dim);
  text-align: center;
}

.hero-image-info,
.hero-index-card-body {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  padding: 1rem;
}

.hero-image-info strong,
.hero-image-info span,
.hero-index-card-body h3,
.hero-index-card-body p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-image-info span,
.hero-index-card-body > span {
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-index-card-body h3 {
  margin: 0;
  font-size: 1rem;
}

.hero-index-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
}

.hero-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 680px), 1fr));
  gap: 1rem;
  align-items: start;
}

.hero-profile {
  display: grid;
  grid-template-columns: minmax(180px, var(--hero-card-size)) minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  padding: 1rem;
  border-radius: 24px;
}

.hero-profile:target {
  border-color: var(--border-glow-hover);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}

.hero-profile-media {
  min-width: 0;
}

.hero-profile-media .hero-image-frame {
  width: 100%;
  height: var(--hero-card-size);
  overflow: hidden;
  border-radius: 16px;
}

.hero-profile-body {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.hero-profile-header {
  display: grid;
  gap: 0.45rem;
}

.hero-profile-header > span {
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-profile-header h3 {
  margin: 0;
  font-size: 1.35rem;
}

.hero-profile section {
  min-width: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-profile h4 {
  margin: 0 0 0.6rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-profile dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.hero-profile dl > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr);
  gap: 0.75rem;
  min-width: 0;
}

.hero-profile dt {
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-profile dd {
  margin: 0;
  min-width: 0;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.hero-profile dd p {
  margin: 0;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 0.75rem;
  padding: 54px 18px 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

.image-lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 82vh;
  object-fit: contain;
}

.image-lightbox strong {
  color: var(--text-main);
  overflow-wrap: anywhere;
}

.image-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
}

body.lightbox-open {
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 20px 44px rgba(6, 182, 212, 0.2);
  transform: translateY(-2px);
}

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

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(82vw, 320px);
    transform: translateX(-105%);
    transition: transform 160ms ease;
  }

  .wiki-shell.nav-open .sidebar {
    transform: translateX(0);
  }

  .nav-button {
    display: inline-grid;
    place-items: center;
  }

  .topbar {
    min-height: 70px;
    padding: 0.8rem 1rem;
  }

  .page {
    padding: 4rem 1.25rem 4rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-gallery-head,
  .hero-codex-head {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-zoom-controls {
    width: 100%;
    justify-content: space-between;
  }

  .hero-zoom-controls input {
    width: min(100%, 220px);
    flex: 1 1 auto;
  }

  .hero-filter-toolbar {
    border-radius: 16px;
  }

  .hero-profile {
    grid-template-columns: 1fr;
  }

  .hero-profile-media .hero-image-frame {
    height: min(var(--hero-card-size), 70vw);
  }
}

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

  .search {
    flex-basis: 180px;
  }

  .result-count {
    display: none;
  }

  .page {
    padding: 3rem 1.25rem 3.5rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1rem;
  }

  .grid,
  .insight-grid,
  .hero-image-grid,
  .hero-index-grid {
    grid-template-columns: 1fr;
  }

  .table-toolbar {
    display: none;
  }

  .table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  table {
    border-collapse: separate;
    border-spacing: 0;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bg-card-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
  }

  td {
    display: grid;
    grid-template-columns: minmax(108px, 36%) minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    overflow-wrap: anywhere;
  }

  td::before {
    content: attr(data-label);
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  td:last-child {
    border-bottom: 0;
  }
}
