/* =====================================================
   APKLAND — публичная тема сайта
   Светлый дизайн, 3-колоночный адаптивный макет.
     1. Токены (:root), базовые стили
     2. Шапка (.ui_22wyin) и навигация (.nav_jv3tcx)
     3. Каркас (.ui_5tl4mg), сайдбары, мобильный drawer
     4. Карточки каталога (.card_3i3l8x / .card)
     5. Страница приложения (.ui_crjpvo / .ui_8i3xqo / .ui_69b9nq)
     6. Комментарии, скачивание, пагинация
     7. Футер (.ui_kk6ryc)
     8. Адаптив (@media)
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --grad-1: #9f65dc;
  --grad-2: #5f1596;
  --green:  #8228c9;
  --green2: #5f1596;
  --green-light: #9f65dc;
  --ink:    #1f1724;
  --bg:     #f6f4f8;
  --white:  #ffffff;
  --text:   #302637;
  --muted:  #74857a;
  --line:   #e4dfe9;
  --soft:   #f3eef8;
  --orange: #ff9c20;
  --shadow: 0 14px 38px rgba(25,80,45,.08);
  --font: ;
  --max: 1320px;
}

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

/* ШАПКА — .ui_22wyin / .ui_tga0o5 */
.ui_22wyin {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 200;
}
.ui_tga0o5 {
  min-height: 84px;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 20px; padding: 14px 0;
  box-sizing: border-box; width: 100%;
}

/* Логотип */
.ui_c6ltph { display: flex; align-items: center; gap: 12px; color: var(--ink); flex-shrink: 0; }
.ui_nyncyk {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--green-light), var(--green2));
  box-shadow: 0 9px 22px rgba(40,201,104,.25);
  display: flex; align-items: center; justify-content: center;
}
.ui_nyncyk svg { width: 27px; height: 27px; fill: #fff; }
.ui_5tpkw0 { display: flex; flex-direction: column; line-height: 1.15; }
.ui_5tpkw0 b { font-size: 18px; font-weight: 900; letter-spacing: .4px; text-transform: uppercase; }
.ui_5tpkw0 i { font-style: normal; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Поиск */
.search {
  margin-left: auto; flex: 1 1 340px; max-width: 460px;
  height: 46px; border: 1px solid var(--line);
  border-radius: 24px; position: relative;
  background: #f8f7fa; display: flex;
}
.search form { margin: 0; padding: 0; flex: 1; display: flex; }
.search input {
  min-width: 0; flex: 1; height: 44px; margin: 1px 0 1px 20px;
  background: none; border: none; outline: none;
  color: var(--text); font-size: 14px; font-family: var(--font);
}
.search input::placeholder { color: var(--muted); }
@media (max-width: 640px) {
  .search input { font-size: 16px; }
  #searchSuggestions {
    position: fixed !important;
    top: 58px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 0 16px 16px !important;
    max-height: 70vh !important;
  }}
.search button {
  width: 54px; flex-shrink: 0; border: none; background: var(--green);
  border-radius: 0 24px 24px 0;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.search button:hover { background: var(--green2); }
.search button svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 2.2; }

/* Иконки-действия справа в шапке */
.ui_cdbnb4 { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ui_8ecrm7 {
  width: 42px; height: 42px; border: none; background: transparent;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--green2); cursor: pointer; transition: background .12s;
}
.ui_8ecrm7:hover { background: var(--soft); }
.ui_8ecrm7 svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Подсказки поиска */
#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: #faf9fc;
}
.sugg-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; cursor: pointer;
  border-bottom: 1px solid #f1eef4; transition: background .1s;
  text-decoration: none;
}
.sugg-item:last-of-type { border-bottom: none; }
.sugg-item:hover { background: #f8f5f9; }
.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: #1f1724; 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: #faf9fc;
  text-decoration: none; transition: background .1s;
}
.sugg-all:hover { background: #f7f0fa; }
.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: 12px;
  text-decoration: none; transition: opacity .15s;
}
.sugg-empty-btn:hover { opacity: .88; }

