/* MoonJi — The Mage's Codex
   Theme: arcane library, starfield, gilded sigils.
   Palette: deep indigo + warm gold, single accent only.
*/

:root {
  --bg-0: #07030f;
  --bg-1: #0a0418;
  --bg-2: #120832;
  --ink-0: #f4ecd8;
  --ink-1: #c8b88a;
  --ink-2: #8a7a52;
  --ink-mute: #5b5168;
  --gold: #f5c75a;
  --gold-soft: #d8a93a;
  --violet: #7a3fbf;
  --line: rgba(245, 199, 90, 0.18);
  --line-soft: rgba(245, 199, 90, 0.08);
  --serif: "Cinzel", "Times New Roman", serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-0);
  color: var(--ink-0);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============== STARFIELD CANVAS ============== */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg-1) 35%, var(--bg-0) 80%);
}

/* ============== ARCANE INTRO VEIL ============== */
.veil {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg-0);
  display: grid; place-items: center;
  transition: opacity 1.2s ease, visibility 1.2s;
}
.veil.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.veil__circle { width: 220px; height: 220px; }
.veil__sigil { width: 100%; height: 100%; animation: sigilSpin 18s linear infinite; }
@keyframes sigilSpin {
  to { transform: rotate(360deg); }
}
.veil__line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.veil__line--top { top: 50%; transform: translateY(-90px); }
.veil__line--bot { top: 50%; transform: translateY(90px); }
.veil__text {
  position: absolute; top: 60%;
  font-family: var(--serif); letter-spacing: 0.4em; font-size: 11px;
  color: var(--ink-1); opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }

/* ============== HERO ============== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 32px 6vw 80px;
  display: flex; flex-direction: column;
}

.hero__rune {
  position: absolute; color: var(--gold);
  opacity: 0.15; font-size: 28px;
  animation: runeFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.rune--1 { top: 18%; left: 8%; animation-delay: 0s; }
.rune--2 { top: 32%; right: 10%; animation-delay: 1.5s; }
.rune--3 { bottom: 22%; left: 12%; animation-delay: 3s; }
.rune--4 { top: 60%; right: 18%; animation-delay: 4.5s; }
@keyframes runeFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

.nav {
  display: flex; gap: 32px; justify-content: flex-end;
  font-family: var(--serif); letter-spacing: 0.25em; font-size: 11px;
  color: var(--ink-1);
}
.nav__link {
  position: relative; padding: 6px 0;
  transition: color 0.3s;
}
.nav__link:hover { color: var(--gold); }
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s, left 0.3s;
}
.nav__link:hover::after { width: 100%; left: 0; }

.hero__inner {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 60px; align-items: center;
  padding: 60px 0;
}

/* --- PORTRAIT --- */
.hero__portrait {
  position: relative;
  width: 100%; max-width: 320px; aspect-ratio: 1;
  margin: 0 auto;
}
.portrait__core {
  position: absolute; inset: 18%;
  border-radius: 50%; overflow: hidden;
  background: var(--bg-2);
  z-index: 3;
  box-shadow: 0 0 60px rgba(245, 199, 90, 0.25);
}
.portrait__core img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.portrait__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.portrait__ring--outer {
  inset: -10px; opacity: 0.4;
  border-style: dashed;
  animation: spinSlow 30s linear infinite;
}
.portrait__ring--mid {
  inset: 8px; opacity: 0.6;
  border-color: var(--gold-soft);
  animation: spinSlow 22s linear infinite reverse;
}
.portrait__ring--inner {
  inset: 22px; opacity: 0.3;
  border-color: var(--gold);
  border-style: dotted;
  animation: spinSlow 16s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.portrait__sigils {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
}
.ps {
  position: absolute;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 18px;
  opacity: 0.7;
  animation: runeFloat 6s ease-in-out infinite;
}
.ps--tl { top: 5%; left: 8%; }
.ps--tr { top: 5%; right: 8%; animation-delay: 1.5s; }
.ps--br { bottom: 5%; right: 8%; animation-delay: 3s; }
.ps--bl { bottom: 5%; left: 8%; animation-delay: 4.5s; }

/* --- NAME --- */
.hero__name { text-align: center; }
.hero__pretitle {
  font-family: var(--serif); font-size: 11px; letter-spacing: 0.4em;
  color: var(--ink-2); margin-bottom: 12px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex; align-items: baseline; justify-content: center;
  gap: 4px;
}
.ht__word { color: var(--ink-0); }
.ht__word--gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245, 199, 90, 0.4);
}
.ht__dot { color: var(--gold); font-size: 0.6em; }
.hero__alias {
  font-family: var(--body); font-size: 13px; color: var(--ink-2);
  margin-bottom: 24px; font-style: italic;
}
.hero__alias em { color: var(--gold); font-style: normal; font-weight: 500; }
.hero__quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px; font-style: italic; color: var(--ink-1);
  position: relative; display: inline-block; padding: 0 30px;
}
.hero__quote::before, .hero__quote::after {
  content: ""; position: absolute; top: 50%;
  width: 20px; height: 1px; background: var(--gold);
}
.hero__quote::before { left: 0; }
.hero__quote::after { right: 0; }

