:root {
  --bg: #06111f;
  --panel: rgba(9, 28, 48, 0.9);
  --line: rgba(110, 165, 235, 0.18);
  --text: #ecf5ff;
  --muted: #8ea4be;
  --brand: #59c6ff;
  --brand-2: #69f0d1;
  --gold: #ffcb75;
  --danger: #ff746b;
  --success: #52d9a0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius-lg: 20px;
  --font: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  background:
    radial-gradient(circle at 88% 8%, rgba(70, 138, 255, 0.2), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(0, 214, 201, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 116, 107, 0.06), transparent 35%),
    linear-gradient(180deg, #07111f 0%, #030916 100%);
  color: var(--text);
}

body {
  padding: 24px 28px 48px;
}

.dashboard-shell {
  max-width: 1560px;
  margin: 0 auto;
}

/* Story rail */
.story-rail {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: flex;
  gap: 8px;
  padding: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 16, 30, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  overflow-x: auto;
}

.story-rail-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: max-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: #b7cbe0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.story-rail-item em {
  font-style: normal;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

.story-rail-item:hover,
.story-rail-item.is-active {
  background: rgba(89, 198, 255, 0.12);
  color: #f2f9ff;
  transform: translateY(-1px);
}

.story-section-head {
  margin-top: 36px;
  scroll-margin-top: 84px;
}

.story-section-head span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-section-head h2 {
  margin: 10px 0 8px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.story-section-head p {
  margin: 0;
  color: #b7c8db;
  font-size: 14px;
  line-height: 1.7;
  max-width: 820px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 32px 34px 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 49, 81, 0.96), rgba(5, 18, 34, 0.96)),
    rgba(5, 15, 28, 0.88);
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(89, 198, 255, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -40% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 116, 107, 0.18) 0%, rgba(89, 198, 255, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-aside {
  display: grid;
  gap: 14px;
}

.hero-aside-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 203, 117, 0.22);
  background:
    linear-gradient(160deg, rgba(40, 24, 12, 0.35), rgba(8, 26, 44, 0.75)),
    rgba(8, 26, 44, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.verdict-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 116, 107, 0.16);
  border: 1px solid rgba(255, 116, 107, 0.28);
  color: #ffd0c8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-aside-card p {
  margin: 14px 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #e4eef8;
  max-width: none;
}

.hero-pulse-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pulse-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(89, 198, 255, 0.16);
  background: rgba(5, 17, 31, 0.55);
}

.pulse-chip span {
  color: var(--muted);
  font-size: 12px;
}

.pulse-chip strong {
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.pulse-chip.danger strong {
  color: #ff9d8f;
}

.pulse-chip.gold strong {
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(115, 202, 255, 0.28);
  background: rgba(80, 169, 255, 0.08);
  color: #cfe8ff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  box-shadow: 0 0 14px rgba(89, 198, 255, 0.7);
  animation: pulseDot 1.8s ease infinite;
}

.hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-lede {
  margin: 0;
  max-width: 720px;
  color: #c0d3e8;
  font-size: 15px;
  line-height: 1.75;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.meta-card {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(111, 160, 222, 0.18);
  background: rgba(7, 21, 38, 0.55);
}

.meta-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.meta-card strong {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tag {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(89, 198, 255, 0.14);
  background: rgba(5, 17, 31, 0.58);
  color: #dcefff;
  font-size: 12px;
}

.hero-tag.subtle {
  opacity: 0.85;
}

.hero-insight-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.insight-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(111, 160, 222, 0.14);
  background: rgba(5, 17, 31, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease;
  animation: fadeUp 0.55s ease both;
}

.insight-card:nth-child(2) {
  animation-delay: 0.08s;
}

.insight-card:nth-child(3) {
  animation-delay: 0.16s;
}

.insight-card:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 198, 255, 0.35);
}

.insight-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  margin-top: 8px;
  color: #eff7ff;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.insight-card.compact strong {
  font-size: 15px;
}

/* Filters & panels */
.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.filter-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.filter-card {
  padding: 16px 16px 14px;
}

