.results-title {
  font-size: 24px;
  margin-bottom: 16px;
  background: var(--text-title);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.results-progress {
  font-size: 28px;
  letter-spacing: 4px;
  margin: 16px 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.results-summary {
  text-align: center;
  font-size: 18px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.results-extra {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0;
}

.extra-block {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}

.extra-label {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.extra-value {
  font-size: 18px;
  color: #00ffee;
}

.result-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  margin: 0px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.15s;
  background-color: #ddd;
  color: white;
}

.result-dot:hover {
  transform: scale(1.1);
}

.dot-good {
  background: var(--button-approve-bg);
}

.dot-bad {
  background: var(--button-discard-bg);
}

.dot-empty {
  background: #bcbcbc;
}

.round-details-panel {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
}

.round-details-header {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.round-details-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.round-item-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.2s;
}

.round-item-col:hover {
  transform: translateY(-2px);
}

.round-item-image {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.round-item-info {
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.round-item-info strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.round-item-col .vote-percentage {
  font-size: 24px;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .round-details-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .round-item-col {
    padding: 12px;
  }

  .round-item-image {
    max-width: 100%;
  }
}

.round-item-col.user-picked {
  border: 2px solid rgba(0, 255, 238, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 238, 0.2);
}

.round-item-col.winner {
  border: 2px solid rgba(76, 175, 80, 0.5);
}

.round-item-col.loser {
  border: 2px solid rgba(244, 67, 54, 0.5);
}