/* ═══════════════════════════════════════════
   VELA NOVA — panels/astro.css
   Landing · 星盘Panel · 轮播图
   ═══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   Landing Hero（全屏两列）
   ══════════════════════════════════════════ */
.land { padding: 52px 56px 60px; }

/* Hero标题 */
.hero-ey {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  display: block;
}
.hero-h {
  font-family: var(--fd);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-h em { font-style: italic; color: var(--gold); }
.hero-b {
  font-size: 15px;
  color: var(--white3);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
}

/* Hero两列布局 */
.hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}
.hero-copy {
  padding: 52px 48px 52px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--glass-border);
}
.hero-carousel { padding: 0; position: relative; overflow: hidden; }

/* ══════════════════════════════════════════
   博客轮播图
   ══════════════════════════════════════════ */
.cv-wrap     { height: 100%; display: flex; flex-direction: column; }
.cv-viewport { flex: 1; overflow: hidden; position: relative; min-height: 300px; }
.cv-track    { display: flex; height: 100%; transition: transform 0.42s cubic-bezier(0.4,0,0.2,1); }
.cv-slide    { min-width: 100%; height: 100%; position: relative; cursor: pointer; display: block; text-decoration: none; }
.cv-img      { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.cv-grad     { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 55%, transparent 100%); }
.cv-info     { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px 16px; }
.cv-tag      { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.cv-title    { font-family: var(--fd); font-size: 19px; font-weight: 300; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.cv-read     { font-size: 11px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 5px; }
.cv-read::before { content: ''; width: 14px; height: 1px; background: rgba(255,255,255,0.3); display: block; }

.cv-controls { display: flex; align-items: center; gap: 8px; padding: 10px 16px 12px; background: var(--forest); }
.cv-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border2);
  background: none;
  cursor: pointer;
  color: var(--white3);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast);
  font-family: var(--fb);
  line-height: 1;
  flex-shrink: 0;
}
.cv-btn:hover { border-color: var(--sage); color: var(--sage); }
.cv-dots { display: flex; gap: 5px; align-items: center; }
.cv-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--glass-border2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.22s;
}
.cv-dot.on { background: var(--gold); width: 16px; border-radius: 3px; }
.cv-cnt    { font-size: 11px; color: var(--white4); margin-left: auto; }
.cv-lbl    { font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white4); margin-left: auto; margin-right: 8px; }

/* ══════════════════════════════════════════
   Astro Landing（星盘输入页）
   ══════════════════════════════════════════ */
