



.result-center {
  align-items: center;
  gap: 20px;
  
}

.result-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin: 0;
  flex-shrink: 0;
}

.result-score {
  background: var(--green);
  border: solid 2px var(--green-border);
  box-shadow: 0 4px 0 0 var(--green-border);
  border-radius: 20px;
  width: 100%;
  height: 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  flex-shrink: 0;
}

.result-score.negative {
  background: var(--red);
  border-color: var(--red-border);
  box-shadow: 0 4px 0 0 var(--red-border);
}

.score-value {
  font-size: 40px;
  font-weight: 800;
  color: white;
  text-align: center;
  align-self: center;
  justify-self: center;
}

.team-name {
  font-size: 16px;
  color: var(--btn-text);
  opacity: 0.8;
  text-align: center;
  font-weight: 700;
}

.words-list {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 20px;
}

.word-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: white;
  border-radius: 20px;
  border: solid 2px var(--gray);
  box-shadow: 0 4px 0 0 var(--gray);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  user-select: none;
}

.word-result-item:active {
  transform: scale(0.98);
}

.word-result-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.word-result-main {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

.word-result-translation {
  font-size: 13px;
  color: var(--gray);
}


.word-checkbox {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.word-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.checkbox-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.word-checkbox input[type="checkbox"]:checked + .checkbox-visual {
  background: var(--green);
  border-color: var(--green);
}

.checkbox-visual svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s;
}

.word-checkbox input[type="checkbox"]:checked + .checkbox-visual svg {
  opacity: 1;
  transform: scale(1);
}


@keyframes scoreUpdate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.result-score.updating {
  animation: scoreUpdate 0.3s ease;
}


.splash-actions .btn {
  gap: 8px;
}
