/* 結算畫面。 */

.result__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.result__icon { color: var(--accent); font-size: 30px; line-height: 1; }
.result__label { margin: 6px 0 0; color: var(--ink-2); font-size: .9rem; }
.result__score {
  margin: 0;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.result__vs { margin: 2px 0 0; color: var(--ink-2); font-size: .9rem; font-weight: 600; }

/* 終盤縮圖：讓「我排出了這個」有畫面，而不只是一個數字。 */
.thumb-wrap {
  margin: 0;
  padding: 14px 10px 10px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  text-align: center;
  overflow-x: auto;
}
.thumb {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.thumb-wrap figcaption {
  margin-top: 10px;
  color: var(--ink-3);
  font-size: .76rem;
}

.lines {
  margin: 0;
  padding: 4px 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.lines li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 2px;
  border-bottom: 1px solid var(--line);
}
.lines span { color: var(--ink-2); font-size: .9rem; }
.lines b {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.lines small { color: var(--ink-3); font-size: .76rem; font-weight: 500; }

.result__acts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
