:root {
  --bg: #0f1220;
  --panel: #1a1f36;
  --panel-2: #232a4d;
  --accent: #6c8cff;
  --accent-2: #35d0a5;
  --danger: #ff6b6b;
  --text: #eef1ff;
  --muted: #9aa3c7;
  --slot: #3a4270;
  --devil: #ff7ac6;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  font-family: -apple-system, "PingFang TC", "Noto Sans TC", system-ui, sans-serif;
  background: radial-gradient(120% 120% at 50% 0%, #1b2140 0%, var(--bg) 60%);
  color: var(--text);
  overscroll-behavior: none;
}

#app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: env(safe-area-inset-top) 16px env(safe-area-inset-bottom);
}

.screen {
  display: none;
  flex: 1;
  flex-direction: column;
}
.screen.active {
  display: flex;
}

/* 開始頁 */
#screen-start {
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.gh-link {
  position: absolute;
  bottom: calc(18px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.gh-link:active {
  opacity: 0.85;
}
@media (hover: hover) {
  .gh-link:hover {
    opacity: 0.85;
  }
}
.gh-link svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: currentColor;
}
#screen-start h1 {
  font-size: 40px;
  margin: 0;
  letter-spacing: 4px;
}
.tagline {
  color: var(--muted);
  max-width: 300px;
  line-height: 1.6;
}

/* 模式切換 */
.mode-switch {
  display: flex;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 16px;
  padding: 6px;
  margin-top: 6px;
}
.mode-opt {
  background: transparent;
  color: var(--muted);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
}
.mode-opt.active {
  background: linear-gradient(135deg, var(--accent), #8a6cff);
  color: #fff;
}
.mode-opt[data-mode="devil"].active {
  background: linear-gradient(135deg, var(--devil), #b06cff);
}
.mode-desc {
  color: var(--muted);
  font-size: 13px;
  max-width: 300px;
  line-height: 1.6;
  min-height: 38px;
  margin: 0;
}

/* 配對頁 */
#screen-matching {
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--panel-2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 按鈕 */
button {
  font: inherit;
  border: none;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform 0.08s ease, opacity 0.2s ease;
  touch-action: manipulation;
}
button:active {
  transform: scale(0.96);
}
button:disabled {
  opacity: 0.4;
  cursor: default;
}
.primary {
  background: linear-gradient(135deg, var(--accent), #8a6cff);
}
.challenge {
  background: linear-gradient(135deg, var(--danger), #ff9057);
}
.ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--panel-2);
}
.back {
  background: transparent;
  color: var(--accent);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
}

/* 遊戲說明 */
#screen-help {
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
.help-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 4px;
}
.help-header h2 {
  margin: 0;
  font-size: 22px;
}
.help-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
}
.help-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.help-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 14px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.4;
}
.help-list .hi {
  font-size: 22px;
  flex: 0 0 26px;
  text-align: center;
}
.help-list b {
  color: var(--accent);
}

.help-block {
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.help-block h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.help-block p {
  margin: 6px 0;
  color: var(--muted);
  line-height: 1.7;
}
.help-block b {
  color: var(--text);
}
.help-block ol,
.help-block ul {
  margin: 6px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}
.pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  vertical-align: middle;
}
.pill.danger {
  background: linear-gradient(135deg, var(--danger), #ff9057);
}
.criteria {
  margin: 4px 0 12px;
}
.crit {
  padding: 8px 0;
  border-bottom: 1px solid var(--panel-2);
}
.crit:last-child {
  border-bottom: none;
}
.crit-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}
.crit-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.crit-desc b {
  color: var(--text);
}

.verdict-cards {
  display: flex;
  gap: 8px;
  margin: 10px 0 4px;
}
.vc {
  flex: 1;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid var(--panel-2);
}
.vc.win {
  background: rgba(53, 208, 165, 0.12);
}
.vc.lose {
  background: rgba(255, 107, 107, 0.12);
}
.vc-title {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 4px;
}
.vc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.vc-desc b {
  color: var(--text);
}
.help-note {
  font-size: 13px;
  margin-top: 10px !important;
}

/* 命名頁 */
#screen-name {
  align-items: center;
  justify-content: center;
}
.name-box {
  width: 100%;
  max-width: 340px;
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}
.name-box h2 {
  margin: 0 0 10px;
  font-size: 22px;
}
.name-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.name-hint b {
  color: var(--danger);
}
.name-input {
  width: 100%;
  height: 52px;
  text-align: center;
  font-size: 18px;
  border-radius: 14px;
  border: 2px solid var(--panel-2);
  background: var(--bg);
  color: var(--text);
  outline: none;
  margin-bottom: 14px;
}
.name-input:focus {
  border-color: var(--accent);
}
.name-box .primary {
  width: 100%;
}
.name-box .ghost {
  width: 100%;
  margin-top: 8px;
}

