/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;border:0}
html,body{width:100%;background:#f1f3f4;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;font-size:14px;color:#202124;-webkit-font-smoothing:antialiased;line-height:1.5}
img{display:block}
:root{--green:#01875f;--sub:#5f6368;--border:#e8eaed;--card:#ffffff;--bg:#f1f3f4}

/* ── TOP BAR ── */
.top-bar{
    position:sticky;top:0;z-index:50;
    display:flex;align-items:center;
    padding:10px 16px;
    background:#fff;border-bottom:1px solid var(--border);
}
.top-bar__app{display:flex;align-items:center;gap:10px;min-width:0}
.top-bar__icon{width:32px;height:32px;border-radius:8px;object-fit:cover;flex-shrink:0}
.top-bar__name{font-size:14px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

/* ── HERO ── */
.hero{
    background:#fff;
    display:flex;flex-direction:column;align-items:center;text-align:center;
    padding:28px 20px 24px;
    border-bottom:1px solid var(--border);
}
.hero__icon{width:96px;height:96px;border-radius:20px;object-fit:cover;border:1px solid var(--border);margin-bottom:14px}
.hero__title{font-size:22px;font-weight:700;line-height:1.3;margin-bottom:6px}
.hero__dev{font-size:13px;color:var(--sub);display:flex;align-items:center;justify-content:center;gap:5px;margin-bottom:12px}
.verify-dev{width:14px;height:14px}
.hero__rating-row{display:flex;align-items:center;gap:7px;font-size:13px;color:var(--sub);margin-bottom:14px}
.hero__rating-row .rating__left{font-weight:600;color:#202124}
.hero__sep{color:var(--border)}
.hero__tags{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.hero__tag{font-size:12px;color:var(--sub);border:1px solid var(--border);border-radius:100px;padding:4px 12px}

/* ── STARS ── */
.stars-landing{
    --percent:calc(var(--rating)/5*100%);
    display:inline-block;font-size:15px;line-height:1;font-family:Times,serif;
}
.stars-landing::before{
    content:'★★★★★';letter-spacing:2px;
    background:linear-gradient(90deg,#fbbc05 var(--percent),#d9d9d9 var(--percent));
    -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.stars-small{font-size:11px}

/* ── SCREENSHOTS ── */
.screenshots{background:#fff;padding:16px 0;border-bottom:1px solid var(--border)}
.screenshots__scroll{overflow-x:auto;padding:0 16px}
.screenshots__scroll::-webkit-scrollbar{display:none}
.screenshots__track{display:flex;gap:10px;width:max-content}
.screenshots__track .item_1{flex-shrink:0}
.screenshots__track img{height:190px;width:auto;border-radius:10px;border:1px solid var(--border);object-fit:cover}

/* ── SECTION TITLE ── */
.section-title{font-size:16px;font-weight:700;margin-bottom:14px}

/* ── ABOUT ── */
.about{background:#fff;padding:20px 16px;border-bottom:1px solid var(--border)}
.about__text{display:none} /* hidden – full text shown in .about__full */
.about__full{font-size:14px;color:#333;line-height:1.7}

/* ── QUICK STATS ── */
.quick-stats{
    display:flex;align-items:center;
    background:#fff;padding:16px 0;border-bottom:1px solid var(--border);
}
.quick-stats__item{flex:1;display:flex;flex-direction:column;align-items:center;gap:4px;padding:4px 0}
.quick-stats__sep{width:1px;height:36px;background:var(--border);flex-shrink:0}
.quick-stats__val{font-size:15px;font-weight:700}
.quick-stats__label{font-size:11px;color:var(--sub);text-align:center}

/* ── REVIEWS ── */
.reviews{background:var(--bg);padding:24px 0;border-bottom:1px solid var(--border)}
.reviews__header{padding:0 16px;margin-bottom:4px}
.reviews__meta{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--sub);padding:0 16px;margin-bottom:16px}
.reviews__meta strong{font-size:14px;color:#202124}
.reviews__scroll{overflow-x:auto;padding:0 16px}
.reviews__scroll::-webkit-scrollbar{display:none}
.reviews__track{display:flex;gap:12px;width:max-content}

/* ── REVIEW CARD (testimonial) ── */
.r-card{width:252px;flex-shrink:0;background:var(--card);border:1px solid var(--border);border-radius:14px;padding:16px;display:flex;flex-direction:column;gap:10px}
.r-card__ql{font-size:32px;line-height:1;color:#ddd;font-family:Georgia,serif;margin-bottom:-6px}
.r-card__text{font-size:13px;color:#333;line-height:1.6;flex:1}
.r-card__footer{display:flex;align-items:center;gap:10px;padding-top:10px;border-top:1px solid var(--border)}
.r-card__avatar{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;color:#fff;flex-shrink:0}
.r-card__name{font-size:12px;font-weight:600;color:#202124;margin-bottom:3px}
.r-card .stars-landing{font-size:11px}

/* ── hidden legacy ── */
.PreviewReview .comment_question,.btn_show-all-review{display:none}

/* ── APP INFO GRID ── */
.app-info{background:var(--bg);padding:24px 16px;border-bottom:1px solid var(--border)}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.info-chip{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:12px 14px;display:flex;flex-direction:column;gap:3px}
.info-chip__icon{width:28px;height:28px;border-radius:8px;background:var(--bg);display:flex;align-items:center;justify-content:center;margin-bottom:6px}
.info-chip__label{font-size:11px;color:var(--sub)}
.info-chip__val{font-size:13px;font-weight:600;color:#202124}

/* ── DATA SAFETY ── */
.safety{background:var(--card);padding:24px 16px;border-bottom:1px solid var(--border)}
.safety-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.safety-item{background:#f6fdf9;border:1px solid #c8e6d9;border-radius:12px;padding:14px;display:flex;flex-direction:column;gap:8px}
.safety-item__icon{width:36px;height:36px;border-radius:10px;background:#e6f4ed;display:flex;align-items:center;justify-content:center}
.safety-item__icon svg{width:18px;height:18px}
.safety-item__text{font-size:12px;color:#1a3a2a;font-weight:500;line-height:1.4}

/* ── FOOTER ── */
.site-footer{background:#fff;padding:20px 16px;display:flex;align-items:center;gap:12px;border-top:1px solid var(--border)}
.site-footer__icon{width:40px;height:40px;border-radius:10px;object-fit:cover}
.site-footer__info{display:flex;flex-direction:column;gap:4px}
.site-footer__dev{font-size:13px;font-weight:600}
.site-footer__meta{font-size:12px;color:var(--sub);display:flex;gap:6px;flex-wrap:wrap}

/* ── HIDDEN LEGACY NODES ── */
.PreviewReview .comment_question,.btn_show-all-review{display:none}
