.kp-wrapper {
    margin-bottom: 30px;
}
.kp-compact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #101420;
    border-radius: 20px 20px 0 0;
    border: 1px solid #21283b;
    
    color: #e0e0e0;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.kp-score {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    min-width: 52px;
    background: transparent;
    text-shadow: 0 0 0 transparent;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.kp-stars-container {
    display: flex;
    gap: 4px;
}

.kp-star {
    font-size: 16px;
    color: #333;
}

.kp-star.active {
    color: #ffd700;
}

.kp-badge-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #2a2a33;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #aaa;
}

.kp-icon {
    color: #ffd700;
    font-size: 19px;
}

.kp-range {
    font-size: 15px;
    color: #aaa;
}

.kp-reason-block {
    padding: 12px 16px;
    background: #1b1b1f;
    border: 1px solid #333;
    border-top: none;
    border-radius: 0 0 20px 20px;
    color: #dcdcdc;
    
    font-size: 16px;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.kp-score.good {
    color: #4cd964;
    text-shadow: 0 0 1px #4cd964;
}

.kp-score.neutral {
    color: #ff9500;
    text-shadow: 0 0 1px #ff9500;
}

.kp-score.bad {
    color: #ff3b30;
    text-shadow: 0 0 1px #ff3b30;
}

.kp-reason-block.good {
    background: rgba(0, 180, 80, 0.08);
    color: #4cd964;
    text-shadow: 0 0 2px rgba(76, 217, 100, 0.6);
}

.kp-reason-block.neutral {
    background: rgba(255, 165, 0, 0.08);
    color: #ff9500;
    text-shadow: 0 0 2px rgba(255, 149, 0, 0.6);
}

.kp-reason-block.bad {
    background: rgba(255, 59, 48, 0.08);
    color: #ff3b30;
    text-shadow: 0 0 2px rgba(255, 59, 48, 0.6);
}

.kp-reason-block.hidden {
    display: none;
}
.review-prompt {
  margin-top: 12px;
  padding: 14px 16px;
  background: #161b28;
  border: 1px solid #2f3749;
  color: #cccccc;
  border-radius: 6px;

  /* Важно: оставляем в потоке */
  position: static;
  width: 100%;
  box-sizing: border-box;
}

.review-prompt .prompt-text {
  display: block;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 15px;
}

.close-prompt {
  float: right;color: #ff0000;
  cursor: pointer;
  font-size: 60px;
  
  line-height: 1;
}

.close-prompt:hover {
  color: #ccc;
}