.chto-lishnee-root {
  max-width: 600px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cl-game {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 24px;
  min-height: 480px;
  box-sizing: border-box;
}

.cl-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cl-content {
  position: relative;
  z-index: 1;
}

.cl-content-center {
  text-align: center;
}

.cl-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.cl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ffb870;
  display: inline-block;
}

.cl-dot-done {
  background: #4caf50;
  border-color: #4caf50;
}

.cl-dot-current {
  background: #ff8c42;
  border-color: #ff8c42;
}

.cl-boriska {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.cl-boriska img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.cl-boriska-big img {
  width: 170px;
}

.cl-title {
  text-align: center;
  color: #1b5e20;
  background: rgba(255, 255, 255, 0.75);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  margin: 0 auto 8px;
  width: fit-content;
  font-size: 18px;
  display: block;
  text-align: center;
}

.cl-subtitle {
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  padding: 10px 16px;
  border-radius: 16px;
  color: #1b5e20;
  margin: 0 0 20px;
}

.cl-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.cl-card {
  background: rgba(255, 255, 255, 0.92);
  border: 4px solid #ffe0c2;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.1s;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.cl-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.cl-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.15));
}

.cl-card-correct {
  border-color: #4caf50;
}

.cl-card-wrong {
  border-color: #ef9a9a;
}

.cl-feedback {
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
}

.cl-feedback-correct {
  background: rgba(200, 240, 200, 0.95);
  color: #1b5e20;
}

.cl-feedback-wrong {
  background: rgba(255, 236, 179, 0.95);
  color: #8a5a00;
}

.cl-next-wrap {
  display: flex;
  justify-content: center;
}

.cl-next-btn {
  background: #ff8c42;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.15s;
}

.cl-next-btn:hover {
  background: #f0701a;
}

.cl-final-title {
  color: #1b5e20;
  font-size: 22px;
  margin: 8px 0;
}

.cl-final-text {
  color: #1b5e20;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .cl-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cl-card img {
    width: 70px;
    height: 70px;
  }
}
