

.finish-center {
  align-items: center;
  gap: 24px;
  
}

.finish-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin: 20px 0 0;
}

.winner-card {
  width: 100%;
  border-radius: 20px;
  padding: 24px 0;
  margin: 0 20px;
  display: grid;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.winner-label {
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-align: center;
  letter-spacing: 0.5px;
}

.winner-score {
  font-size: 45px;
  font-weight: 800;
  color: white;
  line-height: 1;
  text-align: center;
}

.final-rating {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-rating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: white;
  border: 2px solid var(--gray);
  border-radius: 16px;
  box-shadow: 0 4px 0 0 var(--gray);
}

.final-rating-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}

.final-rating-idx {
  color: #666;
  min-width: 24px;
}

.final-rating-name {
  color: #000;
}

.final-rating-score {
  font-weight: 800;
  font-size: 22px;
  color: var(--green);
}

.finish-actions {
  gap: 12px;
}