/* --- PLATE (info card) --- */
.hero__plate {
  border: 1px solid var(--line);
  padding: 24px;
  background: linear-gradient(180deg, rgba(245, 199, 90, 0.04), transparent);
  max-width: 280px; margin: 0 auto;
  position: relative;
}
.hero__plate::before {
  content: ""; position: absolute; top: -1px; left: 20%;
  width: 60%; height: 1px; background: var(--gold);
}
.plate__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 12px;
}
.plate__row:last-child { border-bottom: none; }
.plate__k {
  font-family: var(--serif); letter-spacing: 0.2em;
  color: var(--ink-2); font-size: 10px;
}
.plate__v { color: var(--ink-0); font-weight: 500; }
.plate__v--retired {
  color: var(--gold-soft);
  display: flex; flex-direction: column;
  align-items: flex-end; line-height: 1.35;
  gap: 2px;
}
.plate__v--retired > span:first-child {
  color: var(--gold);
  font-weight: 600;
}
.plate__v--team {
  color: var(--ink-0);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

/* --- CTA --- */
.hero__cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  font-family: var(--serif); font-size: 11px; letter-spacing: 0.3em;
  border: 1px solid var(--gold);
  color: var(--bg-0);
  background: var(--gold);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.cta:hover::before { transform: translateX(100%); }
.cta--ghost {
  background: transparent; color: var(--gold);
}
.cta--ghost:hover { background: var(--gold); color: var(--bg-0); }
.cta__arr { font-size: 14px; }
.cta--big { padding: 16px 40px; font-size: 13px; }

/* ============== RUNEBAR (stats ticker) ============== */
.runebar {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 4, 24, 0.6);
  backdrop-filter: blur(8px);
  padding: 18px 0;
  overflow: hidden;
  margin: 40px 0 80px;
}
.runebar__track {
  display: flex; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.runebar__inner {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  padding-left: 40px;
}
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}
.rb__cell { display: flex; align-items: baseline; gap: 6px; }
.rb__cell b {
  font-family: var(--serif); font-size: 22px;
  color: var(--gold); font-weight: 700;
}
.rb__cell i { font-style: normal; color: var(--ink-2); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.rb__sep { color: var(--gold); opacity: 0.5; font-size: 14px; }

/* ============== SECTION HEAD ============== */
.sec__head {
  text-align: center; margin-bottom: 60px;
  padding: 0 6vw;
}
.sec__kicker {
  font-family: var(--serif); font-size: 10px;
  letter-spacing: 0.4em; color: var(--ink-2);
  margin-bottom: 16px;
}
.sec__title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; letter-spacing: 0.05em;
  line-height: 1.1; margin-bottom: 16px;
}
.sec__title .g { color: var(--gold); font-style: italic; }
.sec__sub {
  color: var(--ink-2); font-size: 14px; max-width: 500px; margin: 0 auto;
  font-style: italic;
}