/* MAIN LAYOUT — 3-column grid (как в верстке) */
.ui_3h9gnj { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.ui_8ca2el {
  max-width: var(--max); margin: 30px auto 50px;
  padding: 0 20px;
}
.ui_5tl4mg {
  display: grid;
  grid-template-columns: 250px minmax(0,1fr) 280px;
  gap: 32px;
  align-items: start;
  padding: 26px 0 54px;
}
.side { min-width: 0; }
.ui_kkspk6 {
  display: flex; align-items: center; gap: 9px;
  font-size: 18px; font-weight: 800; color: #1f1724;
  margin: 0 0 12px;
}
.ui_kkspk6 svg { width: 21px; height: 21px; fill: var(--green); flex: 0 0 auto; }
.ui_78p5ph { font-size: 15px; justify-content: space-between; }
.ui_40xxgr { font-size: 12px; font-weight: 700; color: var(--green2); text-decoration: none; }
.ui_40xxgr:hover { text-decoration: underline; }
.ui_ng1yvv { list-style: none; margin: 0 0 4px; padding: 0; }
.ui_ng1yvv li { border-bottom: 1px dashed var(--line); }
.ui_ng1yvv a {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 2px; font-weight: 700; font-size: 14px;
  color: var(--text); transition: all .12s;
}
.ui_ng1yvv a:before { content: ""; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex: 0 0 auto; }
.ui_ng1yvv a:hover { color: var(--green2); padding-left: 4px; }
.ui_j2apq8 { margin-top: 28px; }
.ui_f13awo { display: grid; gap: 11px; }
.ui_jzxvmy { display: grid; grid-template-columns: 46px 1fr; gap: 10px; align-items: center; color: var(--text); }
.ui_mjvkwj img { width: 46px; height: 46px; border-radius: 11px; object-fit: cover; display: block; }
.ui_9j9yil { min-width: 0; }
.ui_jzxvmy b { display: block; font-size: 13px; font-weight: 700; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui_jzxvmy span { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui_jzxvmy:hover b { color: var(--green2); }
.ui_jexf0z { min-width: 0; }

/* SEO-INTRO / SECTION HEAD / CARDS — главная и листинги (как в верстке) */
.ui_87bh01 {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 26px 28px; margin-bottom: 26px; box-shadow: var(--shadow);
}
.ui_87bh01 h1 { font-size: 28px; line-height: 1.2; margin: 0 0 12px; letter-spacing: -.5px; color: var(--ink); }
.ui_87bh01 p { color: var(--muted); margin: 8px 0; font-size: 14px; line-height: 1.6; }

.ui_ijbdha {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: 0 0 15px;
}
.ui_ijbdha h2 { font-size: 22px; margin: 0; color: var(--ink); }
.ui_ijbdha .ui_ui8p4j { font-size: 13px; font-weight: 800; color: var(--green2); white-space: nowrap; }
.ui_ijbdha .ui_ui8p4j:hover { text-decoration: underline; }

.card_3i3l8x { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-bottom: 30px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 14px; display: grid; grid-template-columns: 82px 1fr; gap: 14px;
  cursor: pointer; transition: all .2s; min-width: 0; color: var(--text);
}
.card:hover { transform: translateY(-3px); border-color: #cfbde4; box-shadow: var(--shadow); }
.ui_4wx8m7 {
  width: 82px; height: 82px; border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--soft); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.ui_4wx8m7 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card h3 { font-size: 16px; line-height: 1.25; margin: 2px 0 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--ink); }
.card p { font-size: 13px; color: var(--muted); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.card_26sl3w { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 8px; font-size: 12px; color: #87958c; }
.card_0i75kf { display: flex; align-items: center; gap: 2px; }
.card_0i75kf svg { width: 12px; height: 12px; fill: #f2ad23; }
@media (max-width: 640px) {
  .card_3i3l8x { grid-template-columns: 1fr; }
  .card { grid-template-columns: 72px 1fr; }
  .ui_4wx8m7 { width: 72px; height: 72px; border-radius: 15px; }}

@media (min-width: 1101px) { .ui_yq2ou8, .ui_jylre5 { display: none !important; } }

.ui_yq2ou8 {
  display: none; position: fixed; top: 0; left: -320px; width: 300px; max-width: 86vw;
  height: 100vh; background: #fff; z-index: 400; padding: 24px 20px;
  overflow-y: auto; transition: left .25s ease; box-shadow: var(--shadow);
}
.ui_yq2ou8.open { display: block; left: 0; }
.ui_jylre5 {
  display: none; position: fixed; inset: 0; background: rgba(15,30,20,.45); z-index: 390;
}
.ui_jylre5.open { display: block; }
.ui_ljoiav {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border: none; border-radius: 50%; background: var(--soft); color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.ui_9ul2vf .ui_j2apq8:first-child { margin-top: 0; }
.ui_9ul2vf > .side-group { margin-bottom: 28px; }
.ui_cbb0mh {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; width: 178px; height: 46px;
  background: linear-gradient(90deg, #8228c9, #9f65dc);
  border-radius: 16px; color: #fff;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: opacity .14s;
  letter-spacing: .03em; flex-shrink: 0;
  text-decoration: none;
}
.ui_cbb0mh:hover { opacity: .88; color: #fff; }
.ttslider-item {
  flex-shrink: 0; scroll-snap-align: start;
  border-radius: 16px; 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; /* не давать браузеру сжимать шире чем нужно */
}

/* Фото лайтбокс оверлей */
.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_a45ol1 {
  font-size: 14px; color: #5d5265; line-height: 1.8;
  margin-bottom: 0;
}
.ui_a45ol1 p { margin-bottom: 10px; }
.ui_a45ol1 b { color: #302637; }
.ui_a45ol1 ul, .ui_a45ol1 ol { padding-left: 22px; margin-bottom: 10px; }
.ui_a45ol1 li { margin-bottom: 4px; }

/* MOD: что есть в моде */
.ui_etztzw {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  margin: 16px 0; overflow: hidden;
}
.ui_509l1g {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: #231c2b;
  padding: 13px 18px; border-bottom: 2px solid var(--green);
}
.ui_z34duf {
  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_9jaf4u {
  list-style: none; padding: 10px 18px 14px; margin: 0;
}
.ui_9jaf4u li {
  position: relative; padding: 6px 0 6px 24px;
  font-size: 13.5px; color: #423a4a; line-height: 1.5;
  border-bottom: 1px solid #f3eef8;
}
.ui_9jaf4u li:last-child { border-bottom: none; }
.ui_9jaf4u 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;
}

/* FAQ */
.ui_cglo5o {
  background: #fff; border-radius: 10px;
  margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ui_zsxr0t {
  font-size: 15px; font-weight: 700; padding: 16px 20px 14px;
  color: #1f1724;
}
.faq-item { border-top: 1px solid #f1eef4; }
.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: #302637; 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: #cac3d2; 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: #645b6d; 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_jerlqx {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0;
}
.ui_5pms54 {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 11px;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--text);
  text-decoration: none; transition: all .14s;
  background: #faf9fc;
}
.ui_5pms54:before { content: "#"; color: var(--green2); font-weight: 800; }
.ui_5pms54:hover {
  border-color: #cfbde4; color: var(--green2);
  background: var(--soft); transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Похожие приложения */
.ui_c70mcp {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  margin-bottom: 16px; padding: 20px 20px 22px;
  box-shadow: var(--shadow);
}
.ui_p135b2 {
  display: flex; align-items: center;
  padding: 0 0 4px;
}
.ui_o3u129 { font-size: 21px; font-weight: 800; color: #1f1724; margin: 0; }
.series_zaasx2 {
  display: flex; align-items: center; gap: 20px;
  background: var(--soft); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px 26px; margin-bottom: 16px;
}
.series_u88eet {
  width: 84px; height: 84px; border-radius: 20px;
  object-fit: cover; flex-shrink: 0;
}
.series_n8i0qn {
  font-size: 24px; font-weight: 800; color: #1f1724;
  margin: 0; line-height: 1.25; letter-spacing: -.3px;
}
@media (max-width: 640px) {
  .series_zaasx2 { padding: 16px 18px; gap: 14px; }
  .series_u88eet { width: 64px; height: 64px; border-radius: 16px; }
  .series_n8i0qn { font-size: 16px; }}
.ui_on3c1d {
  font-size: 16px; font-weight: 700; color: #1f1724;
  margin: 22px 0 12px;
}
.ui_p135b2 { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.series_8dmc1q {
  font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none;
  white-space: nowrap;
}
.series_8dmc1q:hover { text-decoration: underline; }
.series_aer6lw { font-size: 13px; color: var(--muted); margin: 6px 0 14px; line-height: 1.5; }
.series_5sffcw {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
  padding: 12px 16px 16px;
}
@media (max-width: 640px) { .series_5sffcw { grid-template-columns: minmax(0, 1fr); }}
.card_qntd0b {
  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_qntd0b:hover { border-color: #cfbde4; background: var(--soft); transform: translateY(-1px); box-shadow: var(--shadow); }
.series_5vzqut { border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.series_g7k9kz { width: 52px; height: 52px; background: var(--bg); }
.series_jom5e8 { min-width: 0; }
.series_aoejg1 {
  font-size: 14px; font-weight: 600; color: #1f1724;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.series_cyfqkj { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Страница /series/ — превью всех коллекций */
.series_v719ey {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
  margin-top: 16px;
}
@media (max-width: 640px) { .series_v719ey { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .series_v719ey { grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media (max-width: 560px) { .series_v719ey { grid-template-columns: minmax(0, 1fr); }}
.card_8sr7jw {
  display: grid; grid-template-columns: 82px 1fr; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px;
  text-decoration: none; transition: all .2s; color: var(--text);
  width: 100%; box-sizing: border-box; min-width: 0;
}
.card_8sr7jw:hover {
  border-color: #cfbde4; transform: translateY(-3px); box-shadow: var(--shadow);
}
.series_z7vr4m {
  width: 82px; height: 82px; border-radius: 18px; object-fit: cover;
  flex-shrink: 0; background: var(--soft);
}
.series_n7l5xv { min-width: 0; flex: 1 1 auto; }
.series_qwojw5 {
  font-size: 16px; font-weight: 800; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 2px;
}
.series_ghfjb2 {
  font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.series_vm8krf {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--green2); font-weight: 800;
  background: var(--soft); border-radius: 8px;
  padding: 4px 9px; margin-top: 8px;
}

/* SEO-ТЕКСТ */
.stext {
  font-size: 13px; color: #645b6d; 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: #1f1724; font-weight: 700; margin-bottom: 10px; }
.stext h2 { font-size: 15px; color: #1f1724; font-weight: 600; margin-bottom: 10px; }
.stext h3 { font-size: 14px; color: #1f1724; font-weight: 600; margin-bottom: 8px; }
.stext p { margin-bottom: 8px; color: #645b6d; }
.stext ul, .stext ol { padding-left: 18px; margin-bottom: 8px; }
.stext li { margin-bottom: 3px; color: #645b6d; }
.stext a { color: var(--green); }

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

/* СТРАНИЦА СКАЧИВАНИЯ */
.download_p00f2v {
  background: #fff; border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 22px; margin-bottom: 14px;
}
.download_ou3ewi {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.download_1jdayh img { width: 80px; height: 80px; border-radius: 12px; border: 1px solid var(--line); }
.download_5w962w { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.download_mclekr { font-size: 12px; color: var(--muted); }
.download_cd0m85 {
  text-align: center; padding: 28px 20px;
  background: #faf9fe; border: 1px solid #ded4ed;
  border-radius: 12px; 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: #dcd7e3; border-radius: 4px; max-width: 360px; margin: 0 auto 20px; overflow: hidden; }
#dlBar { height: 100%; background: linear-gradient(90deg, #8228c9, #9f65dc); border-radius: 4px; width: 0; transition: width 1s linear; }
.download_wreks0 {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; background: linear-gradient(90deg, #8228c9, #9f65dc);
  color: #fff; border: none; border-radius: 16px;
  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_wreks0.ready { opacity: 1; pointer-events: auto; }
.download_wreks0.ready:hover { opacity: .88; }
.download_s2d2l7 { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-bottom: 14px; }
.download_vws68t { background: #faf9fc; padding: 10px 16px; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--line); }
.download_f9r09e { width: 100%; border-collapse: collapse; font-size: 13px; }
.download_f9r09e td { padding: 7px 16px; border-bottom: 1px solid var(--line); }
.download_f9r09e tr:last-child td { border-bottom: none; }
.download_f9r09e tr:nth-child(odd) td { background: #faf9fc; }
.download_f9r09e td:first-child { color: var(--muted); font-weight: 600; width: 35%; }
.download_zs4w9w { margin-top: 13px; text-align: center; font-size: 12px; color: var(--muted); }
.download_zs4w9w a { color: var(--muted); }
.download_zs4w9w a:hover { color: var(--green); }

/* ПОИСК */
.ui_qwpt3v { text-align: center; color: var(--muted); padding: 40px; font-size: 14px; }
.ui_szydbi { display:flex; justify-content:center; gap:10px; margin-bottom:16px; }
.ui_8i46jh {
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border:none;
  border-radius:50%; background:var(--soft); color:var(--green2); transition:all .14s;
}
.ui_8i46jh:hover { background:var(--green); color:#fff; }
.ui_8i46jh svg { display:block; }

/* FOOTER — .ui_72vbjp / .ui_m9hhjt (как в верстке) */
.ui_kk6ryc { background: #fff; border-top: 1px solid var(--line); padding: 40px 0 26px; margin-top: 40px; }
.ui_ktth9d { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }
.ui_m1pzbz .ui_c6ltph { margin-bottom: 12px; }
.ui_kk6ryc h3, .ui_kk6ryc h4 { margin: 0 0 14px; font-size: 15px; color: var(--ink); }
.ui_kk6ryc p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0 0 14px; }
.ui_1255it { display: grid; gap: 9px; }
.ui_1255it a { font-size: 13px; color: var(--muted); font-weight: 600; }
.ui_1255it a:hover { color: var(--green2); }
.ui_i40i6s {
  margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line);
  text-align: center; font-size: 12px; color: var(--muted);
}
@media (max-width: 780px) {
  .ui_ktth9d { grid-template-columns: 1fr; gap: 26px; text-align: left; }}

/* RESPONSIVE */
@media (max-width: 1240px) {
  .ui_8ca2el { padding: 0 16px; }
}
@media (max-width: 1100px) {
  .ui_5tl4mg { grid-template-columns: 200px minmax(0,1fr); gap: 20px; }
  .right-side { display: none; }}
@media (max-width: 860px) {
  .ui_5tl4mg { grid-template-columns: minmax(0,1fr); padding-top: 18px; }
  .left-side { display: none; }
  .download_pxx07i .ui_cbb0mh { width: 100%; text-align: center; justify-content: center; }
  .card_3i3l8x { grid-template-columns: 1fr !important; }}
@media (max-width: 640px) {
  /* Header */
  .ui_tga0o5 { min-height: auto; padding: 12px 0; gap: 10px; }
  .ui_nyncyk { width: 40px; height: 40px; border-radius: 12px; }
  .ui_nyncyk svg { width: 22px; height: 22px; }
  .ui_5tpkw0 b { font-size: 14px; }
  .ui_5tpkw0 i { display: none; }
  .search { order: 3; flex-basis: 100%; max-width: none; height: 44px; }
  .search input { height: 42px; }
  .search button { width: 46px; }
  .ui_cdbnb4 { order: 2; margin-left: auto; }
  /* Top nav */
  .nav_wuv0fz { padding: 4px 0; overflow-x: auto; }
  .nav_sjgeiy { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .nav_xr7mon { padding: 8px 12px; font-size: 13px; white-space: nowrap; }
  .nav_xr7mon svg { width: 15px; height: 15px; }
  /* Layout — prevent overflow */
  .ui_8ca2el { margin-top: 10px; padding: 0 10px; overflow-x: hidden; box-sizing: border-box; }
  .ui_5tl4mg { padding-top: 12px; }
  .ui_cbb0mh { width: 100%; justify-content: center; box-sizing: border-box; }
  .ttslider-item img { height: 180px; width: auto; }
  /* DL page */
  #dlStep1 { padding: 16px 0 8px; }
  .card { grid-template-columns: 72px 1fr; }
  .ui_4wx8m7 { width: 72px; height: 72px; }}
@media (max-width: 420px) {
  .ttslider-item img { height: 120px; width: auto; }
  .ui_8ca2el { padding: 0 8px; margin-top: 10px; }
  .nav_xr7mon { padding: 4px 8px; font-size: 11px; }
}

/* DLINK — блок скачивания файла */

/* STAR RATING */
.star-rating-wrap { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-top: 4px; }
.star-info { display: flex; flex-direction: column; align-items: center; gap: 1px; font-size: 12px; color: var(--muted); }
.star-info b { font-size: 14px; font-weight: 800; color: var(--ink); }
.star-info i { font-style: normal; font-size: 12px; color: var(--muted); }
.star-input { display: flex; gap: 4px; margin-bottom: 10px; }
.star-btn { font-size: 28px; color: #dcd7e3; cursor: pointer; transition: color .1s; line-height: 1; }
.star-btn.star-hover { color: #ffd200; }

/* COMMENTS */
.comment_96wzec { background: #fff; border-radius: 16px; padding: 20px; margin-bottom: 14px; }
.comment_oeqmjy { font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.comment_ivqwhm { display: grid; gap: 14px; margin-bottom: 20px; }
.comment-item {
  display: grid; grid-template-columns: 48px 1fr auto; align-items: start; gap: 13px;
  border: 1px solid var(--line); border-radius: 15px;
  padding: 17px; background: #fff;
}
.comment-avatar {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--green-light), var(--green2));
  box-shadow: 0 6px 16px rgba(40,201,104,.22);
}
.comment-avatar svg { width: 24px; height: 24px; }
.comment-avatar img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.comment-body { flex: 1; min-width: 0; }
.comment-item-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.comment-author { font-size: 15px; font-weight: 800; color: var(--ink); }
.comment-date { font-size: 12px; color: var(--muted); white-space: nowrap; }
.comment-text { font-size: 14px; color: #5d5265; line-height: 1.7; }
.comment-votes { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.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: #f3e8f8; 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: #87958c; }
.cvote-score.pos { color: var(--green); }
.cvote-score.neg { color: #e53935; }
@media (max-width: 640px) {
  input[type="text"], input[type="search"], input[type="email"], input[type="tel"], textarea, select {
    font-size: 16px !important;
  }}

/* MODAL */
.modal_gtl9qu {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
}
.modal_gtl9qu[hidden] { display: none; }
.modal_u0eyie {
  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_8bro20 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.modal_k73w39 { font-size: 13px; color: #5d5265; margin-bottom: 18px; line-height: 1.6; }
.modal_ee4t3a {
  background: var(--green); color: #fff; border: none;
  border-radius: 16px; padding: 9px 28px; font-size: 13px;
  font-weight: 700; cursor: pointer; font-family: var(--font);
}
.modal_ee4t3a:hover { opacity: .88; }

/* Responsive fnh */
@media (max-width: 900px) {
  .ui_c9pd7p { grid-template-columns: 110px 1fr; }
  .ui_v9at1q { grid-column: 1 / -1; grid-row: 2; padding-top: 12px; border-top: 1px solid var(--line); margin-top: 12px; }
  }
@media (max-width: 560px) {
  .ui_cbb0mh { width: 100%; justify-content: center; }}
.ui_54qilf { font-size:13px; color:#5d5265; margin-bottom:10px; }
.ui_54qilf a { color:var(--green); text-decoration:underline; font-weight:400; }
.download_pxx07i .ui_cbb0mh { width:100%; }

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

.ui_yvkphf:hover

/* RESPONSIVE FNH */
@media (max-width:900px) {
  .ui_c9pd7p { grid-template-columns:110px 1fr; }
  .download_pxx07i { grid-column:1/-1; grid-row:2; flex-direction:row; align-items:center; gap:14px; margin-top:14px; }
  .download_pxx07i .ui_cbb0mh { width:auto; }
  .download_e7yffw { flex-direction:row; flex-wrap:wrap; gap:6px; }
}
@media (max-width:560px) {
  .download_pxx07i .ui_cbb0mh { width:100%; }}

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

/* Сортировка */
.ui_64h2s0 {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 18px; margin-top: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  font-size: 13px;
}
.ui_jrrma1 { color: #87958c; white-space: nowrap; font-size: 13px; }
.ui_cnly55 {
  appearance: none; -webkit-appearance: none;
  background: #f6f4f8 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: #423a4a; font-family: inherit;
  cursor: pointer; outline: none; transition: background .12s;
}
.ui_cnly55:hover { background-color: #e8eaeb; }
.ui_ayrm46 {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  color: var(--text); border-radius: 11px;
  padding: 9px 16px; font-size: 13px;
  font-weight: 700; transition: all .14s;
  background: #fff;
}
.ui_ayrm46:hover {
  background: var(--soft); color: var(--green2);
  border-color: #cfbde4; transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.ui_ayrm46.active {
  background: linear-gradient(135deg, var(--green2), var(--green));
  border-color: transparent; color: #fff;
  box-shadow: 0 8px 18px rgba(40,201,104,.24);
}

.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_cy92aj { margin: 20px 0 6px; }
.ui_dbin5l { font-size: 23px; font-weight: 800; color: var(--ink); margin: 26px 0 14px; line-height: 1.25; }

.ui_yvkphf {
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; flex-wrap: nowrap;
  background: linear-gradient(140deg, #fff, #f5f1fa);
  border: 1px solid #dacce9; border-radius: 16px;
  padding: 15px 18px; margin-bottom: 10px;
  text-decoration: none; color: var(--text); gap: 14px; cursor: pointer;
  transition: border-color .14s, box-shadow .14s, transform .14s;
}
.ui_yvkphf:hover {
  color: var(--text); border-color: var(--green);
  box-shadow: var(--shadow); transform: translateY(-2px);
}

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

.ui_xmvdc7 {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(145deg, var(--green-light), var(--green2));
  box-shadow: 0 7px 18px rgba(40,201,104,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ui_nuai8p {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ui_o86umo {
  font-size: 15px; font-weight: 800; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}
.ui_g9lvv6 {
  font-size: 12.5px; color: var(--muted);
  white-space: nowrap;
}

/* Правая часть: кнопка — ВСЕГДА СПРАВА */
.ui_1dz2ya {
  display: inline-flex; flex-direction: row; align-items: center; gap: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green2), var(--green));
  border-radius: 11px; padding: 11px 20px;
  font-size: 14px; font-weight: 800;
  color: #fff; white-space: nowrap;
  box-shadow: 0 8px 18px rgba(40,201,104,.24);
  transition: filter .13s;
}
.ui_yvkphf:hover .ui_1dz2ya { filter: brightness(1.06); box-shadow: 0 10px 22px rgba(40,201,104,.32); }

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

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

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

/* ── Contact form ── */
.ui_xco5jw {
  font-size: 14px; color: #5d5265; margin-bottom: 20px; line-height: 1.7;
}
.ui_ehkhu9 {
  background: #ebe8f5; border: 1px solid #afa5d6;
  border-radius: 12px; padding: 14px 18px;
  font-size: 14px; color: #3f2e7d; margin-bottom: 16px;
}
.ui_8z459h { max-width: 560px; }
.ui_nhx629 { margin-bottom: 16px; }
.ui_p02iyj {
  display: block; font-size: 13px; font-weight: 700;
  color: #423a4a; margin-bottom: 6px;
}
.ui_ynatc4 {
  width: 100%; border: 1px solid #dcd7e3; border-radius: 12px;
  padding: 10px 14px; font-size: 14px; font-family: var(--font);
  outline: none; transition: border-color .12s;
  box-sizing: border-box;
}
.ui_ynatc4:focus { border-color: var(--green); }
.ui_unlf0k { resize: vertical; min-height: 130px; }
.ui_6o7utc {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, #8228c9, #9f65dc);
  color: #fff; border: none; border-radius: 12px;
  padding: 11px 28px; font-size: 14px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  transition: opacity .13s;
}
.ui_6o7utc:hover { opacity: .88; }
.comment_qaar08.ui_23pjqu { background: #f3e8f8; border-color: var(--green); color: var(--green); font-weight:700; }

/* TG promo block */
.ui_xaokvj {
  display: flex; gap: 12px; margin: 20px 0 6px;
  flex-wrap: wrap;
}
.ui_gn8s5i {
  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_gn8s5i:hover { opacity: .9; color: #fff; }
.ui_gn8s5i svg { flex-shrink: 0; }

.gplay-row {
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between; flex-wrap: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 15px 18px; margin-bottom: 10px;
  text-decoration: none; color: var(--text); gap: 14px; cursor: pointer;
  transition: border-color .14s, box-shadow .14s, transform .14s;
}
.gplay-row:hover {
  color: var(--text); border-color: #cfbde4;
  box-shadow: var(--shadow); transform: translateY(-2px);
}
.gplay-row .ui_xmvdc7 { background: #f2f1f4; box-shadow: none; }
.gplay-row .ui_1dz2ya { background: #fff; color: var(--text); border: 1px solid var(--line); box-shadow: none; }
.gplay-row:hover .ui_1dz2ya { border-color: var(--green); color: var(--green2); }

.download_kgpp37 {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: #f8f7f9;
  border-radius: 12px;
  font-size: 13px; line-height: 1.65; color: #645b6d;
}
.download_kzv2br.ready { opacity: 1; pointer-events: auto; }

/* Download page — center button */
#dlStep1 { text-align: center; padding: 24px 0 8px; }
#dlStep1 .ui_cbb0mh {
  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_cbb0mh svg { display:inline-block !important; flex-shrink:0 !important; }
#dlStep2 { text-align: center; }

/* ── Top 100 page ── */
.ui_yvc1iv { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.card_12xrra {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 14px; text-decoration: none; color: var(--text);
  transition: all .15s;
}
.card_12xrra:hover { background: var(--soft); border-color:#cfbde4; transform: translateY(-1px); box-shadow: var(--shadow); }
.ui_k6yqb7 {
  font-size: 15px; font-weight: 700; color: #aea7b5;
  min-width: 28px; text-align: right; flex-shrink: 0;
}
.card_12xrra:nth-child(1) .ui_k6yqb7 { color: #f5b700; font-size: 18px; }
.card_12xrra:nth-child(2) .ui_k6yqb7 { color: #9e9e9e; font-size: 17px; }
.card_12xrra:nth-child(3) .ui_k6yqb7 { color: #c07848; font-size: 16px; }
.ui_50p002 { flex-shrink: 0; }
.ui_50p002 img { border-radius: 10px; display: block; }
.ui_enonpv { flex: 1; min-width: 0; }
.ui_sh9hj2 { display: block; font-size: 14px; font-weight: 600; color: #231c2b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui_30lm5b { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.ui_30lm5b span { font-size: 12px; color: var(--muted); }
.ui_30lm5b span + span::before { content: "·"; margin-right: 8px; color: #dcd7e3; }
.download_3spjg0 { flex-shrink: 0; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }

/* ── Пагинация ── */
.ui_d3dccb {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin: 20px 0 10px; flex-wrap: wrap;
}
.ui_cy4an9 {
  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: #5d5265; background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  text-decoration: none; transition: all .13s;
  border: 1px solid #e4dfe9;
}
.ui_cy4an9: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_143vi7, .ui_o2ezuo {
  padding: 0 14px; color: var(--green);
  font-weight: 600;
}
.ui_143vi7:hover, .ui_o2ezuo:hover {
  background: var(--green); color: #fff;
}

/* ── Навигация под шапкой — .nav_jv3tcx ── */
.nav_jv3tcx {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 90;
}
.nav_wuv0fz {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 6px 0; min-height: 58px;
}
.nav_sjgeiy { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav_xr7mon {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 800; color: var(--text);
  padding: 10px 15px; border-radius: 11px;
  text-decoration: none; transition: all .13s;
  white-space: nowrap;
}
.nav_xr7mon svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.nav_xr7mon:hover { background: var(--soft); color: var(--green2); }
.nav_xr7mon.active { background: var(--soft); color: var(--green2); }
.ui_b835ko { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.ui_b835ko .ui_4kwce3 {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--soft); color: var(--green2);
  transition: all .13s;
}
.ui_b835ko .ui_4kwce3:hover { background: var(--green); color: #fff; }
.ui_b835ko .ui_4kwce3 svg { width: 16px; height: 16px; }
@media (max-width: 780px) {
  .ui_b835ko { display: none; }}

/* ── 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_cbb0mh, .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_it8thh {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px; border-radius: 14px; overflow: hidden;
  margin-bottom: 20px;
}
.ui_it8thh:has(.card_ahnt2l:nth-child(1):last-child) {
  grid-template-columns: 1fr;
}
.ui_it8thh:has(.card_ahnt2l:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
.ui_it8thh:has(.card_ahnt2l:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
.card_ahnt2l {
  position: relative; overflow: hidden;
  padding: 16px 14px 0;
  min-height: 150px;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: filter .15s;
}
.card_ahnt2l:hover { filter: brightness(.93); }
/* Крестики-паттерн */
.card_ahnt2l::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_qaaghi {
  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_ly0z5p {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 5px; position: relative; z-index: 2;
}
.card_ly0z5p span {
  font-size: 11px; color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.15); border-radius: 4px;
  padding: 2px 7px;
}
/* Картинка — занимает весь низ ячейки, выходит за края */
.card_m7rczn {
  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_it8thh { grid-template-columns: repeat(2,1fr); }
  .card_ahnt2l { min-height: 130px; padding: 12px 10px 0; }
  .card_qaaghi { font-size: 13px; }
  .card_m7rczn { height: 78%; }}
@media (max-width: 380px) {
  .card_ahnt2l { min-height: 110px; }}

/* ── Блок поделиться ─────────────────────────────────────────────────────── */
.ui_s5nffp {
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ui_kye80h {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ui_xvl3vo {
  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_xvl3vo:hover { opacity: .85; }
.ui_j8mhyv { background: #4680C2; }
.ui_zq41ec { background: #229ED9; }
.ui_rfvxyv { background: #8225d3; }
.ui_acx0lq { background: #6b7280; color: #fff; }

/* ── Лучшее совпадение в поиске ─────────────────────────────────────────── */
.search_iv8rv3 {
  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_smqp0q {
  display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 0;
}
.ui_tu43bs img {
  width: 80px; height: 80px; border-radius: 18px;
  object-fit: cover; flex-shrink: 0;
}
.ui_dkstot { flex: 1; min-width: 0; }
.ui_ic7tps {
  font-size: 18px; font-weight: 700; color: var(--text);
  text-decoration: none; display: block; margin-bottom: 4px;
}
.ui_ic7tps:hover { color: var(--green); }
.ui_e4kpbe {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 12px; color: #87958c; margin-bottom: 8px;
}
.ui_uy7487 {
  padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 700; color: #fff;
}
.ui_sjxlnm { background: var(--green); }
.ui_vrhaa9 { background: #6c47ff; }
.ui_wb4u8q {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  font-size: 13px; color: #5d5265; margin-bottom: 14px;
}
.ui_wbvlzb {
  display: flex; align-items: center; gap: 4px;
  font-weight: 700; font-size: 14px;
}
.download_gufsla {
  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_gufsla:hover { opacity: .88; }
.ui_9fxw34 {
  flex-shrink: 0; width: 200px;
}
.ui_9fxw34 img {
  width: 100%; border-radius: 10px;
  object-fit: cover; display: block;
}
@media (max-width: 640px) {
  .search_iv8rv3 { flex-direction: column; }
  .ui_9fxw34 { width: 100%; }}

/* ── Подразделы модов ────────────────────────────────────────────────────── */
.ui_migmk1 { margin: 16px 0; }
.ui_0bib82 {
  font-size: 13px; font-weight: 700; color: #87958c;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 10px;
}
.ui_vu5tp3 { display: flex; flex-wrap: wrap; gap: 8px; }
.card_9haao9 {
  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: #423a4a;
  transition: all .12s;
}
.card_9haao9:hover {
  background: #f6f0fd; border-color: var(--green); color: var(--green);
}
.ui_9fhntk {
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 1px 7px; border-radius: 10px;
}

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

/* ── Рейтинг на странице загрузки ───────────────────────────────────────── */
.download_2hwf10 {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; margin: 10px 0 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.download_kmq04w {
  display: flex; gap: 12px; justify-content: center;
}
.download_2y3chd {
  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_2y3chd.download_6gg0vq {
  background: var(--bg); color: var(--text);
  border: 1.5px solid var(--line);
}
.download_2y3chd.active { opacity: .75; }
.download_2y3chd.rated { pointer-events: none; opacity: .65; }
.download_xbt8k1 {
  display: flex; gap: 0; justify-content: center;
}
.download_6pssc1 {
  width: 162px; text-align: center;
  font-size: 13px; color: #87958c;
}
.comment_3ld5yb .ui_p135b2 {
  padding: 14px 18px 0; margin-bottom: 0 !important;
}
.rc-app-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--green); text-decoration: none;
  font-weight: 600; background: #f6f0fd; padding: 3px 10px;
  border-radius: 20px; border: 1px solid #dabbf7;
}
.rc-app-link:hover { background: #ecdcfc; }
.rc-app-link svg { flex-shrink: 0; }

/* ── Голосование за файл на download-page ────────────────────────────────── */
.ui_0wkk08 {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 16px; border-radius: 16px; cursor: pointer;
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--green); color: var(--green);
  background: #fff; transition: all .12s;
}
.ui_0wkk08:hover { background: var(--green); color: #fff; }
.ui_0wkk08.active { background: var(--green); color: #fff; }
.ui_vrrvhj { border-color: #e53935; color: #e53935; }
.ui_vrrvhj:hover { background: #e53935; color: #fff; }
.ui_vrrvhj.active { background: #e53935; color: #fff; border-color: #e53935; }
.ui_0wkk08:disabled { pointer-events: none; }
.ui_w6ondc {
  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_0wkk08.active .ui_w6ondc { background: rgba(0,0,0,.22); color: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ZIP Кэш ─────────────────────────────────────────────────────────────── */
.ui_l0r4x6 { background: #fff; border-color: var(--line); }
.ui_l0r4x6 .ui_xmvdc7 { background: linear-gradient(145deg, #ffc46b, #ff9c20); box-shadow: 0 7px 18px rgba(255,156,32,.24); }
:root { --orange: #ff9c20; }

/* ── Инструкция по установке кэша ───────────────────────────────────────── */
.apk_tfz2rj {
  margin-bottom: 12px;
  background: #f6f0fd;
  border: 1px solid #dabbf7;
  border-radius: 10px;
  overflow: hidden;
}
.apk_lp2hxu {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--green); color: #fff;
  font-size: 13px; font-weight: 700;
}
.apk_lp2hxu svg { flex-shrink: 0; stroke: #fff; }
.apk_1fs3lb {
  padding: 12px 16px 12px 34px;
  font-size: 13px; color: #423a4a;
  line-height: 1.7;
}
.apk_1fs3lb li { margin-bottom: 4px; }
.apk_1fs3lb code {
  font-family: monospace; font-size: 12px;
  background: #ecdcfc; padding: 1px 5px;
  border-radius: 4px; color: #411665;
}
.apk_q4dwqz { color: var(--green); font-weight: 700; }

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

/* СТРАНИЦА ПРИЛОЖЕНИЯ — детальная (как в верстке) */
.ui_cdplvg { font-size: 13px; color: #819087; margin-bottom: 13px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.ui_cdplvg a { color: var(--green2); }
.ui_cdplvg a:hover { text-decoration: underline; }
.ui_cdplvg svg { width: 10px; height: 10px; color: #cac3d2; flex-shrink: 0; }
.ui_cdplvg span { color: var(--text); }

/* Обложка */
.ui_crjpvo {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, #fff, #f5f1fa);
  border: 1px solid var(--line); border-radius: 20px 20px 0 0;
  min-height: 182px; padding: 26px;
  display: grid; grid-template-columns: 145px 1fr 200px;
  gap: 20px; align-items: center;
}
.ui_crjpvo:before, .ui_crjpvo:after {
  content: ""; position: absolute; border: 1px solid #d8cfe4;
  transform: rotate(45deg); background: rgba(255,255,255,.25); pointer-events: none;
}
.ui_crjpvo:before { width: 250px; height: 250px; left: 180px; top: -128px; }
.ui_crjpvo:after { width: 180px; height: 180px; left: 400px; top: -82px; }
.ui_crjpvo > * { position: relative; z-index: 1; }
.ui_6ti7p8 { width: 145px; height: 145px; border-radius: 26px; overflow: hidden; box-shadow: 0 12px 28px rgba(25,80,45,.16); }
.ui_6ti7p8 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ui_ocykym h1 { font-size: 34px; margin: 0 0 6px; line-height: 1.1; color: var(--ink); letter-spacing: -.5px; }
.ui_ocykym p { margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.ui_ocykym .ui_54qilf { font-size: 13px; color: var(--muted); }
.ui_ocykym .ui_54qilf a { color: var(--green2); font-weight: 700; }
.ui_ocykym .ui_54qilf a:hover { text-decoration: underline; }
.ui_l3ipi9 { border-left: 1px solid var(--line); padding-left: 22px; text-align: center; }
.ui_l3ipi9 .star-input { justify-content: center; }
.ui_l3ipi9 .star-info { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.ui_l3ipi9 .ui_cbb0mh { margin-top: 12px; width: 100%; }

/* Панель характеристик */
.ui_8i3xqo {
  background: #fff; border: 1px solid var(--line); border-top: 0;
  padding: 17px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px;
}
.info {
  min-height: 58px; border: 1px solid #e1dbe8; border-radius: 13px;
  padding: 10px 14px; background: #fbfbfd; min-width: 0;
}
.info.ui_d9f6nd { grid-column: span 4; min-height: auto; }
.info label { display: block; color: #8a988f; font-size: 12px; margin-bottom: 2px; }
.info b { font-size: 15px; line-height: 1.3; color: var(--ink); word-break: break-word; }
.info a { color: var(--green2); text-decoration: underline; }

/* Статья */
.ui_69b9nq {
  background: #fff; border: 1px solid var(--line); border-top: 0;
  border-radius: 0 0 20px 20px; padding: 27px 31px; margin-bottom: 20px;
}
.ui_69b9nq > h2 { font-size: 23px; margin: 26px 0 10px; color: var(--ink); }
.ui_69b9nq > h2:first-child { margin-top: 0; }
.ui_69b9nq p { margin: 0 0 12px; color: #5d5265; line-height: 1.75; }

/* Скриншоты-плитка */
.ui_0okgf4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-top: 14px; }
.ui_qyx5lj {
  aspect-ratio: 9/16; border-radius: 13px; border: 4px solid #efedf2;
  overflow: hidden; cursor: pointer; background: var(--soft); transition: border-color .13s;
}
.ui_qyx5lj:hover { border-color: #cfbde4; }
.ui_qyx5lj img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Блок скачивания */
.download {
  background: #f6f3fb; border: 1px solid #dacce9; border-radius: 16px;
  padding: 22px; text-align: center; margin-top: 20px;
}
.download h3 { margin: 0 0 6px; font-size: 21px; color: var(--ink); }
.download p { margin: 0 0 14px; color: var(--muted); }

/* Комментарии в стиле верстки */
.comments { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 28px; }
.comment_5q08jq { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.comment_5q08jq h2 { margin: 0 0 2px; font-size: 24px; color: var(--ink); }
.comment_5q08jq p { margin: 0; color: var(--muted); font-size: 14px; }
.comment_5q08jq > svg { width: 32px; height: 32px; fill: var(--green); flex-shrink: 0; }
.comment_qdin97 { border: 1px solid var(--line); border-radius: 16px; background: #faf9fc; padding: 20px; margin-bottom: 22px; }
.comment_qdin97 .ui_1y4cdu { display: grid; gap: 7px; font-weight: 800; font-size: 14px; margin-bottom: 14px; color: var(--ink); }
.comment_qdin97 input, .comment_qdin97 textarea {
  width: 100%; border: 1px solid #ddd7e5; background: #fff; border-radius: 11px;
  padding: 12px 14px; outline: 0; color: var(--text); font: inherit; font-weight: 400;
}
.comment_qdin97 input:focus, .comment_qdin97 textarea:focus { border-color: #ae84d8; box-shadow: 0 0 0 3px rgba(40,201,104,.10); }
.comment_qdin97 textarea { min-height: 120px; resize: vertical; }
.comment_gut1uk { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 4px; flex-wrap: wrap; }
.comment_gut1uk span.cf-note { font-size: 12px; color: var(--muted); }
.comment_gut1uk button {
  border: 0; border-radius: 11px; background: var(--green); color: #fff; font-weight: 900;
  padding: 11px 20px; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font: inherit; font-weight: 900;
}
.comment_gut1uk button:hover { opacity: .9; }
.comment_gut1uk button svg { width: 16px; height: 16px; fill: currentColor; }
@media (max-width: 1100px) {
  .ui_crjpvo { grid-template-columns: 125px 1fr 180px; }
  .ui_6ti7p8 { width: 125px; height: 125px; }
  .ui_ocykym h1 { font-size: 28px; }}
@media (max-width: 860px) {
  .ui_8i3xqo { grid-template-columns: 1fr 1fr; }
  .info.ui_d9f6nd { grid-column: span 2; }
  .ui_0okgf4 { grid-template-columns: repeat(3, 1fr); }}
@media (max-width: 780px) {
  .ui_crjpvo { grid-template-columns: 88px 1fr; padding: 18px; min-height: 130px; gap: 14px; }
  .ui_6ti7p8 { width: 88px; height: 88px; border-radius: 18px; }
  .ui_ocykym h1 { font-size: 24px; }
  .ui_l3ipi9 { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding: 14px 0 0; text-align: left; }
  .ui_l3ipi9 .star-input { justify-content: flex-start; }
  .ui_69b9nq { padding: 21px; }
  .ui_v6ozw6 { margin-left: -21px; margin-right: -21px; padding-left: 21px; padding-right: 21px; }
  .ui_0okgf4 { grid-template-columns: repeat(2, 1fr); }
  .comment_gut1uk { align-items: stretch; flex-direction: column; }
  .comment_gut1uk button { justify-content: center; }}

/* ЗАЩИТА ОТ «РАСПУХШИХ» ИКОНОК — Инлайновые SVG без width/height растягиваются на всю ширину, если правило — не применилось. Задаём безопасные размеры по контексту. */
svg { max-width: 100%; }
.nav_xr7mon svg,
.ui_b835ko .ui_4kwce3 svg,
.ui_8ecrm7 svg,
.ui_cdplvg svg,
.ui_kkspk6 svg,
.ui_8i46jh svg,
.comment_gut1uk button svg,
.ui_xvl3vo svg,
.ui_yvkphf svg,
.ui_cbb0mh svg,
.download_gufsla svg,
.download_3spjg0 svg,
.rc-app-link svg { flex: 0 0 auto; }

.comment_5q08jq > svg { width: 32px; height: 32px; flex: 0 0 auto; }
.comment_gut1uk button svg { width: 16px; height: 16px; }
.ui_kkspk6 svg { width: 22px; height: 22px; }
.ui_cdplvg svg { width: 10px; height: 10px; }
.ui_nyncyk svg { width: 27px; height: 27px; }

/* СКРИНШОТЫ — одна строка с горизонтальным скроллом */
.ui_0okgf4 {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
  margin-top: 14px;
  scrollbar-width: thin;
  scrollbar-color: #cfbde4 transparent;
}
.ui_0okgf4::-webkit-scrollbar { height: 8px; }
.ui_0okgf4::-webkit-scrollbar-track { background: var(--soft); border-radius: 8px; }
.ui_0okgf4::-webkit-scrollbar-thumb { background: #cfbde4; border-radius: 8px; }
.ui_0okgf4::-webkit-scrollbar-thumb:hover { background: var(--green); }
.ui_qyx5lj {
  flex: 0 0 auto;
  height: 300px; width: auto;
  scroll-snap-align: start;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  background: var(--soft);
  box-shadow: 0 4px 14px rgba(25,80,45,.07);
  transition: border-color .13s, transform .13s, box-shadow .13s;
}
.ui_qyx5lj:hover {
  border-color: #cfbde4; transform: translateY(-3px);
  box-shadow: var(--shadow);
}
/* высота фиксирована, ширина — по натуральным пропорциям кадра */
.ui_qyx5lj img {
  height: 100%; width: auto; max-width: none;
  object-fit: cover; display: block; border-radius: 13px;
}
@media (max-width: 640px) {
  .ui_qyx5lj { height: 220px; }
}

/* ГАМБУРГЕР В ШАПКЕ (вместо плавающей кнопки) */
.ui_2cyvri { display: none; }
@media (max-width: 1100px) { .ui_2cyvri { display: flex; } }

/* Карточки внутри блоков «Похожие» / «Смотрите также» */
.card_qqm6y4 { margin: 12px 0 0; padding: 2px; }
.card_qqm6y4 .card { margin: 0; }

/* Фирменный знак у заголовка комментариев */
.comment_eyskyr {
  width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--green-light), var(--green2));
  box-shadow: 0 8px 20px rgba(40,201,104,.24);
}
.comment_5q08jq h2 { font-size: 26px; }

/* Свежие комментарии на странице скачивания */
.comment_poen3e { margin-top: 26px; }
.downpage-comments-loading { padding: 18px; text-align: center; color: var(--muted); font-size: 13px; }
#downpage-comments-list { display: grid; gap: 14px; }

/* Скриншоты на фоне как у шапки материала */
.ui_v6ozw6 {
  background: linear-gradient(140deg, #fff, #f5f1fa);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  /* во всю ширину .ui_69b9nq — компенсируем её внутренние отступы */
  margin: 18px -31px; padding: 22px 31px 14px;
  position: relative; overflow: hidden;
}
.ui_v6ozw6:before {
  content: ""; position: absolute; width: 240px; height: 240px;
  border: 1px solid #d8cfe4; background: rgba(255,255,255,.25);
  transform: rotate(45deg); right: 8%; top: -140px; pointer-events: none;
}
.ui_v6ozw6 .ui_0okgf4 { margin-top: 0; }

/* Кнопки «Поделиться» — аккуратный ряд */
.ui_s5nffp {
  margin: 4px 0 18px; padding: 12px 14px;
  background: #faf9fc; border: 1px solid var(--line); border-radius: 14px;
}
.ui_kye80h { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.ui_xvl3vo {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 10px;
  font-size: 13px; font-weight: 700; line-height: 1;
  color: #fff; text-decoration: none;
  border: none; cursor: pointer; font-family: inherit;
  transition: transform .12s, opacity .12s;
}
.ui_xvl3vo:hover { opacity: .9; transform: translateY(-1px); }
.ui_acx0lq { background: #fff; color: var(--text); border: 1px solid #ddd7e5; }
.ui_acx0lq:hover { background: var(--soft); color: var(--green2); }

/* Информация о файле на /download-page/ */
.ui_9dx031 { border: none; padding: 14px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.download_vws68t { background: #faf9fc; padding: 12px 16px; font-size: 14px; font-weight: 800; color: var(--ink); border-bottom: 1px solid var(--line); }

/* Сетка, когда сайдбар скрыт (только там, где сайдбары реально видны) */
@media (min-width: 1101px) {
  .site-grid--no-left  { grid-template-columns: minmax(0,1fr) 280px; }
  .site-grid--no-right { grid-template-columns: 250px minmax(0,1fr); }
  .site-grid--solo     { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 1100px) and (min-width: 861px) {
  .site-grid--no-left  { grid-template-columns: minmax(0,1fr); }
  .site-grid--no-right { grid-template-columns: 200px minmax(0,1fr); }
  .site-grid--solo     { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 860px) {
  .ui_5tl4mg, .site-grid--no-left, .site-grid--no-right, .site-grid--solo {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Футер по центру, ссылки в один ряд */
.ui_txhsxz { display: grid; justify-items: center; text-align: center; gap: 18px; }
.ui_txhsxz .ui_c6ltph { justify-content: center; }
.ui_m1pzbz { max-width: 620px; }
.ui_1255it { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; }
.ui_1255it a { font-size: 14px; }
@media (max-width: 900px) {
  .ui_9dx031 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .comment-item { grid-template-columns: 40px 1fr; }
  .comment-avatar { width: 40px; height: 40px; }
  .comment-votes { grid-column: 2; justify-content: flex-start; margin-top: 6px; }
}