.filter-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.filter-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(111, 160, 222, 0.18);
  border-radius: 14px;
  color: var(--text);
  background: rgba(5, 17, 31, 0.9);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.kpi-card {
  position: relative;
  padding: 22px 20px 18px;
  overflow: hidden;
  animation: fadeUp 0.55s ease both;
}

.kpi-card:nth-child(1) {
  animation-delay: 0.05s;
}
.kpi-card:nth-child(2) {
  animation-delay: 0.1s;
}
.kpi-card:nth-child(3) {
  animation-delay: 0.15s;
}
.kpi-card:nth-child(4) {
  animation-delay: 0.2s;
}

.kpi-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kpi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(91, 191, 255, 0.09), rgba(105, 240, 209, 0.03));
  pointer-events: none;
}

.kpi-card.warning::before {
  background: linear-gradient(145deg, rgba(255, 203, 117, 0.12), rgba(255, 116, 107, 0.03));
}

.kpi-card.danger::before {
  background: linear-gradient(145deg, rgba(255, 116, 107, 0.14), rgba(255, 157, 98, 0.04));
}

.kpi-card.success::before {
  background: linear-gradient(145deg, rgba(82, 217, 160, 0.1), rgba(89, 198, 255, 0.03));
}

.kpi-label,
.panel-header span,
.note-eyebrow {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kpi-value {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.kpi-value.accent-danger {
  color: #ff9d8f;
  text-shadow: 0 0 28px rgba(255, 116, 107, 0.35);
}

.kpi-value.accent-gold {
  color: #ffd58a;
  text-shadow: 0 0 28px rgba(255, 203, 117, 0.3);
}

.kpi-spark {
  position: relative;
  z-index: 1;
  height: 36px;
  margin-top: 10px;
}

.kpi-spark svg {
  width: 100%;
  height: 100%;
}

.kpi-thesis {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: #edf7ff;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.kpi-sub {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: #9fb4cb;
  font-size: 12px;
  line-height: 1.55;
}

.kpi-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: #dcecff;
}

.chip.up {
  color: #ffcba0;
}

.chip.down {
  color: #98f1ca;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.trend-layout {
  align-items: stretch;
}

.conclusion-line {
  color: #ffe4b0 !important;
  font-weight: 600;
  font-size: 14px !important;
}

.digest-list {
  display: grid;
  gap: 10px;
}

.digest-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.digest-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.digest-item strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  color: #eef7ff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.panel {
  padding: 22px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-header h2 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.panel-header p {
  margin: 10px 0 0;
  color: #b7c8db;
  font-size: 13px;
  line-height: 1.6;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4e5f6;
  font-size: 12px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.trend-svg,
.heatmap-grid {
  width: 100%;
}

.bar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.bar-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.bar-row.is-top {
  border-color: rgba(255, 116, 107, 0.28);
  background: rgba(255, 116, 107, 0.06);
}

.bar-rank {
  padding-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.bar-row.is-top .bar-rank {
  color: #ffb0a6;
}

.bar-main {
  display: grid;
  gap: 8px;
}

.bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bar-label {
  color: #dcecff;
  font-size: 14px;
  font-weight: 700;
}

.bar-track {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(89, 198, 255, 0.9), rgba(105, 240, 209, 0.92));
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-fill.hot {
  background: linear-gradient(90deg, rgba(255, 203, 117, 0.88), rgba(255, 116, 107, 0.95));
}

.bar-value {
  color: #f6fbff;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.bar-thesis {
  color: #aac2da;
  font-size: 12px;
  line-height: 1.55;
}

.root-cause-stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.cause-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}

.cause-copy span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cause-copy h2 {
  margin: 10px 0 10px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cause-copy p {
  margin: 0;
  color: #c0d3e7;
  font-size: 14px;
  line-height: 1.7;
}

.cause-callout {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 203, 117, 0.2);
  background: rgba(255, 203, 117, 0.07);
  color: #ffe7b8;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.heatmap-wrap {
  display: grid;
  gap: 16px;
  align-items: start;
}

.heatmap-legend {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.heatmap-story {
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
}

.heatmap-stage {
  padding: 8px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 116, 107, 0.08), transparent 40%),
    rgba(3, 12, 24, 0.55);
  border: 1px solid rgba(111, 160, 222, 0.1);
}

.hotspot-panel {
  margin-top: 18px;
}

.insight-card-list {
  display: grid;
  gap: 10px;
}

.heatmap-legend h3,
.notes h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.heatmap-legend p,
.notes li,
.notes p {
  color: #c1d1e2;
  font-size: 13px;
  line-height: 1.65;
}

.heat-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 14px;
}