.astro-landing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--topbar-h));
  position: relative;
}
.astro-left {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.astro-right {
  position: relative;
  overflow: hidden;
  background: var(--moss);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
}

.astro-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.astro-h1 {
  font-family: var(--fd);
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.astro-h1 em { color: var(--gold); font-style: italic; }
.astro-sub {
  font-size: 15px;
  color: var(--white3);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

/* 星空Canvas背景 */
.astro-stars { position: absolute; inset: 0; overflow: hidden; }
.star {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
}

/* 星盘可视化区域 */
.astro-viz {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background: radial-gradient(ellipse at 50% 40%, rgba(196,163,80,0.06) 0%, rgba(10,18,12,0.8) 70%);
}
.astro-viz-canvas  { position: absolute; inset: 0; width: 100%; height: 100%; }
.astro-viz-center  { position: relative; z-index: 2; text-align: center; pointer-events: none; }
.viz-sign {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 8px;
  animation: signPulse 4s ease-in-out infinite;
}
.viz-sign-name { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
.viz-await     { font-size: 10px; color: rgba(196,163,90,0.5); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; }

/* 下方卡片区 */
.astro-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(255,255,255,0.06); }

/* ══════════════════════════════════════════
   Sample Chart（健康星盘样卡）
   ══════════════════════════════════════════ */
.sample-chart { padding: 20px; border-right: 1px solid rgba(255,255,255,0.06); }
.sc-header    { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sc-badge     { width: 36px; height: 36px; border-radius: 50%; background: rgba(196,163,90,0.12); border: 1px solid rgba(196,163,90,0.3); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.sc-title     { font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.3; }
.sc-subtitle  { font-size: 10px; color: var(--white4); margin-top: 1px; }
.sc-sample-tag { margin-left: auto; font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(196,163,90,0.1); border: 1px solid rgba(196,163,90,0.2); border-radius: 20px; padding: 2px 7px; white-space: nowrap; }

.sc-planets   { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 12px; }
.sc-planet    { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; padding: 6px 8px; display: flex; align-items: center; gap: 6px; }
.sc-planet-emoji { font-size: 12px; width: 16px; text-align: center; flex-shrink: 0; }
.sc-planet-name  { font-size: 9px; color: var(--white4); margin-bottom: 1px; }
.sc-planet-sign  { font-size: 11px; font-weight: 500; color: var(--white); }

.sc-insight       { background: rgba(196,163,90,0.05); border-left: 2px solid var(--gold); border-radius: 0 6px 6px 0; padding: 8px 10px; margin-bottom: 10px; }
.sc-insight-label { font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.sc-insight-text  { font-size: 11.5px; color: var(--white2); line-height: 1.5; }

.sc-bars      { margin-bottom: 10px; }
.sc-bar-row   { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.sc-bar-label { font-size: 10px; color: var(--white4); width: 60px; flex-shrink: 0; }
.sc-bar-bg    { flex: 1; height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.sc-bar-fill  { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--sage), var(--gold)); transition: width 1.2s ease; }
.sc-bar-val   { font-size: 10px; color: var(--white3); width: 26px; text-align: right; flex-shrink: 0; }

.sc-cta       { display: flex; align-items: center; justify-content: space-between; }
.sc-cta-text  { font-size: 10px; color: var(--white4); }
.sc-cta-btn   { font-size: 11px; font-weight: 600; color: var(--gold); background: none; border: none; cursor: pointer; font-family: var(--fb); padding: 0; }
.sc-cta-btn:hover { color: #d4b36a; }

/* ══════════════════════════════════════════
   Today Report（右侧今日报告卡）
   ══════════════════════════════════════════ */
.today-report { padding: 20px; }
.tr-header    { margin-bottom: 12px; }
.tr-eyebrow   { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.tr-date      { font-size: 11px; color: var(--white4); margin-bottom: 2px; }
.tr-energy    { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.tr-energy-num   { font-family: var(--fd); font-size: 28px; font-weight: 300; color: var(--gold); line-height: 1; }
.tr-energy-label { font-size: 10px; color: var(--white4); line-height: 1.4; }
.tr-bar-bg    { flex: 1; height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }

/* ══════════════════════════════════════════
   Astro Panel（星盘详情页）
   ══════════════════════════════════════════ */
.astro-panel-inner { padding: 40px 48px; }
.astro-section     { margin-bottom: var(--space-md); }
.astro-sect-title  {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white4);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--glass-border);
}

/* 星盘卡片 */
.chart-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 10px; }
.chart-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.chart-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(196,163,80,0.15); border: 1px solid rgba(196,163,80,0.3); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.chart-name   { font-size: 15px; font-weight: 500; color: var(--white); }
.chart-date   { font-size: 12px; color: var(--white4); }

.planet-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
.planet-item  { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 10px 12px; }
.planet-name  { font-size: 10px; color: var(--white4); margin-bottom: 3px; font-weight: 500; letter-spacing: 0.05em; }
.planet-sign  { font-size: 13px; font-weight: 500; color: var(--white); }
.planet-deg   { font-size: 11px; color: var(--white4); }
.planet-retro { color: #e07070; font-size: 10px; }

/* 健康洞察 */
.insight-row  { display: flex; flex-direction: column; gap: 8px; }
.insight-item { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 9px; padding: 14px 16px; }
.insight-item.gold { border-left: 2px solid var(--gold); background: rgba(196,163,80,0.06); }
.insight-item.warn { border-left: 2px solid #c0744a; }
.insight-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white4); margin-bottom: 6px; }
.insight-text  { font-size: 13.5px; color: var(--white2); line-height: 1.6; }

/* 今日星象 */
.today-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.today-card   { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 9px; padding: 12px; }
.today-planet { font-size: 10px; color: var(--white4); margin-bottom: 3px; }
.today-aspect { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.today-effect { font-size: 11.5px; color: var(--white3); line-height: 1.4; }
.today-card.pos { border-left: 2px solid var(--sage); }
.today-card.neg { border-left: 2px solid #c0744a; }
.today-card.neu { border-left: 2px solid var(--gold); }

.energy-bar-wrap  { margin-bottom: 14px; }
.energy-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--white4); margin-bottom: 6px; }
.energy-bar-bg    { height: 6px; background: var(--glass); border-radius: 3px; overflow: hidden; }
.energy-bar-fill  { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--sage), var(--gold)); transition: width 1s ease; }

/* 问星盘对话 */
.ask-wrap     { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 18px; }
.ask-messages { min-height: 120px; max-height: 220px; overflow-y: auto; margin-bottom: 14px; display: flex; flex-direction: column; gap: 10px; }
.ask-msg      { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13.5px; line-height: 1.6; max-width: 90%; }
.ask-msg.user { background: rgba(196,163,90,0.12); border: 1px solid rgba(196,163,90,0.2); color: var(--white); align-self: flex-end; }
.ask-msg.ai   { background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); color: var(--white2); align-self: flex-start; }
.ask-input-row { display: flex; gap: 8px; }
.ask-input    { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; color: var(--white); font-family: var(--fb); outline: none; }
.ask-input:focus { border-color: var(--gold); }
.ask-send     { padding: 10px 16px; background: var(--gold); border: none; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: #0d0f0a; cursor: pointer; font-family: var(--fb); transition: all var(--dur-fast); }
.ask-send:hover { background: #d4b36a; }
.ask-hint     { font-size: 11px; color: var(--white4); margin-bottom: 10px; }
.ask-chips    { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.ask-chip     { padding: 5px 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: var(--radius-pill); font-size: 11.5px; color: var(--white3); cursor: pointer; transition: all var(--dur-fast); font-family: var(--fb); }
.ask-chip:hover { border-color: var(--gold); color: var(--gold); }

/* 月度报告 */
.report-preview  { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 18px; margin-bottom: 10px; }
.report-month    { font-size: 12px; color: var(--white4); margin-bottom: 4px; }
.report-title    { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.report-stats    { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.report-stat     { text-align: center; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); padding: 10px; }
.report-stat-n   { font-family: var(--fd); font-size: 22px; color: var(--gold); font-weight: 300; }
.report-stat-l   { font-size: 10px; color: var(--white4); margin-top: 2px; }
.report-quote    { border-left: 2px solid var(--glass-border); padding: 10px 14px; font-family: var(--fd); font-size: 14px; color: var(--white3); line-height: 1.6; margin-bottom: 14px; }
.btn-report      { width: 100%; padding: 12px; background: rgba(196,163,90,0.1); border: 1px solid rgba(196,163,90,0.3); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--gold); cursor: pointer; font-family: var(--fb); transition: all 0.2s; }
.btn-report:hover { background: rgba(196,163,90,0.2); }

/* 星盘空状态 */
.astro-empty      { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 56px 24px; text-align: center; gap: 14px; }
.astro-empty-icon { font-size: 40px; opacity: 0.5; }
.astro-empty-text { font-size: 14px; color: var(--white4); line-height: 1.65; }
.astro-empty-btn  { padding: 10px 24px; background: var(--gold); border: none; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: #0d0f0a; cursor: pointer; font-family: var(--fb); transition: all var(--dur-fast); }
.astro-empty-btn:hover { background: #d4b36a; transform: translateY(-1px); }

/* ══════════════════════════════════════════
   手机版Landing适配
   ══════════════════════════════════════════ */
@media (max-width: 767px) {
  .astro-landing {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .astro-right  { display: none; } /* 手机版隐藏右侧星盘预览 */
  .astro-left   { padding: 32px 20px; }
  .hero-2col    { grid-template-columns: 1fr; }
  .hero-copy    { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--glass-border); }
  .land         { padding: 28px 20px 40px; }
  .astro-panel-inner { 
    padding: 20px 16px 100px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }
}

/* ══════════════════════════════════════════
   TAROT
   ══════════════════════════════════════════ */

.tarot-scene {
  perspective: 1000px;
  width: 200px;
  height: 340px;
  margin: 0 auto 28px;
  cursor: pointer;
}
.tarot-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.tarot-card.flipped {
  transform: rotateY(180deg);
}
.tarot-face, .tarot-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.tarot-back {
  background: transparent;
}
.tarot-face {
  transform: rotateY(180deg);
  background: transparent;
}
.tarot-back svg,
.tarot-face svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.tarot-tap-hint {
  font-size: 12px;
  color: var(--white4);
  text-align: center;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

/* reading sections */
.tarot-reading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.tarot-section {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 16px;
}
.tarot-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white4);
  margin-bottom: 6px;
}
.tarot-section-text {
  font-size: 13.5px;
  color: var(--white2);
  line-height: 1.75;
  margin: 0;
}
.tarot-action {
  font-size: 12px;
  color: var(--sage);
  margin-top: 6px;
}
.tarot-shadow {
  border-left: 3px solid rgba(196,163,90,0.4);
}
.tarot-mantra {
  text-align: center;
  font-family: var(--fd);
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  padding: 18px 20px;
  background: rgba(196,163,90,0.05);
  border: 1px solid rgba(196,163,90,0.15);
  border-radius: 12px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   NUMEROLOGY
   ══════════════════════════════════════════ */

.num-headline {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}
.num-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.num-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 18px 20px;
}
.num-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.num-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196,163,90,0.15), rgba(90,144,112,0.1));
  border: 1px solid rgba(196,163,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
}
.num-card-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white4);
  margin-bottom: 2px;
}
.num-card-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.num-card-body {
  font-size: 13.5px;
  color: var(--white3);
  line-height: 1.75;
  margin: 0 0 8px 0;
}
.num-card-shadow {
  font-size: 12px;
  color: var(--white4);
  font-style: italic;
  border-top: 1px solid var(--glass-border);
  padding-top: 8px;
  margin-top: 4px;
  line-height: 1.6;
}
.num-synthesis {
  background: linear-gradient(135deg, rgba(196,163,90,0.08), rgba(90,144,112,0.05));
  border: 1px solid rgba(196,163,90,0.2);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}
.num-synthesis-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.num-synthesis-body {
  font-size: 13.5px;
  color: var(--white2);
  line-height: 1.8;
  margin: 0 0 12px 0;
}
.num-synthesis-week {
  font-size: 13px;
  color: var(--white3);
  line-height: 1.7;
  margin: 0 0 12px 0;
  padding-top: 10px;
  border-top: 1px solid rgba(196,163,90,0.15);
}
.num-question {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  line-height: 1.6;
}
.num-mantra {
  text-align: center;
  font-family: var(--fd);
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  padding: 18px 20px;
  background: rgba(196,163,90,0.04);
  border: 1px solid rgba(196,163,90,0.15);
  border-radius: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
}


/* 3-Card Spread 牌面小卡 */
.spread-mini-cards {
  display: flex;
  gap: 10px;
  margin: 16px 0 20px;
  justify-content: center;
}
.spread-mini-card {
  flex: 1;
  max-width: 100px;
  background: linear-gradient(160deg, #1c2e1c, #0f200f);
  border: 1px solid rgba(196,163,90,0.25);
  border-radius: 10px;
  padding: 14px 8px 12px;
  text-align: center;
  position: relative;
}
.spread-mini-card.reversed .spread-mini-symbol {
  transform: rotate(180deg);
  display: inline-block;
}
.spread-mini-pos {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.8;
}
.spread-mini-symbol {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(196,163,90,0.3));
}
.spread-mini-name {
  font-size: 10px;
  color: var(--white2);
  line-height: 1.35;
  font-family: var(--fd);
}
.spread-mini-orient {
  font-size: 8px;
  color: rgba(196,163,90,0.5);
  margin-top: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
