/* ============ 栖月 · 设计系统 ============ */

@font-face {
  font-family: 'Noto Serif SC';
  src: url('fonts/NotoSerifSC.ttf') format('truetype');
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --bg-main: #090d16;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(201, 173, 118, 0.055);
  --gold: #c9ad76;
  --gold-soft: #d8c294;
  --gold-bright: #e6ca94;
  --gold-muted: #a68c5b;
  --text: #dbe4ec;
  --text-muted: #93a0a8;
  --line: rgba(201, 173, 118, 0.16);
  --font-serif: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', 'STSong', 'Noto Serif CJK SC', serif;
  --font-display: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', 'STSong', serif;
  --font-body: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans CJK SC', sans-serif;
  --radius: 14px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }

html { height: auto; }

html, body { margin: 0; padding: 0; }

body {
  height: auto;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
}

.page {
  position: relative;
  min-height: 100vh;
}

.skyglow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 650px at 50% -8%, rgba(201, 173, 118, 0.05), transparent 62%),
    radial-gradient(900px 700px at 88% 110%, rgba(70, 96, 128, 0.10), transparent 55%);
}

canvas#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 92% at 50% 42%, transparent 58%, rgba(5, 8, 14, 0.46) 100%);
}

/* ---------- 顶栏 ---------- */

.topbar {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.moon-seal {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201, 173, 118, 0.35));
}

.moon-seal svg { width: 26px; height: 26px; }

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  color: var(--text);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ghost {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: 13px var(--font-body);
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}

.ghost:hover {
  color: var(--gold-soft);
  background: rgba(201, 173, 118, 0.06);
}

.ghost.icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
}

.ghost.icon svg { width: 18px; height: 18px; }

/* ---------- 主区 ---------- */

main {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  position: relative;
  text-align: center;
  padding: clamp(84px, 14vh, 150px) 0 clamp(56px, 9vh, 96px);
}

.moon-glow {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(640px, 90vw);
  height: 340px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center,
      rgba(201, 173, 118, 0.11),
      rgba(226, 214, 190, 0.05) 46%,
      transparent 72%);
  filter: blur(28px);
}

.brand-title {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 0;
}

.brand-title svg {
  display: block;
  width: clamp(300px, 44vw, 480px);
  height: auto;
  margin: 0 auto;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(201, 173, 118, 0.28))
          drop-shadow(0 0 42px rgba(201, 173, 118, 0.12));
}

.hero-sub {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
}

/* ---------- 双主按钮分流 ---------- */

.pill-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 58px;
}

.pill {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(201, 173, 118, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.3s ease;
}

.pill:hover {
  border-color: #c9ad76;
  background: rgba(201, 173, 118, 0.06);
  box-shadow: 0 0 15px rgba(201, 173, 118, 0.2);
  transform: translateY(-1px);
}

.pill-main {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
}

.pill-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* ---------- 板块 ---------- */

.modules {
  margin-top: clamp(72px, 10vh, 128px);
  padding-bottom: 96px;
}

.module-section {
  margin-bottom: 56px;
}

.module-section:last-child { margin-bottom: 0; }

.section-head {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
}

.section-head::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 173, 118, 0.3), rgba(201, 173, 118, 0));
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
}

.section-head span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(201, 173, 118, 0.4);
}

.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.module-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  transition:
    box-shadow 0.45s ease,
    transform 0.45s ease;
}

.module-card:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 20px rgba(201, 173, 118, 0.1),
    0 0 0 1px rgba(201, 173, 118, 0.08),
    0 16px 44px -18px rgba(0, 0, 0, 0.6);
}

.module-card.featured {
  min-height: 112px;
  padding: 28px 30px;
}

