/* PWA Install Catalog — Material 3 Dark Theme */
:root {
    --star-color_my: #5f5f5f;
    --star-size: 12px;
    --star-background: #aac6f6;
}

/* Stars (from Google Play template) */
.stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    line-height: 1;
    width: max-content;
}
.stars::before {
    content: "★★★★★";
    letter-spacing: 0;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color_my) var(--percent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress bars (rating distribution) */
.progress {
    align-items: center;
    display: grid;
    margin-bottom: 2px;
    grid-template-columns: max-content auto;
}
.progress .number {
    font-size: 10px;
    font-weight: 400;
    padding-right: 16px;
    color: #c4c6cf;
    font-family: Roboto, Arial, sans-serif;
}
.progress .line {
    background-color: #353534;
    border-radius: 9999px;
    height: 8px;
    width: 100%;
}
.progress .progress-bar {
    background-color: #aac6f6;
    border-radius: inherit;
    height: 100%;
}

/* iOS safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    body { padding-bottom: env(safe-area-inset-bottom); }
}