/* ============== CODEX (heroes) ============== */
.codex { position: relative; z-index: 2; padding: 80px 6vw; }
.codex__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.hero-card {
  border: 1px solid var(--line);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(122, 63, 191, 0.06), transparent);
  transition: transform 0.4s, border-color 0.4s;
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.hero-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.hero-card:hover::before { transform: scaleX(1); }
.hc__crest {
  font-size: 36px; color: var(--gold);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(245, 199, 90, 0.4));
}
.hc__name {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 6px;
}
.hc__role {
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--ink-2); margin-bottom: 20px;
}
.hc__bar {
  height: 3px; background: var(--line-soft);
  margin-bottom: 12px; position: relative; overflow: hidden;
}
.hc__fill {
  height: 100%; background: linear-gradient(90deg, var(--violet), var(--gold));
  width: 0;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hc__meta { font-size: 11px; color: var(--ink-2); font-style: italic; }

/* ============== GRIMOIRE (trophies) ============== */
.grimoire { position: relative; z-index: 2; padding: 80px 6vw; }
.trophy__wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; max-width: 1200px; margin: 0 auto 60px;
}
.trophy {
  position: relative;
  border: 1px solid var(--line);
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(245, 199, 90, 0.03), transparent);
  transition: all 0.4s;
  overflow: hidden;
}
.trophy::before {
  content: ""; position: absolute;
  top: -1px; left: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.6s;
}
.trophy:hover::before { width: 100%; }
.trophy:hover { border-color: var(--gold); transform: translateY(-4px); }
.trophy--champion { border-left: 3px solid var(--gold); }
.trophy--silver { border-left: 3px solid var(--ink-1); }
.trophy--bronze { border-left: 3px solid var(--ink-2); }
.trophy--latest { border-left: 3px solid var(--violet); }
.tr__tier {
  display: inline-block;
  font-family: var(--serif); font-size: 9px; letter-spacing: 0.3em;
  color: var(--bg-0); background: var(--gold);
  padding: 3px 8px; margin-bottom: 12px;
}
.trophy--silver .tr__tier { background: var(--ink-1); }
.trophy--bronze .tr__tier { background: var(--ink-2); }
.trophy--latest .tr__tier { background: var(--violet); }
.tr__date {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-2); margin-bottom: 8px; letter-spacing: 0.1em;
}
.tr__name {
  font-family: var(--serif); font-size: 14px; font-weight: 700;
  color: var(--ink-0); margin-bottom: 6px; letter-spacing: 0.05em;
}
.tr__result { font-size: 11px; color: var(--ink-1); margin-bottom: 10px; }
.tr__prize {
  font-family: var(--serif); font-size: 12px; color: var(--gold);
  font-weight: 700;
}

.grimoire__sum {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(245, 199, 90, 0.03);
  max-width: 900px; margin: 0 auto;
}
.sum__cell { text-align: center; }
.sum__cell b {
  display: block; font-family: var(--serif); font-size: 32px;
  color: var(--gold); font-weight: 700;
}
.sum__cell i {
  font-style: normal; font-size: 10px;
  color: var(--ink-2); letter-spacing: 0.2em; text-transform: uppercase;
}
.sum__sep { color: var(--gold); opacity: 0.5; }

/* ============== CONSTELLATION (timeline) ============== */
.constellation { position: relative; z-index: 2; padding: 80px 6vw; }
.const__line {
  position: relative;
  display: flex; flex-direction: column;
  gap: 0; max-width: 800px; margin: 0 auto;
  padding-left: 40px;
}
.const__line::before {
  content: ""; position: absolute;
  left: 12px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.4;
}
.const__node {
  position: relative;
  padding: 24px 0;
  display: flex; align-items: center; gap: 24px;
  opacity: 0; transform: translateX(-20px);
  transition: all 0.6s ease;
}
.const__node.in { opacity: 1; transform: translateX(0); }
.cn__dot {
  position: absolute; left: -34px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-0);
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px rgba(245, 199, 90, 0.5);
}
.cn__dot--gold { background: var(--gold); }
.cn__dot--retired { background: var(--ink-2); border-color: var(--ink-2); box-shadow: none; }
.cn__lbl b {
  display: block; font-family: var(--serif); font-size: 22px;
  color: var(--gold); font-weight: 700; margin-bottom: 2px;
}
.cn__lbl span { font-size: 12px; color: var(--ink-1); letter-spacing: 0.1em; }
.const__now {
  display: flex; align-items: center; gap: 16px;
  max-width: 800px; margin: 40px auto 0; padding-left: 40px;
}
.const__nowtxt {
  font-family: var(--serif); font-size: 14px; letter-spacing: 0.3em;
  color: var(--gold); font-weight: 700;
}
.const__nowline { flex: 1; height: 1px; background: var(--gold); opacity: 0.5; }
.const__nowmsg { font-size: 12px; color: var(--ink-1); font-style: italic; }

/* ============== REALM (clips) ============== */
.realm { position: relative; z-index: 2; padding: 80px 6vw; }
.clips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; max-width: 1200px; margin: 0 auto 40px;
}
.clip-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer;
  transition: transform 0.4s, border-color 0.4s;
}
.clip-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.clip-card__thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.7);
  transition: filter 0.4s, transform 0.4s;
}
.clip-card:hover .clip-card__thumb { filter: brightness(0.9); transform: scale(1.05); }
.clip-card__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px;
  background: linear-gradient(180deg, rgba(7,3,15,0.6) 0%, transparent 30%, transparent 70%, rgba(7,3,15,0.9) 100%);
  z-index: 2;
}
.clip-card__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(245, 199, 90, 0.95);
  display: grid; place-items: center;
  z-index: 3;
  transition: transform 0.3s;
}
.clip-card:hover .clip-card__play { transform: translate(-50%, -50%) scale(1.1); }
.clip-card__play::after {
  content: ""; display: block;
  width: 0; height: 0;
  border-left: 16px solid var(--bg-0);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.clip-card__title {
  font-size: 12px; color: var(--ink-0);
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.realm__more { text-align: center; }

/* skeleton while loading */
.clip-card--skel {
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
}
.clip-card--skel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 199, 90, 0.05), transparent);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  to { transform: translateX(100%); }
}

