/* ═════════════════════════════════════════════════════
   Arcade Rewriter Pro — Frontend Styles
   ═════════════════════════════════════════════════════ */

/* ── Star Rating ──────────────────────────────────── */
.ar-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.ar-stars {
    display: flex;
    gap: 3px;
}

.ar-star {
    font-size: 20px;
    color: #d1d5db;
    cursor: pointer;
    transition: color .15s, transform .1s;
    user-select: none;
}

.ar-star.filled,
.ar-stars:hover .ar-star:hover,
.ar-stars:hover .ar-star:hover ~ .ar-star { color: #f59e0b; }

.ar-stars:hover .ar-star { color: #f59e0b; }
.ar-stars .ar-star:hover ~ .ar-star { color: #d1d5db; }

.ar-star:hover { transform: scale(1.2); }

.ar-rating-label {
    font-size: 13px;
    color: #64748b;
}

.ar-rating-thanks {
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
}