.glyph {
  flex: none;
  width: 38px;
  height: 38px;
  color: var(--gold);
  opacity: 0.82;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.module-card:hover .glyph {
  transform: rotate(-3deg) scale(1.04);
  opacity: 1;
}

.module-card.featured .glyph { width: 44px; height: 44px; }

.card-text { min-width: 0; }

.card-text h2 {
  margin: 0 0 7px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.14em;
  color: var(--text);
}

.module-card.featured .card-text h2 { font-size: 22px; }

.card-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ---------- 页脚 ---------- */

.footer {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2rem 42px;
  text-align: center;
}

.footer p {
  margin: 0;
  color: rgba(147, 160, 168, 0.5);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 9;
  transform: translateX(-50%) translateY(16px);
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(16, 22, 34, 0.9);
  border: 1px solid rgba(201, 173, 118, 0.24);
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- 响应式 ---------- */

@media (max-width: 860px) {
  .featured { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .topbar { padding: 22px 18px 0; }
  main { padding: 0 18px; }
  .footer { padding: 0 18px 30px; }
  .pill-row { flex-direction: column; align-items: stretch; }
  .pill { justify-content: center; }
  .module-card { padding: 20px 22px; }
  .featured, .grid { gap: 14px; }
  .grid.single { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============ 塔罗牌阵页 ============ */

.tarot-main {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(56px, 9vh, 110px) 2rem 60px;
  position: relative;
  z-index: 2;
}

.tarot-head { text-align: center; margin-bottom: 52px; }

.tarot-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(30px, 5vw, 42px);
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: var(--gold-soft);
}

.tarot-sub {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.step {
  animation: stepIn 0.5s ease both;
}

.step.hidden { display: none; }

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

.step-label {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gold-muted);
  margin-bottom: 18px;
  text-align: center;
}

.q-input {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 22px;
  padding: 16px 20px;
  border: 1px solid rgba(201, 173, 118, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  font: 15px var(--font-body);
  letter-spacing: 0.04em;
  outline: none;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.q-input::placeholder { color: rgba(147, 160, 168, 0.5); }

.q-input:focus {
  border-color: rgba(201, 173, 118, 0.45);
  box-shadow: 0 0 0 1px rgba(201, 173, 118, 0.18), 0 0 22px rgba(201, 173, 118, 0.08);
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid rgba(201, 173, 118, 0.28);
  border-radius: 999px;
  background: rgba(201, 173, 118, 0.07);
  color: var(--gold-soft);
  font: 14px var(--font-serif);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.btn:hover:not(:disabled) {
  border-color: #c9ad76;
  background: rgba(201, 173, 118, 0.12);
  box-shadow: 0 0 18px rgba(201, 173, 118, 0.16);
}

.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn.ghost-btn {
  background: transparent;
  border-color: rgba(201, 173, 118, 0.16);
  color: var(--text-muted);
}

.btn.loading { opacity: 0.6; pointer-events: none; }

/* 牌阵选择 */
.spread-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.spread-card {
  position: relative;
  padding: 20px 18px;
  border: 1px solid rgba(201, 173, 118, 0.13);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.spread-card:hover {
  border-color: rgba(201, 173, 118, 0.3);
  box-shadow: 0 0 18px rgba(201, 173, 118, 0.07);
}

.spread-card.selected {
  border-color: rgba(201, 173, 118, 0.55);
  background: rgba(201, 173, 118, 0.06);
  box-shadow: 0 0 22px rgba(201, 173, 118, 0.12);
}

.spread-card .s-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.spread-card .s-desc {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}

.spread-card .s-count {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(201, 173, 118, 0.5);
}

/* 牌面 */
.card-fan {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(8px, 2.4vw, 22px);
  min-height: 320px;
  padding: 20px 0 34px;
  perspective: 1200px;
}

.tarot-card {
  width: clamp(92px, 15vw, 132px);
  flex: none;
}

.tcard-pos {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(201, 173, 118, 0.55);
  margin-bottom: 12px;
  min-height: 15px;
}

.tcard-flip {
  position: relative;
  width: 100%;
  aspect-ratio: 0.62;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.tarot-card.flipped .tcard-flip { transform: rotateY(180deg); }

.tcard-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 173, 118, 0.22);
  background: #121822;
  box-shadow: 0 14px 36px -18px rgba(0, 0, 0, 0.75);
}

.tcard-back {
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 50% 30%, rgba(201, 173, 118, 0.14), transparent 58%),
    linear-gradient(160deg, #141b26, #0d1119);
}

.tcard-back::before {
  content: '';
  width: 58%;
  height: 58%;
  border: 1px solid rgba(201, 173, 118, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 173, 118, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle, transparent 52%, rgba(201, 173, 118, 0.18) 54% 56%, transparent 58%);
}

.tcard-front {
  transform: rotateY(180deg);
  background: #0e1217;
}

.tcard-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tarot-card.reversed .tcard-front img {
  transform: rotate(180deg);
}

.tcard-name {
  display: block;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  margin-top: 12px;
  min-height: 18px;
}

.tcard-name .rev { color: var(--gold-muted); font-size: 10px; margin-left: 6px; }

/* 解读区 */
.reading {
  max-width: 660px;
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: 16px;
  border: 1px solid rgba(201, 173, 118, 0.14);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  font: 15px/1.85 var(--font-body);
  letter-spacing: 0.02em;
}

.reading h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  margin: 26px 0 10px;
}

.reading h2:first-child { margin-top: 0; }

.reading h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--gold-muted);
  margin: 20px 0 8px;
}

.reading strong { color: var(--gold-soft); font-weight: 500; }

.reading p { margin: 0 0 12px; }

.reading ul, .reading ol {
  margin: 0 0 12px;
  padding-left: 22px;
}

.reading li { margin-bottom: 6px; }

.reading blockquote {
  margin: 14px 0;
  padding: 4px 0 4px 16px;
  border-left: 1px solid rgba(201, 173, 118, 0.3);
  color: var(--text-muted);
  font-style: normal;
}

.reading .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  vertical-align: -0.15em;
  background: var(--gold);
  opacity: 0.7;
  animation: blink 1s steps(2) infinite;
}

@keyframes blink { 50% { opacity: 0.15; } }

@media (max-width: 860px) {
  .spread-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .tarot-main { padding-left: 18px; padding-right: 18px; }
  .reading { padding: 22px 20px; }
  .card-fan { gap: 6px; }
}

/* ============ 六爻页 ============ */

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto 30px;
}

.method-card {
  padding: 26px 22px;
  border: 1px solid rgba(201, 173, 118, 0.16);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  border-color: rgba(201, 173, 118, 0.4);
  background: rgba(201, 173, 118, 0.05);
  box-shadow: 0 0 20px rgba(201, 173, 118, 0.1);
}

.method-card .m-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.method-card .m-desc {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}

.coin-area {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 620px;
  margin: 0 auto 26px;
}

.coin-slot {
  border: 1px solid rgba(201, 173, 118, 0.14);
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  min-height: 72px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.coin-slot.active {
  border-color: rgba(201, 173, 118, 0.5);
  background: rgba(201, 173, 118, 0.05);
  animation: stepIn 0.4s ease both;
}

.coin-slot.done { border-color: rgba(201, 173, 118, 0.3); }

.coin-slot .cs-n {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  margin-bottom: 8px;
}

.coin-slot .cs-c {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  min-height: 20px;
}

/* 卦象 */
.hexagram-panel {
  max-width: 620px;
  margin: 0 auto 30px;
  padding: 26px 30px 20px;
  border: 1px solid rgba(201, 173, 118, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hex-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hex-main {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}

.hex-arrow { color: var(--gold-muted); font-size: 14px; }

.hex-changed {
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
}

.hex-meta {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hex-lines {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yao-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yao-god {
  width: 44px;
  flex: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(201, 173, 118, 0.65);
}

.yao-tags {
  width: 34px;
  flex: none;
  display: flex;
  gap: 3px;
}

.tag {
  display: inline-block;
  min-width: 15px;
  text-align: center;
  font-size: 9.5px;
  padding: 1px 2px;
  border-radius: 3px;
  border: 1px solid rgba(201, 173, 118, 0.25);
  color: rgba(201, 173, 118, 0.7);
}

.tag.world {
  border-color: rgba(201, 173, 118, 0.6);
  color: var(--gold-soft);
}

.tag.resp { border-color: rgba(147, 160, 168, 0.4); color: var(--text-muted); }

.yao-graphic {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bar {
  display: inline-block;
  height: 9px;
  width: 58px;
  background: rgba(230, 202, 148, 0.85);
  border-radius: 2px;
}

.bar.gap { background: transparent; width: 9px; }

.yao-mark {
  margin-left: 6px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 600;
}

.yao-relation {
  width: 130px;
  flex: none;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text);
}

.reading .waiting {
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

@media (max-width: 620px) {
  .method-grid { grid-template-columns: 1fr; }
  .coin-area { grid-template-columns: repeat(3, 1fr); }
  .yao-god { width: 34px; }
  .yao-relation { width: 96px; font-size: 11px; }
  .bar { width: 42px; }
}