/* ============== FOOTER ============== */
.foot {
  position: relative; z-index: 2;
  padding: 60px 6vw;
  border-top: 1px solid var(--line);
  text-align: center;
  background: rgba(7, 3, 15, 0.6);
}
.foot__sigil {
  font-size: 28px; color: var(--gold);
  margin-bottom: 20px; opacity: 0.6;
}
.foot__line {
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.4em;
  color: var(--gold); margin-bottom: 12px;
}
.foot__credit {
  font-size: 11px; color: var(--ink-mute);
  margin-bottom: 20px; font-style: italic;
}
.foot__credit a.foot__studio {
  color: inherit;
  border-bottom: 1px dotted var(--ink-2);
  padding-bottom: 1px;
  transition: color .3s, border-color .3s;
}
.foot__credit a.foot__studio:hover { color: var(--gold); border-color: var(--gold); }
.foot__links {
  display: flex; justify-content: center; gap: 12px;
  font-size: 11px; color: var(--ink-1);
  flex-wrap: wrap;
}
.foot__links a {
  border-bottom: 1px dotted var(--ink-2);
  transition: color 0.3s, border-color 0.3s;
}
.foot__links a:hover { color: var(--gold); border-color: var(--gold); }

/* ============== MOBILE ============== */
@media (max-width: 880px) {
  .nav { justify-content: center; gap: 20px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px; text-align: center;
  }
  .hero__portrait { max-width: 240px; }
  .hero__plate { max-width: 100%; }
  .const__line { padding-left: 32px; }
  .cn__lbl b { font-size: 18px; }
  .grimoire__sum { gap: 20px; }
  .sum__cell b { font-size: 24px; }
}

@media (max-width: 480px) {
  .nav { gap: 14px; font-size: 9px; letter-spacing: 0.2em; }
  .hero { padding: 20px 4vw 60px; }
  .hero__title { font-size: 72px; }
  .runebar { margin: 24px 0 60px; }
  .codex, .grimoire, .constellation, .realm { padding: 60px 4vw; }
  .clips { grid-template-columns: 1fr 1fr; }
}


/* Modal */
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 18px; }
.modal.is-on { display: flex; }
.modal__bg { position: absolute; inset: 0; background: rgba(4,6,12,0.88); backdrop-filter: blur(14px); }
.modal__box { position: relative; width: min(420px, 100%); max-height: 92vh; background: var(--bg-2, #1a1a1a); border: 1px solid var(--line, #333); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--line, #333); }
.modal__title { font-family: var(--font-mono, monospace); font-size: 11px; letter-spacing: 1.2px; color: var(--gold, #d4a948); text-transform: uppercase; }
.modal__close { background: transparent; border: 1px solid var(--line, #333); color: var(--ink-2, #aaa); width: 30px; height: 30px; border-radius: 8px; cursor: pointer; font-family: var(--font-mono, monospace); font-size: 13px; }
.modal__close:hover { color: var(--gold, #d4a948); border-color: var(--gold, #d4a948); }
.modal__embed { position: relative; aspect-ratio: 9/16; max-height: 70vh; background: #000; overflow: hidden; display: flex; align-items: center; justify-content: center; width: 100%; }
.modal__embed .skel { position: absolute; inset: 0; background-size: cover; background-position: center; }
.modal__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; margin: 0 auto; display: block; }
.modal__stats {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 12px 14px; border-top: 1px solid var(--line, #333);
  font-family: var(--font-mono, monospace); font-size: 10px;
  letter-spacing: 0.5px; color: var(--ink-2, #aaa);
  flex-wrap: wrap;
}
.modal__stats > span { text-align: center; flex: 1 1 auto; min-width: 50px; }
.modal__stats b { display: block; font-size: 14px; color: var(--accent, #0ff); margin-top: 2px; font-weight: 600; }
.modal__stat { text-align: center; }
.modal__stat b { display: block; font-size: 14px; font-family: var(--font-mono, monospace); color: var(--gold, #d4a948); }
.modal__stat .k { font-size: 9px; letter-spacing: 1.2px; color: var(--ink-2, #aaa); text-transform: uppercase; margin-top: 2px; }
