.rr-rating-wrapper {
    margin-top: 40px;
    text-align: center;
}

.rr-stars {
    font-size: 30px;
    cursor: pointer;
}

.rr-star {
    color: rgba(255, 0, 0, 0.25);
    transition: 0.2s;
}

.rr-star.active {
    color: rgba(255, 0, 0, 0.88);
}

.rr-rating-info {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 223, 223, 0.77);
    position: relative;
    display: inline-block;
}

.rr-breakdown-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #111;
    padding: 12px;
    border-radius: 8px;
    width: min(90vw, 320px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    z-index: 9999;
}

.rr-rating-info:hover .rr-breakdown-tooltip {
    display: block;
}

.rr-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.rr-label {
    width: 28px;
    font-size: 12px;
}

.rr-bar-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rr-bar {
    height: 100%;
    background: rgba(255, 0, 0, 0.88);
}

.rr-percent {
    width: 36px;
    font-size: 11px;
    text-align: right;
}

@media (max-width: 480px) {
    .rr-stars {
        font-size: 24px;
    }
    .rr-breakdown-tooltip {
        left: 50%;
        transform: translateX(-50%);
    }
}