/* 帳號代碼（轉移帳號） */
.acct-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--panel-2);
  text-align: left;
}
.acct-block + .acct-block {
  margin-top: 14px;
}
.acct-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.acct-code-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.acct-code {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--panel-2);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--text);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
button.sm {
  padding: 8px 14px;
  border-radius: 10px;
  flex: 0 0 auto;
  margin-top: 0 !important;
  width: auto !important;
}
.acct-warn {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin: 8px 0 0;
}
.acct-warn.danger {
  color: var(--danger);
}
.acct-warn b {
  font-weight: 800;
}
.link-btn {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  width: auto !important;
  margin: 0 !important;
}
#acct-import {
  margin-top: 10px;
}
#acct-import .name-input {
  margin-bottom: 0;
}
.danger-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  background: transparent;
  color: var(--danger);
  border: 1px solid rgba(255, 107, 107, 0.4);
}
.danger-btn:active {
  background: rgba(255, 107, 107, 0.12);
}

/* 開始頁：玩家資訊列 */
.player-bar {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--text);
  font-weight: 700;
  max-width: calc(100% - 24px);
  overflow: hidden;
}
.player-bar .pb-name {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-bar .pb-stats {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.player-bar .pb-edit {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 14px;
}

/* 排行榜 */
#screen-leaderboard {
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
.lb-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
}
.lb-head,
.lb-row {
  display: grid;
  grid-template-columns: 36px 1fr 64px 56px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}
.lb-head {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.lb-head .lb-rating,
.lb-head .lb-wins,
.lb-row .lb-rating,
.lb-row .lb-wins {
  text-align: right;
}
.lb-list .lb-row {
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 12px;
  margin-bottom: 6px;
}
.lb-row.me {
  border-color: var(--accent);
  background: rgba(108, 140, 255, 0.12);
}
.lb-row .lb-rank {
  font-weight: 800;
  color: var(--muted);
}
.lb-row.top1 .lb-rank {
  color: #ffd34d;
}
.lb-row.top2 .lb-rank {
  color: #cfd6e6;
}
.lb-row.top3 .lb-rank {
  color: #e0a06a;
}
.lb-row .lb-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}
.lb-row .lb-rating {
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.lb-row .lb-wins {
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}
.lb-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
  font-size: 14px;
}

/* 記分板 */
.scoreboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px 8px;
}
.score {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 76px;
}
.score .label {
  font-size: 13px;
  color: var(--muted);
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.score .num {
  font-size: 34px;
  font-weight: 800;
}
.score.me .num {
  color: var(--accent);
}
.score.opp .num {
  color: var(--accent-2);
}
.score .elo {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
  white-space: nowrap;
}
.vs .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--panel-2);
  font-size: 13px;
  color: var(--muted);
}
.vs .badge.your-turn {
  background: var(--accent);
  color: #fff;
}

/* 計時器 */
.timer-wrap {
  position: relative;
  height: 10px;
  background: var(--panel);
  border-radius: 999px;
  margin: 8px 4px 4px;
  overflow: hidden;
}
.timer-bar {
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: transform 0.2s linear, background 0.3s ease;
}
.timer-bar.low {
  background: var(--danger);
}
.timer-text {
  position: absolute;
  right: 8px;
  top: -22px;
  font-size: 13px;
  color: var(--muted);
}

