/* =====================================================
   APK Catalog — точная копия programmy-dlya-android.ru
   Сделано по реальному HTML/CSS исходнику сайта
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --grad-1: #2881ab;
  --grad-2: #4fc689;
  --green:  #09aab8;
  --green2: #2b9545;
  --bg:     #f2f4f5;
  --white:  #ffffff;
  --text:   #222222;
  --muted:  #818181;
  --line:   #e8e8e8;
  --font: ;
  --max: 1200px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.45; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { margin: 0; padding: 0; }

/* ======================
   HEAD-LINE
   ====================== */
.ui_3lpzmc {
  background: linear-gradient(90deg, var(--grad-1) 0%, var(--grad-2) 100%);
  position: sticky; top: 0; z-index: 200;
  height: 70px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.ui_ya5yel {
  max-width: var(--max); margin: 0 auto; height: 70px;
  display: flex; align-items: center;
  padding: 0 20px; position: static;
  box-sizing: border-box; width: 100%;
}

/* Бургер */
.nav_gdmrwc {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 70px; flex-shrink: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16'%3E%3Crect width='22' height='2.5' rx='1.25' fill='%23fff'/%3E%3Crect y='6.5' width='22' height='2.5' rx='1.25' fill='%23fff'/%3E%3Crect y='13' width='22' height='2.5' rx='1.25' fill='%23fff'/%3E%3C/svg%3E")
    center center no-repeat;
  cursor: pointer;
  position: static;
}
.nav_gdmrwc::after { content: none; }

/* Логотип */
.ui_s4dqtg {
  display: flex; flex-direction: column; justify-content: center;
  color: #fff; height: 100%;
  margin-left: 10px;
  padding-left: 52px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.23l-1.88 3.23C14.98 8.31 13.54 8 12 8s-2.98.31-4.47.91L5.65 5.68c-.19-.29-.55-.38-.84-.23-.3.16-.42.54-.26.85L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zm10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5z'/%3E%3C/svg%3E")
    left center no-repeat;
  background-size: auto 44px;
}
.ui_s4dqtg span { font-size: 17px; font-weight: 500; text-transform: uppercase; line-height: 1.1; }
.ui_s4dqtg i    { font-style: normal; font-size: 12px; color: rgba(255,255,255,.72); margin-top: 2px; }

/* Поиск */
.search-block {
  margin-left: auto; width: 440px; flex-shrink: 0;
  height: 38px; border: 1px solid rgba(255,255,255,.38);
  border-radius: 6px; padding: 0 0 0 46px; position: relative;
}
.search-block form { margin: 0; padding: 0; }
.form-text {
  height: 36px; line-height: 36px; width: 100%;
  background: none; border: none; outline: none;
  color: #fff; font-size: 14px; font-family: var(--font);
}
.form-text::placeholder { color: rgba(255,255,255,.55); }
/* iOS/Android зум при фокусе на input — предотвращаем через font-size >= 16px на мобильном */
@media (max-width: 640px) {
  .form-text { font-size: 16px; }
  #searchSuggestions {
    position: fixed !important;
    top: 58px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 0 12px 12px !important;
    max-height: 70vh !important;
  }
}
.search_qyvonk {
  position: absolute; left: 0; top: 0; width: 46px; height: 38px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E") center no-repeat;
  border: none; cursor: pointer; outline: none;
}

