.result-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 36px;
}
.result-title {
  font-size: 42px;
  font-weight: 800;
}
.result-rows {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 500px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  gap: 40px;
}
.result-row span:last-child {
  color: #fff;
  font-weight: 600;
}
.result-row .num-frac {
  opacity: 0.6;
}
.result-divider {
  border-top: 1px solid #1a1a1a;
  margin: 4px 0;
}
.result-crowns-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.result-crowns-change {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
}

.result-crowns-row.positive .result-crowns-change {
  color: #4ade80;
}

.result-crowns-row.negative .result-crowns-change {
  color: #f87171;
}

.result-crowns-row.neutral .result-crowns-change {
  color: #f59e0b;
}
.result-buttons {
  display: flex;
  gap: 12px;
}
.singleplayer-warning {
  background: rgba(251, 146, 60, 0.15);
  border-left: 3px solid #f97316;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12px;
  color: #fb923c;
  max-width: 500px;
  text-align: center;
  margin-bottom: 8px;
}
.theme-light .result-rows {
  background: #fff;
  border-color: #e0e8f0;
}
.theme-light .result-row {
  color: #8896b0;
}
.theme-light .result-row span:last-child {
  color: #1a1a40;
}
.theme-light .result-divider {
  border-color: #e0e8f0;
}
.theme-light .result-title {
  color: #1a1a40;
}
.theme-light .singleplayer-warning {
  background: rgba(251, 146, 60, 0.2);
  color: #ea580c;
}