.heat-scale div {
  height: 14px;
  border-radius: 8px;
}

.heat-scale-label {
  margin-top: 10px !important;
  font-size: 12px !important;
  color: var(--muted) !important;
}

.notes {
  margin-top: 18px;
}

.compact-notes ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.notes ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

/* Action cards */
.action-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.action-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  animation: fadeUp 0.55s ease both;
}

.action-card.p1 {
  border-color: rgba(255, 116, 107, 0.35);
  background:
    linear-gradient(160deg, rgba(255, 116, 107, 0.1), transparent 55%),
    var(--panel);
}

.action-card.p2 {
  border-color: rgba(255, 203, 117, 0.28);
}

.action-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.action-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.action-card p {
  margin: 0;
  color: #c5d6e8;
  font-size: 13px;
  line-height: 1.65;
}

.action-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.action-metrics div {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.action-metrics span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.action-metrics strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
}

.table-panel {
  margin-top: 16px;
}

.table-scroll {
  overflow-x: auto;
}

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

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(111, 160, 222, 0.12);
  text-align: left;
  font-size: 13px;
}

th {
  color: var(--muted);
  font-weight: 600;
}

td {
  color: #e8f2fb;
}

tr.row-p1 td {
  background: rgba(255, 116, 107, 0.06);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status-pill.high {
  color: #ffd5cb;
  background: rgba(255, 116, 107, 0.14);
}

.status-pill.mid {
  color: #ffe6bc;
  background: rgba(255, 203, 117, 0.14);
}

.status-pill.low {
  color: #b9f1d9;
  background: rgba(82, 217, 160, 0.14);
}

.footer-note {
  margin-top: 18px;
  color: #8ca6c0;
  font-size: 12px;
  text-align: right;
}

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

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

@media (max-width: 1280px) {
  .filters,
  .kpi-grid,
  .section-grid,
  .hero-grid,
  .hero-insight-grid,
  .cause-panel,
  .heatmap-story,
  .action-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-rail {
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 14px;
  }

  .hero {
    padding: 22px 18px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .story-section-head h2,
  .cause-copy h2 {
    font-size: 20px;
  }

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

  .heatmap-wrap {
    grid-template-columns: 1fr;
  }

  .kpi-topline,
  .bar-head,
  .action-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .action-metrics {
    grid-template-columns: 1fr;
  }
}

/* 数据来源横幅 */
.source-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 18px;
  margin: 4px 0 6px;
  border-radius: 14px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.source-banner .source-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.source-banner strong {
  font-weight: 700;
}

.source-banner .source-detail {
  color: #9db4ce;
  font-size: 12px;
}

.source-banner.is-real {
  background: rgba(82, 217, 160, 0.1);
  border-color: rgba(82, 217, 160, 0.35);
}

.source-banner.is-real .source-dot {
  background: #52d9a0;
  box-shadow: 0 0 10px rgba(82, 217, 160, 0.8);
}

.source-banner.is-fallback {
  background: rgba(255, 203, 117, 0.1);
  border-color: rgba(255, 203, 117, 0.32);
}

.source-banner.is-fallback .source-dot {
  background: #ffcb75;
  box-shadow: 0 0 10px rgba(255, 203, 117, 0.8);
}

.empty-hint {
  padding: 22px;
  text-align: center;
  color: #9db4ce;
  font-size: 14px;
}