/* Подсказки поиска */
#searchSuggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff; border-radius: 12px;
  border: 1px solid var(--line); box-shadow: 0 8px 32px rgba(0,0,0,.13);
  z-index: 400; overflow: hidden;
  max-height: 70vh; overflow-y: auto;
}
.sugg-group-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted);
  padding: 10px 16px 4px; background: #f9f9f9;
}
.sugg-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; cursor: pointer;
  border-bottom: 1px solid #f0f0f0; transition: background .1s;
  text-decoration: none;
}
.sugg-item:last-of-type { border-bottom: none; }
.sugg-item:hover { background: #f5f9f9; }
.sugg-ico { flex-shrink: 0; }
.sugg-ico img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; display: block; }
.sugg-ico-ph { display: block; width: 48px; height: 48px; border-radius: 10px; background: var(--bg); }
.sugg-info { flex: 1; min-width: 0; }
.sugg-title-row { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.sugg-name { font-size: 14px; font-weight: 600; color: #111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sugg-ver  { font-size: 11px; color: var(--muted); white-space: nowrap; }
.sugg-mod  { font-size: 10px; font-weight: 700; color: #fff; background: var(--green); border-radius: 4px; padding: 1px 5px; }
.sugg-meta { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sugg-rat-good { color: var(--green); font-weight: 700; font-size: 13px; }
.sugg-rat-ok   { color: #f59e0b; font-weight: 700; font-size: 13px; }
.sugg-rat-bad  { color: #e53935; font-weight: 700; font-size: 13px; }
.sugg-all {
  display: block; text-align: center; padding: 11px 16px;
  font-size: 13px; color: var(--green); font-weight: 600;
  border-top: 1px solid var(--line); background: #f9f9f9;
  text-decoration: none; transition: background .1s;
}
.sugg-all:hover { background: #f0fafa; }
.sugg-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 22px 16px; text-align: center;
}
.sugg-empty-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.sugg-empty-btn {
  display: inline-block; padding: 9px 20px; font-size: 13px; font-weight: 600;
  color: #fff; background: var(--green); border-radius: 6px;
  text-decoration: none; transition: opacity .15s;
}
.sugg-empty-btn:hover { opacity: .88; }


/* ======================
   MAIN LAYOUT
   ====================== */
.ui_jpvtwu {
  max-width: var(--max); margin: 30px auto 50px;
  padding: 0 20px;
}
.ui_aqa68t {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: flex-start;
}
.ui_aimxgf { flex: 1 1 0; min-width: 0; }
.ui_7c3fwi  { width: 280px; flex-shrink: 0; }

/* All direct block children of colsfl-right must not overflow */
.ui_aimxgf > * { max-width: 100%; box-sizing: border-box; }
.ui_aimxgf .ui_tcklw5 { width: 100%; }
.ui_aimxgf .ui_j7ijke,
.ui_aimxgf .ui_deql8f,
.ui_aimxgf .comment_3puxz7,
.ui_aimxgf .ui_l0yn1m,
.ui_aimxgf .ui_57l8s2,
.ui_aimxgf .ui_hlomnc,
.ui_aimxgf .ui_w0k0pm,
.ui_aimxgf .ui_78hhg2 { width: 100%; }


/* ======================
   LEFT SIDEBAR
   ====================== */
.ui_50iuhv {
  background: #f3f8ff; border-radius: 5px;
  padding: 0 0 6px; margin-bottom: 24px;
}
.ui_qj2pio {
  font-size: 16px; font-weight: 700; color: #000;
  text-transform: uppercase;
  padding: 18px 24px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.ui_qj2pio .ui_dpewrv {
  display: block; width: 28px; height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 12c0-.53-.22-1.04-.59-1.4L13.12 6.3a1.49 1.49 0 0 0-2.12 0c-.27.29-.41.66-.41 1.03 0 .38.14.75.41 1.03L14 11.5H5a1.5 1.5 0 1 0 0 3h9l-3 2.64c-.27.28-.41.65-.41 1.03a1.49 1.49 0 0 0 2.53 1.03l4.29-4.3A1.97 1.97 0 0 0 18 12z' fill='%2314c5a8'/%3E%3C/svg%3E") center no-repeat;
  background-size: 24px;
}

/* .ui_xz85p4 строки сайдбара */
.ui_xz85p4 {
  display: flex; align-items: center;
  padding: 11px 24px; gap: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
  transition: background .12s; cursor: pointer;
  color: var(--text);
}
.ui_xz85p4:hover { background: #f1fefa; }
.ui_p9ry5g { width: 64px; height: 64px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.ui_p9ry5g img { width: 64px; height: 64px; border-radius: 6px; object-fit: cover; }
.ui_rmus4n { flex: 1; min-width: 0; }
.ui_r2cei1 {
  font-weight: 500; font-size: 14px; color: #000;
  display: block; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px; line-height: 1.3;
  padding: 0;
}
.ui_xz85p4:hover .ui_r2cei1 { color: #6fb000; }
.ui_ckhi88 {
  display: block; font-size: 12px; color: #727272;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ======================
   ТОП ЗА НЕДЕЛЮ — .ui_9g290o
   ====================== */
.ui_9g290o {
  background: #fff; border-radius: 5px;
  padding: 22px 22px 14px; margin-bottom: 22px;
}
.ui_ll2fdj {
  text-align: center; font-size: 17px; font-weight: 700;
  color: #000; margin-bottom: 18px;
}
.ui_5v000g {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 8px;
}
/* Одна карточка ТОПа */
.ui_694dv4 {
  display: flex; width: calc(33.333% - 6px);
  padding: 12px; gap: 11px; align-items: flex-start;
  border: 1px solid #eaeaea; border-radius: 7px;
  cursor: pointer; transition: all .2s ease;
  color: var(--text); background: #fff;
}
.ui_694dv4:hover { border-color: #c1f1ff; background: #f0fcff; }
.ui_l8ib92 { width: 64px; height: 64px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.ui_l8ib92 img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; }
.ui_x82c94 { flex: 1; min-width: 0; }
.ui_x51qu2 {
  font-weight: 500; font-size: 14px; color: #000;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: block; margin-bottom: 5px; line-height: 1.3;
  padding: 0;
}
/* Android иконка через SVG data URI */
.ui_ttx4sd {
  display: block; font-size: 12px; color: #727272;
  padding-left: 20px; margin-bottom: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2309aab8' d='M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.23l-1.88 3.23C14.98 8.31 13.54 8 12 8s-2.98.31-4.47.91L5.65 5.68c-.19-.29-.55-.38-.84-.23-.3.16-.42.54-.26.85L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zm10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5z'/%3E%3C/svg%3E")
  left center no-repeat;
  background-size: 16px;
}
.ui_b732lr, .ui_694dv4 .ui_b732lr {
  display: block; font-size: 12px;
  font-weight: 500; color: var(--green2);
}

/* ======================
   НОВИНКИ — .main2-news
   ====================== */
.ui_get247 {
  text-align: center; font-size: 18px; font-weight: 400;
  color: #000; margin: 0 0 14px;
}
.ui_78hhg2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.main2-news {
  box-sizing: border-box; position: relative;
  min-width: 0;
}
.ui_t9y8nb {
  display: block; padding: 12px 14px;
  background: #fff; border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  height: 100%; box-sizing: border-box;
  transition: all .15s;
}
.main2-news:hover .ui_t9y8nb {
  background: #f5fefd;
  box-shadow: 0 3px 12px rgba(0,0,0,.10);
}
.ui_o5nh8b { display: flex; gap: 10px; align-items: stretch; }
.ui_x62ufg {
  width: 90px; height: 90px; border-radius: 12px;
  overflow: hidden; flex-shrink: 0;
}
.ui_x62ufg img {
  width: 90px; height: 90px; object-fit: cover; border-radius: 12px;
}
.ui_5odph7 {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
.ui_z7g7zf {
  font-size: 16px; font-weight: 700; color: #222;
  line-height: 1.3; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 4px;
}
.ui_z7g7zf h3 {
  font-size: 16px; font-weight: 700;
  margin: 0; padding: 0; display: inline;
  line-height: inherit;
}
.main2-news:hover .ui_z7g7zf { color: #2971cb; }
.ui_6p08u4 {
  font-size: 11px; color: #464646;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.ui_lvh21t {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 6px;
  font-size: 11px; color: var(--muted);
}
.ui_c0ajbu {
  padding-left: 19px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ababab' d='M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.23l-1.88 3.23C14.98 8.31 13.54 8 12 8s-2.98.31-4.47.91L5.65 5.68c-.19-.29-.55-.38-.84-.23-.3.16-.42.54-.26.85L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zm10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5z'/%3E%3C/svg%3E") left center no-repeat;
  background-size: 14px;
}
.ui_v9nke7 { display: none; }

/* ======================
   GRBLOCK — категориальные блоки
   ====================== */
.grblock {
  background: #eefbfd;
  border-radius: 6px; padding: 22px 20px 12px;
  margin-bottom: 22px;
}
.ui_et5w0f { background: #eefbfd; }
.ui_q737kx { background: #eefbfd; }

.ui_t99yz9 {
  font-size: 17px; color: #000; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.ui_t99yz9 a {
  font-size: 12px; color: var(--green); font-weight: 400;
  text-decoration: underline;
  line-height: 1.4;
}
.ui_t99yz9 a:hover { opacity: .8; }
.ui_1z8sec {
  display: flex; flex-wrap: wrap;
  gap: 8px; justify-content: flex-start;
}

/* .card_fat09u — карточка в grblock */
.card_fat09u {
  display: flex; background: #fff;
  width: calc(33.333% - 6px);
  border-radius: 10px; overflow: hidden;
  transition: all .2s ease;
  cursor: pointer; color: var(--text);
  box-shadow: 0 2px 6px rgba(0,0,0,.07);
}
.card_fat09u:hover { background: #f0fbfd; box-shadow: 0 4px 16px rgba(0,0,0,.14); }
.card_gh0u37 { width: 90px; height: 90px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.card_gh0u37 img { width: 90px; height: 90px; object-fit: cover; }
.card_0m2vll {
  flex: 1; min-width: 0; padding: 9px 9px 9px 6px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.card_57nm1y {
  font-size: 13px; font-weight: 500; color: #535353;
  line-height: 1.3; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card_fat09u:hover .card_57nm1y { color: #2971cb; }
.card_3p9pe1 {
  font-size: 11px; color: #999;
  padding-left: 19px; margin-bottom: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ababab' d='M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85-.29-.15-.65-.06-.83.23l-1.88 3.23C14.98 8.31 13.54 8 12 8s-2.98.31-4.47.91L5.65 5.68c-.19-.29-.55-.38-.84-.23-.3.16-.42.54-.26.85L6.4 9.48C3.3 11.25 1.28 14.44 1 18h22c-.28-3.56-2.3-6.75-5.4-8.52zM7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zm10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5z'/%3E%3C/svg%3E") left center no-repeat;
  background-size: 14px;
}
.card_uod95v { font-size: 12px; font-weight: 500; color: var(--green2); }
.card_46aq5b { font-size: 12px; color: var(--muted); line-height: 1.4; margin-top: 3px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ======================
   ХЛЕБНЫЕ КРОШКИ
   ====================== */
.ui_57l8s2 {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 5px; font-size: 12px; color: var(--muted);
  margin-bottom: 14px;
}
.ui_57l8s2 a { color: var(--muted); transition: color .1s; }
.ui_57l8s2 a:hover { color: var(--green); }
.ui_57l8s2 svg { color: #ccc; flex-shrink: 0; }
.ui_57l8s2 span { color: #444; }

/* ======================
   ПОЛНАЯ НОВОСТЬ — .ui_wjjjz2
   ====================== */
.ui_wjjjz2 {
  background: #fff; border-radius: 5px;
  padding: 22px; margin-bottom: 16px;
  width: 100%; box-sizing: border-box;
}

/* Шапка: иконка + заголовок/категории + факты */
.ui_2ph3kf {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 0;
}
.ui_2unv1y {
  width: 120px; height: 120px;
  border-radius: 4px; overflow: hidden; flex-shrink: 0;
}
.ui_2unv1y img { width: 120px; height: 120px; object-fit: cover; }
.ui_ylrsqx {
  flex: 1; min-width: 0;
}
.ui_klzr7r h1 {
  font-size: 22px; font-weight: 700; margin-bottom: 6px; line-height: 1.2;
}
.ui_qawdd9 {
  font-size: 13px; line-height: 1.8; margin-bottom: 8px;
}
.ui_qawdd9 a {
  color: var(--green); text-decoration: underline; font-weight: 700;
}
.ui_qawdd9 a:hover { opacity: .8; }

/* Факты */
.ui_0na7gw {
  flex-shrink: 0; min-width: 0; max-width: 200px;
}
.ui_3ba66j {
  font-size: 13px; color: #555; margin-bottom: 4px; line-height: 1.5;
}
.ui_3ba66j i {
  font-style: normal; color: #000; font-weight: 600;
  display: inline-block; min-width: 80px;
}

/* Кнопка СКАЧАТЬ */
.ui_p5lz5h {
  margin: 18px 0 20px; background: #fff;
  border: 1px solid var(--line); border-radius: 5px;
  height: 76px; display: flex; align-items: center;
  padding: 0 20px; gap: 20px;
}
.ui_sxg1id {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; width: 178px; height: 46px;
  background: linear-gradient(90deg, #2198be, #46d396);
  border-radius: 5px; color: #fff;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: opacity .14s;
  letter-spacing: .03em; flex-shrink: 0;
  text-decoration: none;
}
.ui_sxg1id:hover { opacity: .88; color: #fff; }
.ui_oqbwem {
  font-size: 14px; color: #999;
  text-decoration: underline; font-weight: 700;
  cursor: pointer;
}
.ui_oqbwem:hover { color: var(--green); }

/* Слайдер скриншотов */
.card_2tjx2a {
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.card_t139gu {
  display: flex; gap: 8px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 4px;
}
.card_t139gu::-webkit-scrollbar { height: 3px; }
.card_t139gu::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.ttslider-item {
  flex-shrink: 0; scroll-snap-align: start;
  border-radius: 5px; overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer; transition: border-color .12s;
}
.ttslider-item:hover { border-color: var(--green); }
.ttslider-item img {
  width: auto; height: 260px;
  display: block;
  object-fit: cover;
  max-width: none; /* не давать браузеру сжимать шире чем нужно */
}
.card_4gmptc, .card_u03jha {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(200,213,223,.88); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: #36495a;
  z-index: 5; transition: background .13s; line-height: 1;
}
.card_4gmptc:hover, .card_u03jha:hover { background: rgba(170,190,200,.92); }
.card_4gmptc { right: 0; }
.card_u03jha  { left: 0; }

/* Фото лайтбокс оверлей */
.img-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.85);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.img-overlay img { max-width: 90vw; max-height: 90vh; border-radius: 4px; }
.img-overlay-close {
  position: absolute; top: 16px; right: 20px;
  color: #fff; font-size: 32px; cursor: pointer; line-height: 1;
  background: none; border: none;
}

/* Описание */
.ui_sq8pol {
  font-size: 14px; color: #555; line-height: 1.8;
  margin-bottom: 0;
}
.ui_sq8pol p  { margin-bottom: 10px; }
.ui_sq8pol b  { color: #333; }
.ui_sq8pol ul, .ui_sq8pol ol { padding-left: 22px; margin-bottom: 10px; }
.ui_sq8pol li { margin-bottom: 4px; }

/* Характеристики */
.ui_j7ijke {
  background: #fff; border-radius: 5px;
  border: 1px solid var(--line); margin-bottom: 14px; overflow: hidden;
}
.ui_bkw2a1 {
  font-size: 15px; font-weight: 700; padding: 13px 18px;
  border-bottom: 2px solid var(--green); background: #fff;
}
.ui_ytny5o { width: 100%; border-collapse: collapse; font-size: 13px; }
.ui_ytny5o td { padding: 8px 16px; border-bottom: 1px solid var(--line); }
.ui_ytny5o tr:last-child td { border-bottom: none; }
.ui_ytny5o tr:nth-child(odd) td { background: #fafafa; }

/* MOD: что есть в моде */
.ui_tik4qd {
  background: #fff; border: 1px solid var(--line); border-radius: 5px;
  margin: 16px 0; overflow: hidden;
}
.ui_itzn3r {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: #222;
  padding: 13px 18px; border-bottom: 2px solid var(--green);
}
.ui_jkrrw1 {
  display: inline-flex; align-items: center; justify-content: center;
  font: 700 11px Inter, sans-serif; font-style: normal; letter-spacing: .03em;
  color: #fff; background: linear-gradient(90deg, var(--green2), var(--green));
  padding: 3px 8px; border-radius: 4px;
}
.ui_vsu7qu {
  list-style: none; padding: 10px 18px 14px; margin: 0;
}
.ui_vsu7qu li {
  position: relative; padding: 6px 0 6px 24px;
  font-size: 13.5px; color: #444; line-height: 1.5;
  border-bottom: 1px solid #f4f4f4;
}
.ui_vsu7qu li:last-child { border-bottom: none; }
.ui_vsu7qu li::before {
  content: '✓'; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
}
.ui_ytny5o td:first-child { color: var(--muted); font-weight: 600; width: 36%; }
.ui_ytny5o td:last-child  { font-weight: 600; color: var(--text); }

/* FAQ */
.ui_deql8f {
  background: #fff; border-radius: 10px;
  margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ui_5nz0cc {
  font-size: 15px; font-weight: 700; padding: 16px 20px 14px;
  color: #000;
}
.faq-item { border-top: 1px solid #f0f0f0; }
.faq-q {
  width: 100%; text-align: left; padding: 13px 20px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 13.5px; font-weight: 600;
  color: #333; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; transition: color .1s;
  line-height: 1.4;
}
.faq-q:hover { color: var(--green); }
.faq-q.open  { color: var(--green); }
.faq-q svg { flex-shrink: 0; transition: transform .2s; color: #ccc; width:16px; height:16px; }
.faq-q.open svg { transform: rotate(180deg); color: var(--green); }
.faq-a {
  display: none; padding: 2px 20px 14px;
  font-size: 13px; color: #666; line-height: 1.75;
}
.faq-a.open { display: block; }
.faq-a ol, .faq-a ul { padding-left: 18px; margin-top: 6px; }
.faq-a li { margin-bottom: 4px; }
.faq-link { color: var(--green); font-weight: 600; text-decoration: underline; }
.faq-link:hover { opacity: .85; }

/* Теги на странице приложения */
.ui_hd5bw4 {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0;
}
.ui_pf86ed {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 20px;
  border: 1.5px solid var(--line);
  font-size: 13px; color: #555;
  text-decoration: none; transition: all .12s;
  background: #fff;
}
.ui_pf86ed:hover {
  border-color: var(--green); color: var(--green);
  background: #f2fafb;
}

/* Теги в форме админки */
.search_1obqut {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.search_hlraye {
  padding: 4px 12px; border-radius: 16px;
  border: 1px solid var(--line); background: #fff;
  font-size: 12px; color: #666; cursor: pointer;
  transition: all .12s; font-family: inherit;
}
.search_hlraye:hover {
  border-color: var(--green); color: var(--green); background: #f2fafb;
}

/* Похожие приложения */
.ui_l0yn1m {
  background: #fff; border-radius: 10px;
  margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ui_x1j8uu {
  display: flex; align-items: center;
  padding: 16px 16px 4px;
}
.ui_5q3cri { font-size: 16px; font-weight: 700; color: #000; }
.series_wabldm {
  display: flex; align-items: center; gap: 20px;
  background: #f2f5fd; border-radius: 16px;
  padding: 22px 26px; margin-bottom: 16px;
}
.series_ivg37r {
  width: 84px; height: 84px; border-radius: 20px;
  object-fit: cover; flex-shrink: 0;
}
.series_9cvnws {
  font-size: 21px; font-weight: 500; color: #101010;
  margin: 0; line-height: 1.35;
}
@media (max-width: 640px) {
  .series_wabldm { padding: 16px 18px; gap: 14px; }
  .series_ivg37r { width: 64px; height: 64px; border-radius: 16px; }
  .series_9cvnws { font-size: 16px; }
}
.ui_i9hpd1 {
  font-size: 16px; font-weight: 700; color: #000;
  margin: 22px 0 12px;
}
.ui_1y91a0   { display: none; }
.series_h2j9p2, .ui_x1j8uu { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.series_wudini {
  font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none;
  white-space: nowrap;
}
.series_wudini:hover { text-decoration: underline; }
.series_ldzznh { font-size: 13px; color: var(--muted); margin: 6px 0 14px; line-height: 1.5; }
.series_92srqa {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
  padding: 12px 16px 16px;
}
@media (max-width: 640px) { .series_92srqa { grid-template-columns: minmax(0, 1fr); } }
.card_y1saxg {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border: 1px solid var(--line); border-radius: 10px;
  text-decoration: none; transition: border-color .12s, background .12s;
  width: 100%; box-sizing: border-box;
}
.card_y1saxg:hover { border-color: var(--green); background: #f5fbfb; }
.series_l69a9t { border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.series_b7e129 { width: 52px; height: 52px; background: var(--bg); }
.series_s5eljo { min-width: 0; }
.series_0by79z {
  font-size: 14px; font-weight: 600; color: #111;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.series_42txav { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Страница /series/ — превью всех коллекций */
.series_hq636m {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  margin-top: 14px;
}
@media (max-width: 900px) { .series_hq636m { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .series_hq636m { grid-template-columns: minmax(0, 1fr); } }
.card_ek7b52 {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 12px; padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  text-decoration: none; transition: transform .12s, box-shadow .12s;
  width: 100%; box-sizing: border-box;
}
.card_ek7b52:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.09); }
.series_o784r2 { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; flex-shrink: 0; }
.series_ckt0no { min-width: 0; flex: 1 1 auto; }
.series_tki09q {
  font-size: 15px; font-weight: 700; color: #111;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.series_yl0vm1 {
  font-size: 12.5px; color: var(--muted); margin-top: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.series_516x2p { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 5px; }
.ui_6orkmt {
  display: flex; flex-wrap: wrap; padding: 8px; gap: 6px;
}
.ui_6orkmt { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.ui_6orkmt .main2-news { width: auto; }

/* ======================
   SEO-ТЕКСТ
   ====================== */
.stext {
  font-size: 13px; color: #5f5f5f; line-height: 1.72;
  margin-top: 18px; padding: 16px 0;
  border-top: 1px solid var(--line);
  word-break: break-word;
}
/* Сворачиваемый SEO блок */
.stext-wrap { position: relative; }
.stext-wrap.collapsed .stext {
  max-height: 200px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}
.stext-expand {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--green);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.stext-expand:hover { text-decoration: underline; }
.stext h1 { font-size: 18px; color: #000; font-weight: 700; margin-bottom: 10px; }
.stext h2 { font-size: 15px; color: #000; font-weight: 600; margin-bottom: 10px; }
.stext h3 { font-size: 14px; color: #000; font-weight: 600; margin-bottom: 8px; }
.stext p  { margin-bottom: 8px; color: #5f5f5f; }
.stext ul, .stext ol { padding-left: 18px; margin-bottom: 8px; }
.stext li { margin-bottom: 3px; color: #5f5f5f; }
.stext a  { color: var(--green); }

/* ======================
   СТРАНИЦА КАТЕГОРИИ
   ====================== */
.ui_hlomnc {
  font-size: 20px; color: #000; font-weight: 400;
  margin: 0 0 14px;
}
.ui_hlomnc h1 { font-size: 20px; font-weight: 400; display: inline; }
.ui_3oqamu { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.65; }

/* ======================
   СТРАНИЦА СКАЧИВАНИЯ
   ====================== */
.download_irjym9 {
  background: #fff; border-radius: 5px;
  padding: 22px; margin-bottom: 14px;
}
.download_8r2wyj {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.download_7q79qa img { width: 80px; height: 80px; border-radius: 12px; border: 1px solid var(--line); }
.download_8m4p9o { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.download_ftzada  { font-size: 12px; color: var(--muted); }
.download_w7jkdj {
  text-align: center; padding: 28px 20px;
  background: #f9fefc; border: 1px solid #d4ede7;
  border-radius: 6px; margin-bottom: 16px;
}
.dl-timer-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
#dlTimer { font-size: 64px; font-weight: 900; color: var(--green); line-height: 1; font-variant-numeric: tabular-nums; margin-bottom: 3px; }
#dlTimerLbl { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.dl-prog-wrap { height: 7px; background: #ddd; border-radius: 4px; max-width: 360px; margin: 0 auto 20px; overflow: hidden; }
#dlBar { height: 100%; background: linear-gradient(90deg, #2198be, #46d396); border-radius: 4px; width: 0; transition: width 1s linear; }
.download_51r9d1 {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; background: linear-gradient(90deg, #2198be, #46d396);
  color: #fff; border: none; border-radius: 5px;
  padding: 12px 40px; font-size: 15px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  opacity: .4; pointer-events: none;
  transition: opacity .2s; text-decoration: none; letter-spacing: .03em;
}
.download_51r9d1.ready { opacity: 1; pointer-events: auto; }
.download_51r9d1.ready:hover { opacity: .88; }
.download_gj1eps { border: 1px solid var(--line); border-radius: 5px; overflow: hidden; margin-bottom: 14px; }
.download_upmgvw  { background: #fafafa; padding: 10px 16px; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--line); }
.download_re9bvl  { padding: 13px 16px; font-size: 13px; color: #555; line-height: 1.8; }
.download_re9bvl ol { padding-left: 18px; }
.download_re9bvl li { margin-bottom: 3px; }
.download_vi6ssd { width: 100%; border-collapse: collapse; font-size: 13px; }
.download_vi6ssd td { padding: 7px 16px; border-bottom: 1px solid var(--line); }
.download_vi6ssd tr:last-child td { border-bottom: none; }
.download_vi6ssd tr:nth-child(odd) td { background: #fafafa; }
.download_vi6ssd td:first-child { color: var(--muted); font-weight: 600; width: 35%; }
.download_2vdjnb { margin-top: 13px; text-align: center; font-size: 12px; color: var(--muted); }
.download_2vdjnb a { color: var(--muted); }
.download_2vdjnb a:hover { color: var(--green); }

/* ======================
   ПАГИНАЦИЯ
   ====================== */
.nav_kjlyss { padding: 14px 0; text-align: center; clear: both; }
.nav_xqhh8x { display: inline-block; }
.nav_xqhh8x a, .nav_xqhh8x span {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 2px 6px; width: 38px; height: 38px;
  border-radius: 5px; font-size: 13px;
}
.nav_xqhh8x a {
  background: linear-gradient(0deg, #19a6d1, #3bbae1);
  color: #fff; border: 1px solid #42b7d6;
}
.nav_xqhh8x a:hover { background: #32e1c8; }
.nav_xqhh8x span {
  background: #fff; color: #000;
  border: 1px solid #e0e0e0;
}

/* ======================
   ПОИСК
   ====================== */
.ui_pqy67o { text-align: center; color: var(--muted); padding: 40px; font-size: 14px; }

/* ======================
   FOOTER
   ====================== */
.ui_xk1wty {
  background: #f5f5f5; border-top: 1px solid #e0e0e0;
  padding: 28px 20px 22px; margin-top: 30px; text-align: center;
}
.ui_j3qzpz { display:flex; justify-content:center; gap:10px; margin-bottom:14px; }
.ui_ev6u4n {
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px; border:1px solid #ccc;
  border-radius:8px; color:#aaa; transition:all .14s;
}
.ui_ev6u4n:hover { border-color:#999; color:#666; }
.ui_ev6u4n svg { display:block; }
.ui_9l3doe { font-size:12px; color:#aaa; line-height:1.65; margin-bottom:8px; }
.ui_9l3doe a { color:#aaa; text-decoration:underline; }
.ui_h7sej3 { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 14px; }
.ui_h7sej3 a { font-size: 12px; color: #bbb; text-decoration: underline; }
.ui_h7sej3 a:hover { color: #555; }

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 1240px) {
  .ui_jpvtwu { padding: 0 16px; }
}
@media (max-width: 1040px) {
  .ui_78hhg2 { grid-template-columns: repeat(2,1fr); }
  .ui_7c3fwi  { width: 240px; }
  .ui_694dv4        { width: calc(50% - 4px); }
  .card_fat09u       { width: calc(50% - 4px); }
}
@media (max-width: 860px) {
  .ui_aimxgf { width: 100% !important; min-width: 0; }
  .ui_7c3fwi  { display: none !important; }
  .ui_aqa68t      { flex-direction: column; }
  .ui_694dv4        { width: calc(50% - 6px); }
  .card_fat09u       { width: calc(50% - 4px); }
  .ui_6orkmt    { grid-template-columns: repeat(2,1fr); }
  .ui_2ph3kf     { flex-wrap: wrap; }
  .ui_0na7gw   { width: 100%; margin-top: 10px; }
  /* app page */
  /* fnh hero — переход на 2-col */
  .ui_tcklw5         { grid-template-columns: 100px 1fr; gap: 12px; }
  .ui_mu2go5     { width: 100px; height: 100px; }
  .ui_mu2go5 img { width: 100px; height: 100px; border-radius: 12px; }
  .download_mm62bd      { grid-column: 1 / -1; grid-row: 2; width: 100%; }
  .download_mm62bd .ui_sxg1id { width: 100%; text-align: center; justify-content: center; }
  /* grblock 2 cols */
  .ui_1z8sec { display: grid; grid-template-columns: 1fr 1fr; }
  .card_fat09u       { width: auto; }
  /* monthly top */
  .ui_oc4beq { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 640px) {
  /* Header */
  .ui_3lpzmc   { height: 54px; }
  .ui_ya5yel { height: 54px; padding: 0 10px; }
  .nav_gdmrwc    { height: 54px; background-position: center 10px; width: 38px; }
  .nav_gdmrwc::after { content: none; }
  .ui_s4dqtg span   { font-size: 13px; }
  .ui_s4dqtg i      { display: none; }
  .search-block { width: auto; flex: 1; margin-left: 8px; }
  /* Top nav */
  .nav_akd8y2   { padding: 0 8px; gap: 2px; }
  .nav_2n8zro { padding: 5px 12px; font-size: 13px; border-radius: 18px; }
  /* Layout — prevent overflow */
  .ui_jpvtwu { margin-top: 10px; padding: 0 10px; overflow-x: hidden; box-sizing: border-box; }
  .ui_aqa68t      { gap: 0; }
  .ui_aimxgf { width: 100% !important; min-width: 0; }
  /* Cards → 1 col */
  .ui_78hhg2 { grid-template-columns: 1fr; }
  .main2-news  { width: 100%; }
  /* rtop → 2 per row */
  .ui_9g290o     { overflow: hidden; width: 100%; box-sizing: border-box; }
  .ui_5v000g  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
  .ui_694dv4           { box-sizing: border-box; min-width: 0; }
  .ui_694dv4        { width: 100%; box-sizing: border-box; padding: 8px; gap: 7px; }
  .ui_l8ib92  { width: 52px; height: 52px; }
  .ui_l8ib92 img { width: 52px; height: 52px; }
  .ui_x82c94      { flex: 1; min-width: 0; overflow: hidden; }
  .ui_x51qu2  { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ui_ttx4sd, .ui_694dv4 .ui_b732lr { font-size: 11px; }
  /* gnews — full width */
  .card_fat09u       { width: 100%; }
  .ui_1z8sec { grid-template-columns: 1fr 1fr; }
  /* Download page — кнопка скачать */
  .ui_p5lz5h { height: auto; flex-wrap: wrap; padding: 12px 12px; gap: 8px; box-sizing: border-box; width: 100%; }
  .ui_sxg1id { width: 100%; justify-content: center; box-sizing: border-box; }
  .ui_oqbwem { width: 100%; text-align: center; }
  /* Slider */
  .ui_6orkmt    { grid-template-columns: 1fr; }
  .ttslider-item img { height: 180px; width: auto; }
  /* Spec */
  /* Monthly top */
  .ui_oc4beq { grid-template-columns: repeat(2,1fr) !important; }
  /* DL page */
  #dlStep1 { padding: 16px 0 8px; }
  .download_7u10ns { min-width: 180px; font-size: 15px; padding: 14px 24px; }
}
@media (max-width: 420px) {
  .ttslider-item img { height: 120px; width: auto; }
  .ui_jpvtwu { padding: 0 8px; margin-top: 10px; }
  .grblock           { padding: 14px 10px 8px; }
  .ui_9g290o        { padding: 14px 10px 8px; }
  .nav_2n8zro      { padding: 4px 8px; font-size: 11px; }
  .ui_1z8sec   { grid-template-columns: 1fr 1fr; }
  .ui_oc4beq { grid-template-columns: 1fr 1fr !important; }
  /* main2-news horizontal on very small */
  .ui_x62ufg  { width: 72px; height: 72px; }
  .ui_x62ufg img { width: 72px; height: 72px; }
  /* fnh hero — 2-col, кнопка в потоке */
  .ui_tcklw5         { grid-template-columns: 80px 1fr; gap: 10px; }
  .ui_mu2go5     { width: 80px; height: 80px; }
  .ui_mu2go5 img { width: 80px; height: 80px; }
  .ui_6omwnv    { min-width: 0; }
  .download_mm62bd      { grid-column: 1 / -1; grid-row: 2; width: 100%; }
  .download_mm62bd .ui_sxg1id { width: 100%; text-align: center; justify-content: center; }
}

/* ======================
   DLINK BLOCK (download link like screenshot 2)
   ====================== */







/* ======================
   STAR RATING
   ====================== */
.star-rating-wrap { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.ui_8uujih .ui_a4v7zs { font-size: 18px; color: #ddd; }
.ui_8uujih .ui_jplomm { color: #ffd200; }
.star-info { font-size: 12px; color: var(--muted); }
.ui_mrvuuv { background: #fff8e1; border: 1px solid #ffe082; border-radius: 6px; padding: 14px 16px; margin-bottom: 16px; }
.ui_oyqavg { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.ui_j5s89x { font-size: 13px; color: var(--green2); }
.star-input { display: flex; gap: 4px; margin-bottom: 10px; }
.star-btn { font-size: 28px; color: #ddd; cursor: pointer; transition: color .1s; line-height: 1; }
.star-btn.star-hover { color: #ffd200; }
.ui_b8x84m {
  background: var(--green); color: #fff; border: none;
  border-radius: 5px; padding: 8px 20px; cursor: pointer;
  font-size: 13px; font-family: var(--font); transition: opacity .13s;
}
.ui_b8x84m:disabled { opacity: .5; cursor: not-allowed; }
.ui_b8x84m:hover:not(:disabled) { opacity: .88; }

/* ======================
   COMMENTS
   ====================== */
.comment_3puxz7 { background: #fff; border-radius: 5px; padding: 20px; margin-bottom: 14px; }
.comment_6tm50c { font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.comment_sf1k2r { margin-bottom: 20px; }
.comment-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.comment-item:last-child { border-bottom: none; }
.comment-avatar {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%; overflow: hidden;
  background: var(--bg);
}
.comment-avatar img { width: 40px; height: 40px; object-fit: cover; }
.comment-body { flex: 1; min-width: 0; }
.comment-item-header { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.comment-author { font-size: 13px; font-weight: 700; color: #000; }
.comment-date   { font-size: 11px; color: var(--muted); }
.comment-text   { font-size: 13px; color: #555; line-height: 1.65; }
.comment-votes  { display: flex; align-items: center; gap: 6px; flex-shrink: 0; margin-left: 8px; }
.cvote {
  width: 28px; height: 28px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: background .12s, color .12s;
  line-height: 1;
}
.cvote-plus  { background: #e8f8f8; color: var(--green); }
.cvote-minus { background: #fce8e8; color: #e53935; }
.cvote-plus:hover  { background: var(--green); color: #fff; }
.cvote-minus:hover { background: #e53935; color: #fff; }
.cvote-score { font-size: 13px; font-weight: 700; min-width: 20px; text-align: center; color: #888; }
.cvote-score.pos { color: var(--green); }
.cvote-score.neg { color: #e53935; }
.comment_hmjit6 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.comment_ie3a2t {
  background: #f3f8ff;
  border-radius: 5px;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 13.5px; color: #444; line-height: 1.6;
}
.comment_cj765w {
  width: 100%; border: 1px solid var(--line); border-radius: 5px;
  padding: 9px 12px; font-size: 13px; font-family: var(--font);
  margin-bottom: 8px; outline: none;
}
.comment_cj765w:focus { border-color: var(--green); }
.comment_98ow63 {
  width: 100%; border: 1px solid var(--line); border-radius: 5px;
  padding: 9px 12px; font-size: 13px; font-family: var(--font);
  resize: vertical; margin-bottom: 10px; outline: none;
}
.comment_98ow63:focus { border-color: var(--green); }
@media (max-width: 640px) {
  /* iOS Safari увеличивает страницу при фокусе на input/textarea/select с font-size < 16px.
     !important — чтобы гарантированно перебить любые другие правила независимо от порядка/специфичности. */
  .comment_cj765w, .comment_98ow63,
  input[type="text"], input[type="search"], input[type="email"], input[type="tel"],
  textarea, select {
    font-size: 16px !important;
  }
}
.comment_y7f28z {
  background: linear-gradient(90deg, #2198be, #46d396);
  color: #fff; border: none; border-radius: 5px;
  padding: 9px 24px; font-size: 13px; font-weight: 700;
  font-family: var(--font); cursor: pointer; transition: opacity .13s;
}
.comment_y7f28z:hover { opacity: .88; }

/* ======================
   MODAL
   ====================== */
.modal_084tnv {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
}
.modal_084tnv[hidden] { display: none; }
.modal_2c51j1 {
  background: #fff; border-radius: 10px; padding: 28px 32px;
  max-width: 380px; width: 90%; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.modal_omt0ws { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.modal_q5stey  { font-size: 13px; color: #555; margin-bottom: 18px; line-height: 1.6; }
.modal_1s4jwt {
  background: var(--green); color: #fff; border: none;
  border-radius: 5px; padding: 9px 28px; font-size: 13px;
  font-weight: 700; cursor: pointer; font-family: var(--font);
}
.modal_1s4jwt:hover { opacity: .88; }

/* Responsive fnh */
@media (max-width: 900px) {
  .ui_tcklw5 { grid-template-columns: 110px 1fr; }
  .ui_bbhqrr { grid-column: 1 / -1; grid-row: 2; padding-top: 12px; border-top: 1px solid var(--line); margin-top: 12px; }
  }
@media (max-width: 560px) {
  .ui_tcklw5 { grid-template-columns: 80px 1fr; gap: 0 12px; }
  .ui_mu2go5 img { width: 76px; height: 76px; }
  .ui_jg6jky { font-size: 17px; }
  .ui_sxg1id { width: 100%; justify-content: center; }
}

/* ======================================================
   FNH — hero block: иконка | info+рейтинг | кнопка
   ====================================================== */
.ui_tcklw5 {
  display: grid;
  grid-template-columns: 140px 1fr 180px;
  gap: 0 20px;
  align-items: start;
  margin-bottom: 0;
}
.ui_mu2go5 { grid-column:1; grid-row:1; }
.ui_mu2go5 img { width:130px; height:130px; display:block; border-radius:4px; }

.ui_6omwnv { grid-column:2; grid-row:1; padding-top:4px; }
.ui_jg6jky { font-size:22px; font-weight:700; color:#000; margin-bottom:7px; line-height:1.2; }
.ui_nuky80 { font-size:13px; color:#555; margin-bottom:10px; }
.ui_nuky80 a { color:var(--green); text-decoration:underline; font-weight:400; }

/* Кнопка скачать — справа в hero */
.download_mm62bd { display:flex; flex-direction:column; align-items:stretch; gap:8px; padding-top:4px; }
.download_mm62bd .ui_sxg1id { width:100%; }
.download_ot2jyw { display:flex; flex-direction:column; gap:3px; }
.download_ot2jyw span { font-size:11px; color:var(--muted); }

/* ======================================================
   SPEC INLINE — таблица характеристик ПОД hero
   ====================================================== */
.ui_n6didx {
  margin: 16px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  width: 100%; box-sizing: border-box; overflow: hidden;
}
.ui_ds8vdu { width:100%; border-collapse:collapse; font-size:13px; }
.ui_ds8vdu td { padding:4px 8px; vertical-align:top; }
.ui_yod4qg { color:var(--muted); font-weight:700; white-space:nowrap; width:80px; }
.ui_ly6euj { color:#333; }
.ui_wnwtbb { width:28px; }

/* Кнопка скачать под характеристиками */
.download_wu4dg3 {
  display:flex; align-items:center;
  padding:14px 0 16px;
  border-bottom:1px solid var(--line);
  margin-bottom:16px;
}

/* ======================================================
   DLINK WRAP — после описания, стиль как скриншот 2
   ====================================================== */










.ui_i42bdf:hover 

/* ======================================================
   RESPONSIVE FNH
   ====================================================== */
@media (max-width:900px) {
  .ui_tcklw5 { grid-template-columns:110px 1fr; }
  .download_mm62bd { grid-column:1/-1; grid-row:2; flex-direction:row; align-items:center; gap:14px; margin-top:14px; }
  .download_mm62bd .ui_sxg1id { width:auto; }
  .download_ot2jyw { flex-direction:row; flex-wrap:wrap; gap:6px; }
}
@media (max-width:560px) {
  .ui_tcklw5 { grid-template-columns:80px 1fr; gap:0 12px; }
  .ui_mu2go5 img { width:76px; height:76px; }
  .ui_jg6jky { font-size:17px; }
  .download_mm62bd { flex-wrap:wrap; }
  .download_mm62bd .ui_sxg1id { width:100%; }
  .ui_yod4qg { width:60px; }
  
}

/* Category tags (subcategory pills on /apps/ /games/) */
.ui_w0k0pm {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 14px 0 4px;
}

/* Сортировка */
.ui_3l4y40 {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 10px;
  padding: 12px 18px; margin-top: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  font-size: 13px;
}
.ui_8nriak { color: #888; white-space: nowrap; font-size: 13px; }
.ui_kh2jwz {
  appearance: none; -webkit-appearance: none;
  background: #f2f4f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: none; border-radius: 8px;
  padding: 6px 30px 6px 12px;
  font-size: 13px; color: #444; font-family: inherit;
  cursor: pointer; outline: none; transition: background .12s;
}
.ui_kh2jwz:hover { background-color: #e8eaeb; }
.ui_da086i {
  display: inline-block;
  border: 1px solid var(--green);
  color: var(--green); border-radius: 5px;
  padding: 5px 14px; font-size: 13px;
  font-weight: 400; transition: all .12s;
  background: #fff;
}
.ui_da086i:hover {
  background: var(--green); color: #fff;
}
.ui_da086i.active {
  background: var(--green); color: #fff;
}

.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer; color: #fff;
  font-size: 28px; font-weight: 300;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; line-height: 1;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.7);
}
/* ── DLINK — иконка слева, инфо по центру, кнопка СПРАВА, всё в одну строку ── */
.ui_lwr35y { margin: 20px 0 6px; }
.ui_tt36s5 { font-size: 17px; font-weight: 400; color: #000; margin-bottom: 14px; }

.ui_i42bdf {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  background: linear-gradient(135deg, #358ea9, #49ccb7);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  gap: 14px;
  cursor: pointer;
  transition: opacity .13s;
}
.ui_i42bdf:hover { opacity: .92; color: #fff; }

/* Левая часть: иконка + инфо */
.ui_zgzpuy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.ui_4jaqb5 {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ui_6rz08j {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ui_v4sl1p {
  font-size: 14px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}
.ui_drfphk {
  font-size: 12px; color: rgba(255,255,255,.82);
  white-space: nowrap;
}

/* Правая часть: кнопка — ВСЕГДА СПРАВА */
.ui_g8xgvw {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px; font-weight: 700;
  color: #fff; white-space: nowrap;
  transition: background .13s;
}
.ui_i42bdf:hover .ui_g8xgvw { background: rgba(255,255,255,.32); }

@media (max-width: 480px) {
  .ui_i42bdf { padding: 14px 14px; gap: 10px; }
  .ui_g8xgvw { padding: 8px 14px; font-size: 13px; }
}

/* gnews h3 clean */
.card_57nm1y h3 {
  font-size: inherit; font-weight: inherit;
  margin: 0; padding: 0; line-height: inherit; display: inline;
}

/* main2-news card extra rows */
.ui_rq3415 {
  font-size: 12px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}
.ui_3nungq { font-size: 12px; color: var(--muted); font-weight: 400; }

.download_sga4qp {
  font-size: 13px; color: #666; line-height: 1.7;
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

/* ── Static pages ── */
.ui_nr14ep {
  background: #fff; border-radius: 5px;
  padding: 28px 30px; margin-bottom: 16px;
}
.ui_yrh8nj {
  font-size: 24px; font-weight: 400; color: #000;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 2px solid var(--green);
}
.ui_gx9ht3 {
  font-size: 14px; color: #444; line-height: 1.8;
}
.ui_gx9ht3 h2 {
  font-size: 17px; font-weight: 700; margin: 20px 0 10px; color: #000;
}
.ui_gx9ht3 p  { margin-bottom: 10px; }
.ui_gx9ht3 ul { padding-left: 20px; margin-bottom: 10px; }
.ui_gx9ht3 li { margin-bottom: 5px; }
.ui_gx9ht3 a  { color: var(--green); text-decoration: underline; }

/* ── Contact form ── */
.ui_posxp9 {
  font-size: 14px; color: #555; margin-bottom: 20px; line-height: 1.7;
}
.ui_5zk8g1 {
  background: #e8f5f0; border: 1px solid #a5d6c0;
  border-radius: 6px; padding: 14px 18px;
  font-size: 14px; color: #2e7d5a; margin-bottom: 16px;
}
.ui_3kav5q { max-width: 560px; }
.ui_1823ox { margin-bottom: 16px; }
.ui_c0un6y {
  display: block; font-size: 13px; font-weight: 700;
  color: #444; margin-bottom: 6px;
}
.ui_d60d5p {
  width: 100%; border: 1px solid #ddd; border-radius: 6px;
  padding: 10px 14px; font-size: 14px; font-family: var(--font);
  outline: none; transition: border-color .12s;
  box-sizing: border-box;
}
.ui_d60d5p:focus { border-color: var(--green); }
.ui_a912p3 { resize: vertical; min-height: 130px; }
.ui_eu9iqf {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, #2198be, #46d396);
  color: #fff; border: none; border-radius: 6px;
  padding: 11px 28px; font-size: 14px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  transition: opacity .13s;
}
.ui_eu9iqf:hover { opacity: .88; }

/* Category index sections */
.ui_14ssdp { margin-bottom: 24px; }
.ui_bz5rgs {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}
.ui_fsgnz7 { font-size: 17px; font-weight: 700; color: #000; }
.ui_kvav0c   { font-size: 12px; color: var(--green); text-decoration: underline; }
.ui_kvav0c:hover { opacity: .8; }

/* Comment likes */
.comment_iw8gz7 {
  display: flex; align-items: center; gap: 10px;
  margin-top: 8px;
}
.comment_90oqad {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1px solid #e0e0e0; border-radius: 20px;
  padding: 3px 12px; font-size: 12px; color: #888;
  cursor: pointer; font-family: var(--font); transition: all .13s;
}
.comment_90oqad:hover       { border-color: var(--green); color: var(--green); }
.comment_90oqad.ui_6sw4k3       { background: #e8f8f8; border-color: var(--green); color: var(--green); font-weight:700; }
.comment_90oqad.ui_s6v2lz    { background: #fff0f0; border-color: #e57373; color: #e57373; font-weight:700; }
.comment_90oqad svg         { width:13px; height:13px; }

/* TG promo block */
.ui_iufmey {
  display: flex; gap: 12px; margin: 20px 0 6px;
  flex-wrap: wrap;
}
.ui_4bp919 {
  display: flex; flex: 1; align-items: center; justify-content: center;
  gap: 10px; min-width: 180px;
  background: linear-gradient(135deg, #28a8e0, #1d96cf);
  border-radius: 10px; padding: 14px 20px;
  color: #fff; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: opacity .13s;
}
.ui_4bp919:hover { opacity: .9; color: #fff; }
.ui_4bp919 svg { flex-shrink: 0; }

.gplay-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  background: #2a2d30;
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  gap: 14px;
  cursor: pointer;
  transition: opacity .13s;
  margin-bottom: 10px;
}
.gplay-row:hover { opacity: .92; color: #fff; }
.gplay-row .ui_4jaqb5 { background: rgba(255,255,255,.2); }

.download_0i8do3 {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: #f7f9f9;
  border-radius: 6px;
  font-size: 13px; line-height: 1.65; color: #5f5f5f;
}

/* Sidebar card h3 */
.ui_r2cei1 h3, .ui_x51qu2 h3 {
  font-size: inherit; font-weight: inherit;
  margin: 0; padding: 0; display: inline; line-height: inherit;
}

.download_7u10ns {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; min-width: 260px;
  background: linear-gradient(135deg, #2881ab, #4fc689);
  color: #fff; font-size: 17px; font-weight: 700;
  padding: 16px 40px; border-radius: 12px;
  text-decoration: none; transition: opacity .15s;
  box-shadow: 0 4px 16px rgba(40,171,146,.35);
}
.download_7u10ns:hover { opacity: .9; color: #fff; }
.download_7u10ns.download_bwmlnf { opacity: .5; pointer-events: none; }
.download_7u10ns.ready { opacity: 1; pointer-events: auto; }

/* Download page — center button */
#dlStep1 { text-align: center; padding: 24px 0 8px; }
#dlStep1 .ui_sxg1id {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: auto !important;
  height: auto !important;
  padding: 14px 36px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  white-space: nowrap !important;
  letter-spacing: .04em !important;
}
#dlStep1 .ui_sxg1id svg { display:inline-block !important; flex-shrink:0 !important; }
#dlStep2 { text-align: center; }

/* ── Top 100 page ── */
.ui_p2ti1z { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.card_lsrx1m {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 10px;
  padding: 10px 14px; text-decoration: none; color: var(--text);
  transition: background .12s;
}
.card_lsrx1m:hover { background: #f5fefd; }
.ui_u8gbk0 {
  font-size: 15px; font-weight: 700; color: #bbb;
  min-width: 28px; text-align: right; flex-shrink: 0;
}
.card_lsrx1m:nth-child(1) .ui_u8gbk0 { color: #f5b700; font-size: 18px; }
.card_lsrx1m:nth-child(2) .ui_u8gbk0 { color: #9e9e9e; font-size: 17px; }
.card_lsrx1m:nth-child(3) .ui_u8gbk0 { color: #c07848; font-size: 16px; }
.ui_jyqezt { flex-shrink: 0; }
.ui_jyqezt img { border-radius: 10px; display: block; }
.ui_gwysgx { flex: 1; min-width: 0; }
.ui_yvko5l { display: block; font-size: 14px; font-weight: 600; color: #222; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui_omf58d { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.ui_omf58d span { font-size: 12px; color: var(--muted); }
.ui_omf58d span + span::before { content: "·"; margin-right: 8px; color: #ddd; }
.download_d6ckev { flex-shrink: 0; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }

/* ── Вертикальная карточка (Популярное за месяц) ── */
.ui_1z8sec.ui_oc4beq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.card_0ljva9 {
  display: flex; flex-direction: column; align-items: center;
  background: #fff; border-radius: 12px; padding: 18px 12px 14px;
  text-align: center; cursor: pointer; color: var(--text);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.07);
  transition: all .18s ease;
}
.card_0ljva9:hover { background: #f0fbfd; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.card_0ljva9 .card_0mzuau {
  width: 90px; height: 90px; border-radius: 18px; overflow: hidden;
  margin-bottom: 12px; flex-shrink: 0;
}
.card_0ljva9 .card_0mzuau img { width: 90px; height: 90px; object-fit: cover; display: block; }
.card_0ljva9 .card_z8iv0w {
  font-size: 14px; font-weight: 700; color: #222;
  line-height: 1.3; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card_0ljva9:hover .card_z8iv0w { color: #2971cb; }
.card_0ljva9 .card_h67ulg {
  font-size: 12px; font-weight: 600; color: var(--green2); margin-bottom: 6px;
}
.card_0ljva9 .card_tljuzd {
  font-size: 12px; color: var(--muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 900px) {
  .ui_1z8sec.ui_oc4beq { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .ui_1z8sec.ui_oc4beq { grid-template-columns: 1fr 1fr; }
}

/* ── Пагинация ── */
.ui_ksprng {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin: 20px 0 10px; flex-wrap: wrap;
}
.ui_qzlzvj {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  color: #555; background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  text-decoration: none; transition: all .13s;
  border: 1px solid #e8e8e8;
}
.ui_qzlzvj:hover {
  background: var(--green); color: #fff;
  border-color: var(--green);
}
.page-link--active {
  background: var(--green); color: #fff !important;
  border-color: var(--green);
  font-weight: 700; pointer-events: none;
}
.ui_adh2h7, .ui_jboy2y {
  padding: 0 14px; color: var(--green);
  font-weight: 600;
}
.ui_adh2h7:hover, .ui_jboy2y:hover {
  background: var(--green); color: #fff;
}

/* ── Навигация под шапкой ── */
.nav_oq9w72 {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky; top: 0; z-index: 90;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.nav_akd8y2 {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 4px;
  padding: 4px 20px; height: 42px;
}
.nav_2n8zro {
  font-size: 13px; font-weight: 600; color: #555;
  padding: 6px 14px; border-radius: 6px;
  text-decoration: none; transition: all .13s;
  white-space: nowrap;
}
.nav_2n8zro:hover { background: #f4f4f4; color: #222; }
.nav_2n8zro.active { background: var(--green); color: #fff; }

/* ── Telegram download button ── */
.tg-dl-btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; width:auto; height:auto;
  background:#229ED9; color:#fff;
  padding:14px 36px; border-radius:10px;
  text-decoration:none; font-size:14px; font-weight:700;
  font-family:Inter,sans-serif; letter-spacing:.04em;
  transition:opacity .15s; white-space:nowrap;
}
.tg-dl-btn[style*="display:none"] { display:none !important; }
.tg-dl-btn:hover { opacity:.88; color:#fff; }

@media (max-width: 640px) {
  #dlStep1 > div { flex-direction: column !important; gap: 10px !important; }
  #dlStep1 .ui_sxg1id,
  .tg-dl-btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Кнопка "Наверх" */
#scrollTopBtn {
  position: fixed; bottom: 24px; right: 20px; z-index: 999;
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--green); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 14px rgba(9,184,109,.4);
  opacity: 0; transform: translateY(12px);
  transition: opacity .22s, transform .22s;
  pointer-events: none;
}
#scrollTopBtn.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
#scrollTopBtn:hover { opacity: .88; }

/* ── Рекомендуемые блоки на главной ──────────────────────────────────────── */
.ui_uhbrn0 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px; border-radius: 14px; overflow: hidden;
  margin-bottom: 20px;
}
.ui_uhbrn0:has(.card_7mrkh2:nth-child(1):last-child) {
  grid-template-columns: 1fr;
}
.ui_uhbrn0:has(.card_7mrkh2:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
.ui_uhbrn0:has(.card_7mrkh2:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
.card_7mrkh2 {
  position: relative; overflow: hidden;
  padding: 16px 14px 0;
  min-height: 150px;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: filter .15s;
}
.card_7mrkh2:hover { filter: brightness(.93); }
/* Крестики-паттерн */
.card_7mrkh2::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; z-index: 0;
}
.card_61qz5b {
  font-size: 15px; font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: 4px;
  position: relative; z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.card_eigcw8 {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 5px; position: relative; z-index: 2;
}
.card_eigcw8 span {
  font-size: 11px; color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.15); border-radius: 4px;
  padding: 2px 7px;
}
.card_dlb6tf {
  font-size: 11px; color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: 2px;
  position: relative; z-index: 2;
}
.card_dlb6tf .ui_8ttvxb { color: #ffe14d; }
.card_dlb6tf .ui_xhoz92 { color: rgba(255,255,255,.35); }
/* Картинка — занимает весь низ ячейки, выходит за края */
.card_vuiubz {
  position: absolute;
  bottom: 0; right: -4px;
  width: auto;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(-4px 4px 12px rgba(0,0,0,.3));
}

@media (max-width: 640px) {
  .ui_uhbrn0 { grid-template-columns: repeat(2,1fr); }
  .card_7mrkh2 { min-height: 130px; padding: 12px 10px 0; }
  .card_61qz5b { font-size: 13px; }
  .card_vuiubz { height: 78%; }
}
@media (max-width: 380px) {
  .card_7mrkh2 { min-height: 110px; }
}

/* ── Блок поделиться ─────────────────────────────────────────────────────── */
.ui_hbt0fp {
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ui_eyom4q {
  display: block; font-size: 13px; font-weight: 700;
  color: #555; margin-bottom: 10px;
}
.ui_692bd5 {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ui_m4fs4m {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: #fff; text-decoration: none;
  border: none; cursor: pointer; font-family: inherit;
  transition: opacity .13s;
}
.ui_m4fs4m:hover { opacity: .85; }
.ui_chqlos   { background: #4680C2; }
.ui_gbe0nh   { background: #229ED9; }
.ui_8gp0q8   { background: #25d3be; }
.ui_3l8v0o { background: #6b7280; color: #fff; }

/* ── Лучшее совпадение в поиске ─────────────────────────────────────────── */
.search_vjcyyi {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ui_leg0hk {
  display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 0;
}
.ui_tc9jp0 img {
  width: 80px; height: 80px; border-radius: 18px;
  object-fit: cover; flex-shrink: 0;
}
.ui_wf6dmx { flex: 1; min-width: 0; }
.ui_mqa81j {
  font-size: 18px; font-weight: 700; color: var(--text);
  text-decoration: none; display: block; margin-bottom: 4px;
}
.ui_mqa81j:hover { color: var(--green); }
.ui_2v03wg {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 12px; color: #888; margin-bottom: 8px;
}
.ui_w3j0oa {
  padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 700; color: #fff;
}
.ui_rif86g     { background: var(--green); }
.ui_s6ajn8 { background: #6c47ff; }
.ui_7g0iu4 {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  font-size: 13px; color: #555; margin-bottom: 14px;
}
.ui_ktgiwv {
  display: flex; align-items: center; gap: 4px;
  font-weight: 700; font-size: 14px;
}
.download_st3usj {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 10px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity .13s;
}
.download_st3usj:hover { opacity: .88; }
.ui_7ril79 {
  flex-shrink: 0; width: 200px;
}
.ui_7ril79 img {
  width: 100%; border-radius: 10px;
  object-fit: cover; display: block;
}
@media (max-width: 640px) {
  .search_vjcyyi { flex-direction: column; }
  .ui_7ril79 { width: 100%; }
}

/* ── Подразделы модов ────────────────────────────────────────────────────── */
.ui_mr41li { margin: 16px 0; }
.ui_2k9uwu {
  font-size: 13px; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 10px;
}
.ui_tovx2b { display: flex; flex-wrap: wrap; gap: 8px; }
.card_51vi8n {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  background: #f3f4f6; border: 1.5px solid var(--line);
  text-decoration: none; font-size: 13px; color: #444;
  transition: all .12s;
}
.card_51vi8n:hover {
  background: #f0fdfb; border-color: var(--green); color: var(--green);
}
.ui_qktu14 {
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 1px 7px; border-radius: 10px;
}

/* Download page h2 */
.download_brh311 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin: 0 0 4px;
}
.mod-subcat-active {
  background: #f0fdfb !important;
  border-color: var(--green) !important;
  color: var(--green) !important;
}
.mod-subcat-active .ui_hz9dw2 { color: var(--green); }

/* ── Рейтинг на странице загрузки ───────────────────────────────────────── */
.download_c3e0wj {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; margin: 10px 0 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.download_at2j44 {
  display: flex; gap: 12px; justify-content: center;
}
.download_r37e0c {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; width: 150px; padding: 11px 0;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  cursor: pointer; background: var(--green); color: #fff;
  transition: all .15s; user-select: none; border: none;
}
.download_r37e0c.download_a3emxu {
  background: var(--bg); color: var(--text);
  border: 1.5px solid var(--line);
}
.download_r37e0c.active { opacity: .75; }
.download_r37e0c.rated  { pointer-events: none; opacity: .65; }
.download_fgb42c {
  display: flex; gap: 0; justify-content: center;
}
.download_rdgzdv {
  width: 162px; text-align: center;
  font-size: 13px; color: #888;
}

/* ── Свежие комментарии на download-page ────────────────────────────────── */
.comment_97rk4j {
  margin-top: 24px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.comment_97rk4j .ui_x1j8uu {
  padding: 14px 18px 0; margin-bottom: 0 !important;
}
.card_xvzvra {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  transition: background .1s;
}
.card_xvzvra:last-child { border-bottom: none; }
.card_xvzvra:hover { background: #f9fafb; }
.comment_agcx2g { flex-shrink: 0; }
.comment_agcx2g img { width: 40px; height: 40px; border-radius: 50%; }
.comment_ftxsq0 { flex: 1; min-width: 0; }
.comment_ytn0gt {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 10px; margin-bottom: 5px;
}
.comment_vg3mkj { font-weight: 700; font-size: 13px; color: var(--text); }
.comment_s7yy44   { font-size: 11px; color: #aaa; }
.comment_jr5aje   {
  font-size: 13px; color: #555; line-height: 1.5;
  margin-bottom: 7px; word-break: break-word;
}
.rc-app-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--green); text-decoration: none;
  font-weight: 600; background: #f0fdfb; padding: 3px 10px;
  border-radius: 20px; border: 1px solid #bbf7ee;
}
.rc-app-link:hover { background: #dcfcf7; }
.rc-app-link svg { flex-shrink: 0; }

/* ── Голосование за файл на download-page ────────────────────────────────── */
.ui_c3qllg {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 16px; border-radius: 5px; cursor: pointer;
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--green); color: var(--green);
  background: #fff; transition: all .12s;
}
.ui_c3qllg:hover { background: var(--green); color: #fff; }
.ui_c3qllg.active { background: var(--green); color: #fff; }
.ui_bvrlwb { border-color: #e53935; color: #e53935; }
.ui_bvrlwb:hover { background: #e53935; color: #fff; }
.ui_bvrlwb.active { background: #e53935; color: #fff; border-color: #e53935; }
.ui_c3qllg:disabled { pointer-events: none; }
.ui_ec9m9w {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 4px; font-size: 11px; font-weight: 700;
  background: rgba(0,0,0,.18); color: #fff;
  opacity: 1;
}
/* Активное состояние — тёмный счётчик на цветной кнопке */
.ui_c3qllg.active .ui_ec9m9w { background: rgba(0,0,0,.22); color: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ZIP Кэш ─────────────────────────────────────────────────────────────── */
.ui_tgozzw { margin-top: 8px; margin-bottom: 8px; }
:root { --orange: #f97316; }

/* ── Инструкция по установке кэша ───────────────────────────────────────── */
.apk_x84b9f {
  margin-bottom: 12px;
  background: #f0fdfb;
  border: 1px solid #bbf7ee;
  border-radius: 10px;
  overflow: hidden;
}
.apk_010oum {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--green); color: #fff;
  font-size: 13px; font-weight: 700;
}
.apk_010oum svg { flex-shrink: 0; stroke: #fff; }
.apk_spgepv {
  padding: 12px 16px 12px 34px;
  font-size: 13px; color: #444;
  line-height: 1.7;
}
.apk_spgepv li { margin-bottom: 4px; }
.apk_spgepv code {
  font-family: monospace; font-size: 12px;
  background: #dcfcf7; padding: 1px 5px;
  border-radius: 4px; color: #16655c;
}
.apk_3ery6r { color: var(--green); font-weight: 700; }

/* cache block на download-page */
.download_o0dyqa { margin-top:16px; padding-top:14px; border-top:1px solid var(--line); }
.download_o0dyqa .ui_i42bdf { margin-bottom: 10px; }
