/* ================== Блок смайликов ================== */

.kr-wrapper {
    max-width: 500px;
    margin-left: auto !important;
    margin-right: auto !important;
    background: #fbfaff;
    border: 1px solid #7036be;
    padding: 15px;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    border-radius: 20px;
    text-align: center;
}

.kr-title {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 650;
    background: linear-gradient(90deg, #7036be 0%, #269ef1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


.kr-buttons {
    font-size: 35px;
    cursor: pointer;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.kr-smile {
    transition: transform .25s ease, opacity .25s ease;
    display: inline-block;
}

.kr-smile:hover {
    transform: scale(1.35) rotate(5deg);
    opacity: 0.85;
}

.kr-clicked {
    animation: kr-pop .35s ease;
}

@keyframes kr-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.45); }
    100% { transform: scale(1); }
}

.kr-result {
    font-size: 18px;
    margin-top: 6px;
}


/* ================== Блок звёзд ================== */

.ktr-center {
    text-align: center;
    margin: 20px 0;
}

.ktr-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Контейнер звёзд — в одну линию */
.ktr-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* Одна звезда */
/* Контейнер */
.ktr-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* Одна звезда */
.ktr-star {
    width: 32px;
    height: 32px;
    position: relative;
    flex: 0 0 auto;
}

/* Серая звезда (фон) */
.ktr-star::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 32px;
    color: #ccc;
    text-shadow: 1px 1px #bbb;
    line-height: 32px;
}

/* Золотая заливка */
.ktr-star span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    overflow: hidden;
    white-space: normal;
    transition: width 0.6s ease;
}

.ktr-star span::before {
    content: "★";
    font-size: 32px;
    color: gold;
    text-shadow: 1px 1px #c60;
    line-height: 32px;
}

/* ================== Адаптивность ================== */

@media (max-width: 768px) {
    .kr-buttons {
        font-size: 30px;
        gap: 16px;
    }

    .ktr-star {
        width: 26px;
        height: 26px;
    }

    .ktr-star::before,
    .ktr-star span::before {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .kr-buttons {
        font-size: 26px;
        gap: 14px;
    }

    .ktr-star {
        width: 22px;
        height: 22px;
    }

    .ktr-star::before,
    .ktr-star span::before {
        font-size: 22px;
    }
}

/* Информация под звёздами */
.ktr-info {
    margin-top: 8px;
    font-size: 16px;
}