/* 超時額度指示器（低調小圓點） */
.quota {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
  height: 12px;
  line-height: 1;
}
.quota .quota-ico {
  font-size: 10px;
  opacity: 0.6;
  margin-right: 1px;
}
.quota .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.score.opp .quota .pip {
  background: var(--accent-2);
}
.quota .pip.used {
  background: var(--muted);
  opacity: 0.25;
  transform: scale(0.8);
}
.quota.pulse {
  animation: quota-pulse 0.6s ease;
}
@keyframes quota-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* 超時 +10 秒的小浮動提示 */
.timeout-fx {
  position: relative;
  height: 0;
  text-align: center;
  pointer-events: none;
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.timeout-fx.show {
  animation: timeout-fx 1.6s ease forwards;
}
@keyframes timeout-fx {
  0% { opacity: 0; transform: translateY(2px); }
  15% { opacity: 1; transform: translateY(-4px); }
  70% { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* 惡魔模式限制橫幅 */
.restriction {
  margin: 6px 4px 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 122, 198, 0.1);
  border: 1px solid rgba(255, 122, 198, 0.35);
  font-size: 13px;
  line-height: 1.6;
}
.restriction .r-tag {
  display: inline-block;
  font-weight: 800;
  color: var(--devil);
  margin-right: 6px;
}
.restriction .r-text {
  color: var(--text);
}
.restriction .r-final {
  display: inline-block;
  min-width: 22px;
  text-align: center;
  padding: 1px 6px;
  margin: 0 1px;
  border-radius: 6px;
  background: rgba(255, 122, 198, 0.25);
  color: var(--devil);
  font-size: 15px;
}

/* 結算：AI 評語 */
.ai-verdict {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
  background: var(--panel-2);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.ai-tag {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  border-radius: 999px;
  padding: 3px 8px;
  margin-top: 1px;
}
.ai-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.settle-info {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.settle-chain {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
}
.settle-char {
  padding: 2px 3px;
  border-radius: 6px;
}
.settle-char.latest {
  background: rgba(53, 208, 165, 0.22);
  color: var(--accent-2);
  font-weight: 700;
}
.settle-last {
  font-size: 13px;
  color: var(--muted);
}

/* 結算：計分明細 */
.score-sheet,
.score-change {
  text-align: left;
  border: 1px solid var(--panel-2);
  border-radius: 12px;
  padding: 10px 12px;
}
.score-sheet {
  background: rgba(0, 0, 0, 0.15);
}
.score-change {
  margin-top: 12px;
}
.sheet-head {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.sheet-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}
.sheet-row:first-of-type {
  border-top: none;
}
.sr-label {
  color: var(--text);
}
.sheet-row.devil .sr-label {
  color: var(--devil);
}
.sr-pts {
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.sr-pts.me {
  color: var(--accent);
}
.sr-pts.opp {
  color: var(--accent-2);
}
.sr-pts.zero {
  color: var(--muted);
  font-weight: 600;
}
.sheet-note {
  font-size: 12px;
  color: var(--muted);
  padding-top: 6px;
}
.sheet-total {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--panel-2);
  font-size: 17px;
  font-weight: 800;
  text-align: right;
}
.sheet-total.me {
  color: var(--accent);
}
.sheet-total.opp {
  color: var(--accent-2);
}
.sheet-total.tie {
  color: var(--muted);
}

/* 結算：分數變化 */
.change-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 15px;
}
.change-row .ck {
  color: var(--muted);
}
.change-row.changed .ck {
  color: var(--text);
}
.cv {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cv-old {
  color: var(--muted);
}
.cv-new {
  color: var(--accent-2);
}
.cv.same {
  color: var(--text);
}
.settle-count {
  margin-top: 16px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.settle-count-bar {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* 句子 */
.sentence {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 2px;
  padding: 20px 8px;
  font-size: 30px;
  line-height: 1.8;
}
.char {
  padding: 2px 1px;
  border-radius: 6px;
}
.char.latest {
  background: rgba(53, 208, 165, 0.22);
  color: var(--accent-2);
}
.slot {
  width: 14px;
  align-self: stretch;
  min-height: 44px;
  border-radius: 6px;
  position: relative;
  transition: width 0.12s ease, background 0.12s ease;
}
.slot.tappable {
  width: 18px;
  background: rgba(108, 140, 255, 0.12);
}
.slot.tappable::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 22px;
  transform: translate(-50%, -50%);
  background: var(--slot);
  border-radius: 2px;
}
.slot.locked {
  width: 6px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 3px,
    rgba(255, 122, 198, 0.18) 3px,
    rgba(255, 122, 198, 0.18) 6px
  );
}
.slot.selected {
  width: 22px;
  background: rgba(108, 140, 255, 0.3);
}
.slot.selected::after {
  background: var(--accent);
  height: 30px;
  width: 3px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% {
    opacity: 0.3;
  }
}

.hint {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  min-height: 20px;
  padding: 0 8px;
}

/* 控制列 */
.controls {
  display: flex;
  gap: 8px;
  padding: 12px 4px calc(12px + env(safe-area-inset-bottom));
}
.char-input {
  flex: 0 0 64px;
  width: 64px;
  height: 52px;
  text-align: center;
  font-size: 28px;
  border-radius: 14px;
  border: 2px solid var(--panel-2);
  background: var(--panel);
  color: var(--text);
  outline: none;
}
.char-input:focus {
  border-color: var(--accent);
}
.controls .primary {
  flex: 1;
}
.controls .challenge {
  flex: 0 0 96px;
}

/* 彈窗 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 18, 0.72);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 10;
}
.overlay.show {
  display: flex;
}
.card {
  background: var(--panel);
  border: 1px solid var(--panel-2);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}
.card .primary {
  width: 100%;
  margin-top: 18px;
}
.judge-row {
  display: flex;
  justify-content: space-around;
  margin: 12px 0;
}
.judge-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.judge-item .k {
  font-size: 12px;
  color: var(--muted);
}
.judge-item .v {
  font-size: 28px;
  font-weight: 800;
}
.judge-reason {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

/* 結束畫面：ELO 積分變化 */
.elo-change {
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid var(--panel-2);
  border-radius: 12px;
  text-align: left;
}
.elo-head {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.elo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 15px;
}
.elo-row .ek {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.elo-row .ev {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}
.elo-row .eo {
  color: var(--muted);
}
.elo-row .earrow {
  color: var(--muted);
  margin: 0 4px;
}
.elo-row .ed {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.elo-row .ed.up {
  color: var(--accent-2);
  background: rgba(53, 208, 165, 0.15);
}
.elo-row .ed.down {
  color: var(--danger);
  background: rgba(255, 107, 107, 0.15);
}
.elo-row .ed.same {
  color: var(--muted);
}
.award {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
}
.award.me {
  color: var(--accent);
}
.award.opp {
  color: var(--accent-2);
}
