.hero-num {
  text-align: center;
  padding: 18px 12px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 30%, rgba(240, 193, 75, 0.16), transparent 62%),
    rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  box-shadow: 0 0 24px rgba(240, 193, 75, 0.12);
}

.hero-num .label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-num .value {
  margin: 8px 0 4px;
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 16px rgba(240, 193, 75, 0.55),
    0 0 32px rgba(255, 59, 46, 0.22);
}

.hero-num .sub {
  color: var(--paper-dim);
  font-size: 13px;
}

.history-list {
  max-height: 320px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
}

.history-result {
  color: var(--gold-bright);
  font-weight: 650;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(240, 193, 75, 0.35);
}

.history-details {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.5;
}

.empty-block {
  text-align: center;
  padding: 36px 12px;
}

@media (max-width: 1100px) {
  .fields-2 {
    grid-template-columns: 1fr;
  }
}
