:root {
    --dl-primary: #3b82f6;
    --dl-primary-dark: #2563eb;
    --dl-secondary: #8b5cf6;
    --dl-success: #10b981;
    --dl-text: #152238;
    --dl-muted: #667085;
    --dl-border: #e3eaf5;
    --dl-surface: rgba(255, 255, 255, .94);
}

.download-body {
    margin: 0;
    min-height: 100vh;
    background: #f5f8fd;
    color: var(--dl-text);
}

.download-main {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 180px);
    padding: 40px 0 64px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 5%, rgba(59, 130, 246, .15), transparent 27%),
        radial-gradient(circle at 90% 18%, rgba(139, 92, 246, .13), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
}

.download-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
}
.download-orb-one { width: 320px; height: 320px; top: 15%; left: -190px; background: rgba(59,130,246,.10); }
.download-orb-two { width: 420px; height: 420px; right: -250px; bottom: 0; background: rgba(139,92,246,.09); }

.download-container { max-width: 1060px; }

.download-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    padding: 0 4px;
    color: #8b95a7;
    font-size: .84rem;
    overflow: hidden;
    white-space: nowrap;
}
.download-breadcrumb a { color: #667085; text-decoration: none; }
.download-breadcrumb a:hover { color: var(--dl-primary); }
.download-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }

.download-card {
    background: var(--dl-surface);
    border: 1px solid rgba(216, 226, 241, .9);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(41, 61, 95, .11);
    backdrop-filter: blur(14px);
}

.download-card-head {
    display: flex;
    gap: 24px;
    align-items: center;
}

.download-app-icon-wrap { position: relative; flex: 0 0 auto; }
.download-app-icon {
    width: 116px;
    height: 116px;
    object-fit: cover;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: 0 16px 36px rgba(40, 61, 97, .17);
    background: #fff;
}
.download-safe-mark {
    position: absolute;
    right: -7px;
    bottom: -7px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--dl-success), #059669);
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(16,185,129,.28);
}

.download-app-copy { min-width: 0; }
.download-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: #167c62;
    background: #eafaf5;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.download-app-copy h1 {
    margin: 10px 0 9px;
    font-size: clamp(1.75rem, 3.2vw, 2.55rem);
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -.035em;
}
.download-app-copy p { max-width: 690px; margin: 0; color: var(--dl-muted); line-height: 1.6; }

.download-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.download-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid #e7edf6;
    border-radius: 10px;
    background: #f9fbfe;
    color: #536179;
    font-size: .82rem;
    font-weight: 650;
}
.download-tags i { color: var(--dl-primary); }

.download-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.download-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 15px;
    border: 1px solid var(--dl-border);
    border-radius: 16px;
    background: #fbfdff;
}
.download-metric-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--dl-primary);
    background: #eaf2ff;
}
.download-metric-star { color: #e5a500; background: #fff8df; }
.download-metric strong { display: block; overflow: hidden; text-overflow: ellipsis; font-size: 1.02rem; white-space: nowrap; }
.download-metric small { display: block; margin-top: 2px; color: var(--dl-muted); font-size: .72rem; line-height: 1.25; }

.download-wait {
    display: grid;
    grid-template-columns: 132px 1fr;
    align-items: center;
    gap: 25px;
    margin-top: 24px;
    padding: 23px 25px;
    border: 1px solid #dce7f7;
    border-radius: 20px;
    background: linear-gradient(135deg, #f4f8ff, #faf8ff);
}
.download-timer { position: relative; width: 112px; height: 112px; margin: auto; }
.download-timer svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.download-timer circle { fill: none; stroke-width: 8; }
.download-timer-track { stroke: #dce7f6; }
.download-timer-progress {
    stroke: url(#downloadGradient);
    stroke: var(--dl-primary);
    stroke-linecap: round;
    transition: stroke-dashoffset .35s linear;
}
.download-timer-value {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
}
.download-timer-value strong { font-size: 2rem; line-height: 1; color: var(--dl-primary-dark); }
.download-timer-value span { margin-top: 4px; color: #7b8799; font-size: .72rem; text-transform: uppercase; }
.download-wait-copy h2 { margin: 0 0 5px; font-size: 1.18rem; font-weight: 800; }
.download-wait-copy > p { margin: 0; color: var(--dl-muted); }
.download-check-list { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 15px; }
.download-check-list span { display: inline-flex; gap: 7px; align-items: center; color: #758197; font-size: .82rem; font-weight: 650; }
.download-check-list .is-ready { color: #128467; }
.download-wait.is-complete { border-color: #bcebdc; background: linear-gradient(135deg, #effcf8, #f6fbff); }
.download-wait.is-complete .download-timer-progress { stroke: var(--dl-success); }
.download-wait.is-complete .download-timer-value strong { color: var(--dl-success); }


.download-antivirus {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #dbe5f3;
    border-radius: 20px;
    background: linear-gradient(145deg, #fbfdff, #f4f8ff);
}
.download-antivirus-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.download-antivirus-kicker { display: inline-flex; align-items: center; gap: 7px; color: var(--dl-primary); font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.download-antivirus-head h2 { margin: 5px 0 3px; font-size: 1.12rem; font-weight: 850; }
.download-antivirus-head p { margin: 0; color: var(--dl-muted); font-size: .84rem; }
.download-antivirus-summary { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; color: #725d10; background: #fff3c4; font-size: .76rem; font-weight: 800; }
.download-antivirus-summary.is-ready { color: #08745b; background: #ddf8ef; }
.download-antivirus-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 16px; }
.download-antivirus-item { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 10px; min-width: 0; padding: 13px; border: 1px solid #e0e8f4; border-radius: 15px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.download-antivirus-logo { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #56708f; background: #edf3fb; }
.download-antivirus-item strong { display: block; font-size: .88rem; }
.download-antivirus-item small { display: block; margin-top: 2px; color: #8a97aa; font-size: .72rem; }
.download-antivirus-state { color: #98a5b8; font-size: 1rem; }
.download-antivirus-item.is-scanning { border-color: rgba(59,130,246,.45); box-shadow: 0 8px 22px rgba(59,130,246,.08); transform: translateY(-1px); }
.download-antivirus-item.is-scanning .download-antivirus-logo, .download-antivirus-item.is-scanning .download-antivirus-state { color: var(--dl-primary); background: #eaf2ff; }
.download-antivirus-item.is-ready { border-color: #bcebdc; background: #f6fffb; }
.download-antivirus-item.is-ready .download-antivirus-logo { color: #0f8b6d; background: #e2f8f0; }
.download-antivirus-item.is-ready .download-antivirus-state { color: #0f9b78; }
.download-antivirus-item.is-ready small { color: #17795f; }
.download-antivirus-note { display: flex; gap: 8px; margin-top: 12px; color: #7b8799; font-size: .72rem; line-height: 1.45; }
.download-antivirus-note i { margin-top: 2px; color: var(--dl-primary); }

.download-ad-wrap { margin-top: 20px; }
.download-ad-wrap:empty { display: none; }
.download-ad-wrap .vsofte-ad-position,
.download-ad-wrap .vsofte-ad-block { width: 100%; }
.download-ad-wrap .vsofte-ad-block { overflow: hidden; text-align: center; }
.download-ad-wrap img, .download-ad-wrap iframe { max-width: 100%; }

.download-sources { margin-top: 24px; }
.download-source-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; margin-bottom: 13px; }
.download-source-heading h2 { margin: 0 0 3px; font-size: 1.18rem; font-weight: 800; }
.download-source-heading p { margin: 0; color: var(--dl-muted); font-size: .88rem; }
.download-source-ready {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #766616;
    background: #fff6cf;
    font-size: .76rem;
    font-weight: 800;
}
.download-source-ready.is-ready { color: #13775f; background: #e9faf4; }
.download-source-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.download-source-button {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 15px;
    border: 1px solid #dbe5f3;
    border-radius: 16px;
    color: var(--dl-text);
    background: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(46, 67, 101, .035);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.download-source-button.is-locked { opacity: .47; cursor: not-allowed; filter: grayscale(.25); }
.download-source-button.is-ready:hover {
    transform: translateY(-2px);
    border-color: rgba(59,130,246,.55);
    color: var(--dl-primary-dark);
    box-shadow: 0 12px 26px rgba(59,130,246,.12);
}
.download-source-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, var(--dl-primary), var(--dl-secondary));
    font-size: 1.22rem;
}
.download-source-copy { min-width: 0; flex: 1; }
.download-source-copy strong { display: block; font-size: .96rem; }
.download-source-copy small { display: block; overflow: hidden; margin-top: 3px; color: var(--dl-muted); font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }
.download-source-arrow { color: #92a0b5; }

.download-empty { padding: 32px; border: 1px dashed #cbd8e9; border-radius: 18px; background: #fbfdff; text-align: center; }
.download-empty > span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 50%; color: var(--dl-primary); background: #eaf2ff; font-size: 1.2rem; }
.download-empty h2 { font-size: 1.15rem; font-weight: 800; }
.download-empty p { color: var(--dl-muted); }

.download-note {
    display: flex;
    gap: 11px;
    margin-top: 24px;
    padding-top: 19px;
    border-top: 1px solid #e8edf5;
    color: #718096;
    font-size: .78rem;
    line-height: 1.55;
}
.download-note i { flex: 0 0 auto; margin-top: 3px; color: var(--dl-primary); }
.download-note p { margin: 0; }
.download-back { margin-top: 18px; text-align: center; }
.download-back a { color: #667085; text-decoration: none; font-size: .88rem; font-weight: 650; }
.download-back a:hover { color: var(--dl-primary); }

@media (max-width: 767.98px) {
    .download-main { padding: 20px 0 42px; }
    .download-card { padding: 22px 17px; border-radius: 22px; }
    .download-card-head { align-items: flex-start; gap: 16px; }
    .download-app-icon { width: 82px; height: 82px; border-radius: 19px; }
    .download-safe-mark { width: 29px; height: 29px; border-width: 3px; font-size: .75rem; }
    .download-eyebrow { font-size: .63rem; padding: 5px 8px; }
    .download-app-copy h1 { margin-top: 8px; font-size: 1.42rem; }
    .download-app-copy p { font-size: .85rem; }
    .download-tags { margin-left: -98px; padding-top: 8px; }
    .download-wait {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 14px;
        margin-top: 18px;
        padding: 15px;
        text-align: left;
        border-radius: 17px;
    }
    .download-timer { width: 76px; height: 76px; }
    .download-timer circle { stroke-width: 9; }
    .download-timer-value strong { font-size: 1.55rem; }
    .download-wait-copy h2 { margin-bottom: 3px; font-size: 1rem; }
    .download-wait-copy > p { font-size: .78rem; line-height: 1.35; }
    .download-check-list { display: none; }
    .download-metrics { grid-template-columns: 1fr; gap: 8px; margin-top: 14px; }
    .download-metric { padding: 12px; }
    .download-antivirus { padding: 17px; }
    .download-antivirus-head { display: block; }
    .download-antivirus-summary { margin-top: 10px; }
    .download-antivirus-grid { grid-template-columns: 1fr; }
    .download-source-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
    .download-source-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .download-card-head { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 12px; text-align: left; }
    .download-app-icon-wrap { display: block; margin: 0; }
    .download-app-icon { width: 68px; height: 68px; border-radius: 16px; }
    .download-app-copy h1 { font-size: 1.2rem; }
    .download-app-copy p { display: none; }
    .download-tags { grid-column: 1 / -1; justify-content: flex-start; margin-left: 0; padding-top: 0; }
    .download-tags span { padding: 6px 8px; font-size: .72rem; }
    .download-breadcrumb { display: none; }
    .download-wait { grid-template-columns: 70px minmax(0, 1fr); padding: 13px; }
    .download-timer { width: 68px; height: 68px; }
    .download-wait-copy > p { display: none; }
}

/* v17: реальные проверки Kaspersky OpenTIP, URLhaus и urlscan.io */
.download-antivirus-logo img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.download-antivirus-item.is-warning {
    border-color: #f2d17a;
    background: #fffaf0;
}
.download-antivirus-item.is-warning .download-antivirus-state { color: #b7791f; }
.download-antivirus-item.is-danger {
    border-color: #efb1b1;
    background: #fff5f5;
}
.download-antivirus-item.is-danger .download-antivirus-state { color: #d9363e; }
.download-antivirus-summary.is-warning {
    color: #7a5b00;
    background: #fff3c4;
}
.download-antivirus-summary.is-danger {
    color: #a1262d;
    background: #ffe1e3;
}

/* v18: компактная современная страница загрузки и 30-секундный таймер */
.download-container { max-width: 1120px; }
.download-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 218, 239, .9);
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(59,130,246,.32), rgba(139,92,246,.22), rgba(16,185,129,.20)) border-box;
    box-shadow: 0 28px 80px rgba(31, 53, 92, .13);
}
.download-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -140px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,.13), transparent 68%);
    pointer-events: none;
}
.download-top-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
    gap: 24px;
    align-items: center;
}
.download-card-head { min-width: 0; }
.download-app-copy h1 { max-width: 680px; }
.download-wait {
    min-width: 0;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 17px;
    margin-top: 0;
    padding: 20px;
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #1e4ed8 0%, #4f46e5 52%, #6d28d9 100%);
    box-shadow: 0 18px 42px rgba(67, 56, 202, .28);
}
.download-timer { width: 96px; height: 96px; }
.download-timer-track { stroke: rgba(255,255,255,.22); }
.download-timer-progress { stroke: #7dd3fc; filter: drop-shadow(0 0 5px rgba(125,211,252,.65)); }
.download-timer-value strong { color: #fff; font-size: 2rem; }
.download-timer-value span { color: rgba(255,255,255,.72); }
.download-wait-copy h2 { color: #fff; font-size: 1.12rem; }
.download-wait-copy > p { color: rgba(255,255,255,.78); font-size: .82rem; line-height: 1.42; }
.download-check-list { gap: 8px 12px; margin-top: 13px; }
.download-check-list span,
.download-check-list .is-ready { color: rgba(255,255,255,.76); font-size: .72rem; }
.download-check-list .is-ready i { color: #86efac; }
.download-wait.is-complete {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #047857, #0f9b78);
}
.download-wait.is-complete .download-timer-progress { stroke: #a7f3d0; }
.download-wait.is-complete .download-timer-value strong { color: #fff; }
.download-metrics { margin-top: 18px; }
.download-metric {
    border-color: #e5ebf5;
    background: rgba(248,251,255,.86);
    box-shadow: 0 6px 18px rgba(38, 63, 102, .035);
}
.download-antivirus {
    margin-top: 18px;
    border-color: #e0e8f4;
    background: #fff;
    box-shadow: 0 10px 30px rgba(39, 63, 101, .05);
}
.download-antivirus-item {
    grid-template-columns: 54px minmax(0,1fr) auto;
    min-height: 76px;
    box-shadow: 0 5px 15px rgba(40, 62, 99, .035);
}
.download-antivirus-logo {
    width: 52px;
    height: 46px;
    padding: 7px;
    background: #f4f7fb;
}
.download-antivirus-logo img { width: 30px; height: 30px; }
#av-urlhaus .download-antivirus-logo { padding: 4px; }
#av-urlhaus .download-antivirus-logo img {
    width: 50px;
    height: 32px;
    border-radius: 7px;
}
.download-source-grid { gap: 13px; }
.download-source-button {
    position: relative;
    overflow: hidden;
    padding: 17px;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(44, 68, 108, .05);
}
.download-source-button::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -50px;
    bottom: -55px;
    border-radius: 50%;
    background: rgba(59,130,246,.06);
    pointer-events: none;
}
.download-source-icon { box-shadow: 0 8px 18px rgba(59,130,246,.20); }
.download-ad-wrap .vsofte-ad-block {
    border-radius: 18px;
    background: #fff;
}

@media (max-width: 991.98px) {
    .download-top-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .download-wait { grid-template-columns: 88px minmax(0, 1fr); }
    .download-timer { width: 82px; height: 82px; }
}

@media (max-width: 767.98px) {
    .download-main { padding-top: 12px; }
    .download-card { padding: 18px 14px 22px; border-radius: 23px; }
    .download-top-grid { gap: 13px; }
    .download-card-head { gap: 13px; }
    .download-app-icon { width: 72px; height: 72px; border-radius: 17px; }
    .download-app-copy h1 { margin: 6px 0 5px; font-size: 1.28rem; }
    .download-app-copy p { font-size: .78rem; line-height: 1.38; }
    .download-tags { margin-top: 9px; gap: 6px; }
    .download-tags span { padding: 5px 8px; font-size: .68rem; }
    .download-wait {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 12px;
        padding: 13px 14px;
        border-radius: 18px;
        text-align: left;
    }
    .download-timer { width: 70px; height: 70px; }
    .download-timer circle { stroke-width: 9; }
    .download-timer-value strong { font-size: 1.55rem; }
    .download-wait-copy h2 { font-size: .96rem; }
    .download-wait-copy > p { display: block; font-size: .72rem; }
    .download-check-list { display: none; }
    .download-metrics {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(205px, 78%);
        grid-template-columns: none;
        gap: 9px;
        overflow-x: auto;
        padding: 2px 1px 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .download-metrics::-webkit-scrollbar { display: none; }
    .download-metric { scroll-snap-align: start; padding: 12px; }
    .download-antivirus { padding: 15px; border-radius: 18px; }
    .download-antivirus-head h2 { font-size: 1rem; }
    .download-antivirus-head p { font-size: .76rem; }
    .download-antivirus-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(255px, 88%);
        grid-template-columns: none;
        overflow-x: auto;
        padding: 1px 1px 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .download-antivirus-grid::-webkit-scrollbar { display: none; }
    .download-antivirus-item { scroll-snap-align: start; }
    .download-source-heading { margin-top: 4px; }
}

@media (max-width: 420px) {
    .download-card-head { grid-template-columns: 62px minmax(0,1fr); }
    .download-app-icon { width: 62px; height: 62px; }
    .download-eyebrow { padding: 4px 7px; font-size: .58rem; }
    .download-app-copy h1 { font-size: 1.08rem; }
    .download-tags { grid-column: 1 / -1; }
    .download-wait { grid-template-columns: 68px minmax(0, 1fr); padding: 11px 12px; }
    .download-timer { width: 64px; height: 64px; }
    .download-wait-copy > p { display: block; }
}


/* v19: компактные и равновысокие карточки проверки без обрезания текста */
.download-antivirus-grid {
    align-items: stretch;
}
.download-antivirus-item {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    height: 88px;
    min-height: 88px;
    padding: 10px;
    gap: 9px;
    overflow: visible;
}
.download-antivirus-item > div {
    min-width: 0;
}
.download-antivirus-item strong {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.2;
}
.download-antivirus-item small {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    line-height: 1.3;
}
.download-antivirus-logo {
    width: 42px;
    height: 42px;
    padding: 7px;
}
.download-antivirus-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
#av-urlhaus .download-antivirus-logo {
    width: 42px;
    height: 42px;
    padding: 4px;
}
#av-urlhaus .download-antivirus-logo img {
    width: 38px;
    height: 28px;
    border-radius: 5px;
}
.download-antivirus-state {
    align-self: center;
}

@media (max-width: 767.98px) {
    .download-antivirus-item {
        height: 92px;
        min-height: 92px;
    }
}

/* v20: линейный таймер после меток и заметный блок доверия */
.download-top-grid {
    display: block;
}
.download-card-head {
    align-items: flex-start;
}
.download-app-copy {
    flex: 1 1 auto;
}
.download-wait {
    display: block;
    margin-top: 16px;
    padding: 15px 16px 13px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #1649c8 0%, #4f46e5 52%, #6d28d9 100%);
    box-shadow: 0 14px 30px rgba(67,56,202,.24);
}
.download-wait-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.download-wait-copy { min-width: 0; }
.download-wait h2,
.download-wait-copy h2 {
    margin: 0 0 2px;
    color: #fff;
    font-size: .96rem;
    font-weight: 800;
}
.download-wait p,
.download-wait-copy > p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: .72rem;
    line-height: 1.35;
}
.download-wait-time {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    min-width: 64px;
    justify-content: flex-end;
    color: #fff;
}
.download-wait-time strong {
    font-size: 1.28rem;
    line-height: 1;
    font-weight: 900;
}
.download-wait-time span {
    color: rgba(255,255,255,.68);
    font-size: .66rem;
    text-transform: uppercase;
}
.download-progress-track {
    position: relative;
    height: 9px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.10);
}
.download-timer-progress {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7dd3fc 0%, #a7f3d0 60%, #fff 100%);
    box-shadow: 0 0 15px rgba(125,211,252,.56);
    transition: width .9s linear;
}
.download-timer-progress::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
    animation: downloadProgressShine 1.45s linear infinite;
}
.download-check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-top: 9px;
}
.download-check-list span,
.download-check-list .is-ready {
    color: rgba(255,255,255,.76);
    font-size: .68rem;
}
.download-check-list .is-ready i { color: #86efac; }
.download-wait.is-complete {
    background: linear-gradient(135deg, #047857, #0f9b78);
}
.download-wait.is-complete .download-timer-progress {
    background: linear-gradient(90deg, #a7f3d0, #fff);
}
@keyframes downloadProgressShine {
    to { transform: translateX(100%); }
}

.download-antivirus {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16,185,129,.26);
    background:
        linear-gradient(135deg, rgba(239,253,248,.98), rgba(247,250,255,.98)) padding-box,
        linear-gradient(135deg, rgba(16,185,129,.42), rgba(59,130,246,.28)) border-box;
    box-shadow: 0 16px 38px rgba(16, 106, 79, .10);
}
.download-antivirus::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -105px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,.12), transparent 68%);
    pointer-events: none;
}
.download-antivirus-head,
.download-antivirus-grid,
.download-antivirus-note { position: relative; z-index: 1; }
.download-antivirus-kicker {
    color: #087f5b;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(16,185,129,.18);
}
.download-antivirus-summary.is-scanning {
    color: #1d4ed8;
    background: #eaf2ff;
}
.download-antivirus-summary.is-scanning i { animation: fa-spin 1s infinite linear; }
.download-antivirus-grid { align-items: stretch; }
.download-antivirus-item {
    position: relative;
    grid-template-columns: 42px minmax(0,1fr) 18px;
    height: 76px;
    min-height: 76px;
    padding: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.86);
    border-color: rgba(214,227,235,.92);
}
.download-antivirus-item::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.84) 48%, transparent 76%);
    pointer-events: none;
}
.download-antivirus-item.is-scanning::after {
    animation: downloadSecuritySweep 1.25s ease-in-out infinite;
}
/* VSOFTE_V108_MANUAL_SECURITY_SEQUENCE */
.download-antivirus-item.is-waiting { opacity: .68; background: rgba(248,250,252,.92); }
.download-antivirus-item.is-waiting .download-antivirus-state { color: #94a3b8; }
.download-antivirus-item.is-ready { border-color: rgba(16,185,129,.28); background: rgba(236,253,245,.90); }
.download-antivirus-item.is-warning { border-color: rgba(245,159,0,.28); background: rgba(255,249,219,.92); }
.download-antivirus-item.is-danger { border-color: rgba(220,53,69,.28); background: rgba(255,245,245,.94); }
.download-antivirus-logo,
#av-urlhaus .download-antivirus-logo {
    width: 42px;
    height: 42px;
    padding: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 15px rgba(37,61,96,.08);
}
.download-antivirus-logo img,
#av-urlhaus .download-antivirus-logo img {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    border-radius: 50%;
    object-fit: contain;
}
.download-antivirus-item strong { font-size: .81rem; }
.download-antivirus-item small {
    margin-top: 3px;
    font-size: .72rem;
    line-height: 1.2;
    white-space: nowrap;
}
.download-antivirus-state { font-size: .82rem; }
.download-antivirus-note {
    margin-top: 11px;
    padding-top: 10px;
    border-top: 1px solid rgba(16,185,129,.12);
    font-size: .72rem;
}
@keyframes downloadSecuritySweep { to { transform: translateX(110%); } }

@media (max-width: 767.98px) {
    .download-card-head {
        display: grid;
        grid-template-columns: 72px minmax(0,1fr);
        gap: 13px;
    }
    .download-wait {
        grid-column: 1 / -1;
        margin-top: 13px;
        padding: 13px;
    }
    .download-wait-head { align-items: flex-start; }
    .download-wait h2 { font-size: .9rem; }
    .download-wait p { font-size: .68rem; }
    .download-check-list { display: flex; }
    .download-antivirus-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        overflow: visible;
        gap: 8px;
    }
    .download-antivirus-item {
        width: 100%;
        height: 68px;
        min-height: 68px;
    }
}

@media (max-width: 420px) {
    .download-card-head { grid-template-columns: 62px minmax(0,1fr); }
    .download-wait { padding: 11px 12px; }
    .download-wait-time strong { font-size: 1.08rem; }
    .download-check-list { gap: 7px 11px; }
    .download-check-list span { font-size: .63rem; }
}

/* v21: зеленая стилистика страницы загрузки без синих акцентов */
:root {
    --dl-primary: #0a9a70;
    --dl-primary-dark: #08765a;
    --dl-secondary: #35b983;
    --dl-success: #0a9a70;
    --dl-border: #e2ebe7;
    --dl-surface: rgba(255,255,255,.97);
}

.download-body {
    background: #f5f7f6;
}

.download-main {
    background:
        radial-gradient(circle at 8% 4%, rgba(10,154,112,.10), transparent 26%),
        radial-gradient(circle at 92% 20%, rgba(53,185,131,.08), transparent 24%),
        linear-gradient(180deg, #f8faf9 0%, #f3f6f4 100%);
}

.download-orb-one { background: rgba(10,154,112,.08); }
.download-orb-two { background: rgba(53,185,131,.07); }
.download-breadcrumb a:hover { color: var(--dl-primary-dark); }

.download-card {
    border-color: #e3ebe7;
    box-shadow: 0 20px 55px rgba(31,75,60,.08);
}

.download-tags span {
    border-color: #e3ebe7;
    background: #f8faf9;
    color: #52635d;
}
.download-tags i { color: var(--dl-primary-dark); }

.download-metric {
    border-color: #e3ebe7;
    background: #fbfcfb;
}
.download-metric-icon {
    color: var(--dl-primary-dark);
    background: #e9f7f1;
}
.download-metric-star {
    color: #d39a00;
    background: #fff8df;
}

/* Минималистичная шкала без обводок и синего фона */
.download-wait,
.download-wait.is-complete {
    display: block;
    margin-top: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.download-wait-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.download-wait h2,
.download-wait-copy h2 {
    color: var(--dl-text);
    font-size: .92rem;
    margin: 0 0 2px;
}

.download-wait p,
.download-wait-copy > p {
    color: var(--dl-muted);
    font-size: .72rem;
}

.download-wait-time,
.download-wait.is-complete .download-wait-time {
    color: var(--dl-primary-dark);
    min-width: 58px;
}
.download-wait-time strong { font-size: 1.18rem; }
.download-wait-time span { color: #75847e; }

.download-progress-track {
    height: 8px;
    margin-top: 10px;
    border: 0;
    border-radius: 999px;
    background: #e4ebe7;
    box-shadow: none;
}

.download-timer-progress,
.download-wait.is-complete .download-timer-progress {
    background: linear-gradient(90deg, #18b783 0%, #087b5c 100%);
    box-shadow: none;
}
.download-timer-progress::after { display: none; }

.download-check-list { margin-top: 8px; }
.download-check-list span,
.download-check-list .is-ready {
    color: #73817c;
}
.download-check-list .is-ready,
.download-check-list .is-ready i { color: var(--dl-primary-dark); }

.download-antivirus {
    border-color: rgba(10,154,112,.20);
    background: linear-gradient(145deg, #f2fbf7, #f9fbfa);
    box-shadow: 0 14px 34px rgba(23,105,78,.07);
}
.download-antivirus-kicker { color: var(--dl-primary-dark); }
.download-antivirus-logo {
    color: var(--dl-primary-dark);
    background: #e8f6f0;
}
.download-antivirus-item.is-scanning {
    border-color: rgba(10,154,112,.35);
    box-shadow: 0 7px 20px rgba(10,154,112,.08);
}
.download-antivirus-item.is-scanning .download-antivirus-logo,
.download-antivirus-item.is-scanning .download-antivirus-state {
    color: var(--dl-primary-dark);
    background: #e8f6f0;
}

.download-source-button:hover {
    border-color: rgba(10,154,112,.45);
    box-shadow: 0 10px 24px rgba(10,154,112,.10);
}
.download-source-icon {
    color: var(--dl-primary-dark);
    background: #e8f6f0;
    box-shadow: 0 7px 17px rgba(10,154,112,.13);
}
.download-empty > span {
    color: var(--dl-primary-dark);
    background: #e8f6f0;
}
.download-back a:hover { color: var(--dl-primary-dark); }

@media (max-width: 575.98px) {
    .download-progress-track { height: 7px; }
    .download-wait-head { align-items: center; }
}
.download-main .btn-primary {
    --bs-btn-bg: #0a9a70;
    --bs-btn-border-color: #0a9a70;
    --bs-btn-hover-bg: #08765a;
    --bs-btn-hover-border-color: #08765a;
    --bs-btn-active-bg: #076b51;
    --bs-btn-active-border-color: #076b51;
}

/* v28: выбор маркетплейса -> реклама -> отдельная кнопка перехода */
.download-source-grid {
    align-items: stretch;
}

.download-source-button {
    width: 100%;
    min-height: 78px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.download-source-button:disabled {
    pointer-events: none;
}

.download-source-button.is-ready {
    opacity: 1;
    filter: none;
}

.download-source-button.is-ready:hover {
    transform: translateY(-1px);
    border-color: rgba(10,154,112,.48);
    color: var(--dl-text);
    box-shadow: 0 10px 24px rgba(10,154,112,.10);
}

.download-source-button.is-selected {
    border-color: #0a9a70;
    background: #f1fbf7;
    box-shadow: 0 0 0 3px rgba(10,154,112,.12), 0 12px 25px rgba(10,154,112,.11);
}

.download-source-button.is-selected .download-source-icon {
    color: #fff;
    background: #0a9a70;
}

.download-source-choice {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #a7b2ae;
    font-size: 1.22rem;
}

.download-source-button.is-selected .download-source-choice {
    color: #0a9a70;
}

.download-ad-between {
    margin: 18px 0 16px;
    min-height: 0;
}

.download-go-wrap {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.download-go-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.download-go-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: #0a9a70;
    box-shadow: 0 10px 22px rgba(10,154,112,.18);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.download-go-button:hover,
.download-go-button:focus {
    color: #fff;
    background: #087b5c;
    transform: translateY(-1px);
    box-shadow: 0 13px 27px rgba(10,154,112,.23);
}

.download-go-caption {
    margin-top: 8px;
    color: #718078;
    font-size: .76rem;
    text-align: center;
}

@media (max-width: 575.98px) {
    .download-source-button {
        min-height: 72px;
        padding: 12px;
    }
    .download-go-button {
        min-height: 50px;
        border-radius: 11px;
    }
}
.download-source-button::after {
    background: rgba(10,154,112,.055);
}

/* v29: официальный логотип RuStore в карточках источников */
.download-source-icon.has-image {
    overflow: hidden;
    padding: 0;
    background: transparent;
    box-shadow: none;
}
.download-source-icon.has-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}
.download-source-button.is-selected .download-source-icon.has-image {
    background: transparent;
    box-shadow: 0 6px 16px rgba(10,154,112,.16);
}

/* v36: рейтинг конкретного маркетплейса в карточке выбора источника */
.download-source-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    margin-top: 6px;
    color: #9a6700;
    font-size: .78rem;
    line-height: 1;
}
.download-source-rating i {
    color: #f5ad00;
    font-size: .78rem;
}
.download-source-rating b {
    color: #3c4655;
    font-size: .82rem;
}
.download-source-rating em {
    color: #7c8797;
    font-size: .72rem;
    font-style: normal;
    font-weight: 500;
}
.download-source-button.is-selected .download-source-rating b,
.download-source-button.is-selected .download-source-rating em {
    color: #12644f;
}

/* VSOFTE_V79_MANUAL_VERIFIED_CSS */
.download-source-title-row {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 6px;
}
.download-source-title-row > strong {
    min-width: 0;
}
.download-source-manual-check {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border: 1px solid #bde8cf;
    border-radius: 50%;
    background: #eaf8f0;
    color: #168a53;
    font-size: 8px;
    line-height: 1;
    cursor: help;
}
.download-source-manual-check::after {
    content: attr(data-tooltip);
    position: absolute;
    z-index: 30;
    left: 50%;
    bottom: calc(100% + 8px);
    width: max-content;
    max-width: 210px;
    padding: 6px 8px;
    border-radius: 6px;
    background: #17251f;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
    white-space: normal;
    box-shadow: 0 6px 18px rgba(18, 47, 34, .16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 3px);
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.download-source-manual-check::before {
    content: '';
    position: absolute;
    z-index: 31;
    left: 50%;
    bottom: calc(100% + 3px);
    width: 8px;
    height: 8px;
    background: #17251f;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) rotate(45deg);
    transition: opacity .15s ease, visibility .15s ease;
}
.download-source-manual-check:hover::after,
.download-source-manual-check:hover::before,
.download-source-manual-check:focus::after,
.download-source-manual-check:focus::before {
    opacity: 1;
    visibility: visible;
}
.download-source-manual-check:hover::after,
.download-source-manual-check:focus::after {
    transform: translate(-50%, 0);
}

/* VSOFTE_V80_FLOATING_TOOLTIP_CSS
   Старый tooltip был дочерним элементом .download-source-button, у которого
   overflow:hidden. Поэтому верхняя часть подсказки обрезалась карточкой.
   Теперь подсказка находится непосредственно в body и позиционируется fixed. */
.download-source-manual-check::before,
.download-source-manual-check::after {
    display: none !important;
    content: none !important;
}

.download-source-floating-tooltip {
    position: fixed;
    z-index: 2147483000;
    width: max-content;
    max-width: min(280px, calc(100vw - 16px));
    padding: 7px 9px;
    border-radius: 7px;
    background: #17251f;
    color: #fff;
    box-shadow: 0 8px 24px rgba(18, 47, 34, .22);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
    pointer-events: none;
    opacity: 0;
    transform: translateY(3px);
    transition: opacity .12s ease, transform .12s ease;
}
.download-source-floating-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.download-source-floating-tooltip[hidden] {
    display: none !important;
}

/* VSOFTE_V91_SECURITY_MOBILE
   Доменная проверка: компактный вертикальный список на телефоне. */
.download-antivirus-item small {
    overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
    .download-antivirus {
        padding: 13px 12px;
        border-radius: 16px;
    }
    .download-antivirus-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 7px 9px;
    }
    .download-antivirus-head > div { min-width: 0; }
    .download-antivirus-kicker {
        font-size: .60rem;
        line-height: 1.2;
    }
    .download-antivirus-head h2 {
        margin-top: 4px;
        font-size: .98rem;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }
    .download-antivirus-head p {
        max-width: 100%;
        font-size: .68rem;
        line-height: 1.28;
    }
    .download-antivirus-summary,
    .download-antivirus-summary.is-scanning {
        align-self: start;
        margin: 0;
        padding: 6px 8px;
        font-size: .64rem;
        white-space: nowrap;
    }
    .download-antivirus-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-auto-columns: auto;
        gap: 7px;
        margin-top: 11px;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }
    .download-antivirus-item {
        width: 100%;
        height: auto;
        min-height: 52px;
        grid-template-columns: 32px minmax(0, 1fr) 16px;
        gap: 7px;
        padding: 8px 9px;
        border-radius: 12px;
        overflow: hidden;
    }
    .download-antivirus-logo,
    #av-urlhaus .download-antivirus-logo {
        width: 32px;
        height: 32px;
        padding: 5px;
    }
    .download-antivirus-logo img,
    #av-urlhaus .download-antivirus-logo img {
        width: 22px;
        height: 22px;
        max-width: 22px;
        max-height: 22px;
    }
    .download-antivirus-item > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        min-width: 0;
        gap: 2px 7px;
    }
    .download-antivirus-item strong {
        flex: 0 1 auto;
        min-width: 0;
        font-size: .74rem;
        line-height: 1.15;
    }
    .download-antivirus-item small {
        flex: 0 1 auto;
        max-width: 62%;
        margin: 0 0 0 auto;
        color: #188560;
        font-size: .66rem;
        font-weight: 700;
        line-height: 1.15;
        text-align: right;
        white-space: normal;
        overflow-wrap: anywhere;
    }
    .download-antivirus-state {
        align-self: center;
        font-size: .72rem;
    }
    .download-antivirus-note {
        margin-top: 9px;
        padding-top: 8px;
        font-size: .64rem;
        line-height: 1.3;
    }
}

@media (max-width: 380px) {
    .download-antivirus-head {
        grid-template-columns: minmax(0, 1fr);
    }
    .download-antivirus-summary,
    .download-antivirus-summary.is-scanning {
        justify-self: start;
    }
    .download-antivirus-item small {
        max-width: 58%;
        font-size: .62rem;
    }
}
\n\n/* VSOFTE_V94_PRE_TIMER_AD_CSS\n   РСЯ R-A-18283949-3 перед таймером загрузки. */\n.download-pre-timer-ad {\n    display: block;\n    width: 100%;\n    max-width: 100%;\n    min-width: 0;\n    margin: 18px 0 20px;\n    padding: 0;\n    box-sizing: border-box;\n}\n\n.download-pre-timer-ad > #yandex_rtb_R-A-18283949-3 {\n    display: block;\n    width: 100%;\n    max-width: 100%;\n    min-width: 0;\n    margin: 0 auto;\n    box-sizing: border-box;\n}\n\n.download-pre-timer-ad iframe,\n.download-pre-timer-ad img,\n.download-pre-timer-ad video {\n    max-width: 100% !important;\n}\n\n@media (max-width: 767.98px) {\n    .download-pre-timer-ad {\n        width: 100%;\n        max-width: 100%;\n        min-width: 0;\n        margin: 12px 0 14px;\n        overflow: hidden;\n    }\n\n    .download-pre-timer-ad > #yandex_rtb_R-A-18283949-3 {\n        width: 100% !important;\n        max-width: 100% !important;\n        min-width: 0 !important;\n        overflow: hidden;\n    }\n\n    .download-pre-timer-ad iframe {\n        display: block;\n        width: 100% !important;\n        max-width: 100% !important;\n        margin-left: auto !important;\n        margin-right: auto !important;\n    }\n}\n\n\n/* VSOFTE_V95_DISABLE_V94_DIRECT_SLOT\n   Прямой R-A-18283949-3 из v94 удален из HTML. Этот override нужен для безопасной\n   повторной установки на промежуточные версии. */\n.download-pre-timer-ad[data-v95-disabled],\n.download-pre-timer-ad.vsofte-v94-direct-ad-disabled {\n    display: none !important;\n}\n

/* VSOFTE_V96_TIMER_AD_SPACING
   Desktop: сначала таймер, затем РСЯ #3. Между блоками и снаружи единый шаг 16px.
   Mobile: desktop #3 не запрашивается; мобильный #4 из v95 остается перед скриншотами. */
.download-timer-ad-stack {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 16px 0;
    padding: 0;
    box-sizing: border-box;
}

.download-timer-ad-stack > #download-wait,
.download-timer-ad-stack > .download-desktop-ad {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 !important;
    box-sizing: border-box;
}

.download-desktop-ad {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.download-desktop-ad > div,
.download-desktop-ad iframe,
.download-desktop-ad ins,
.download-desktop-ad img,
.download-desktop-ad video {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    .download-timer-ad-stack {
        gap: 12px;
        margin: 12px 0;
    }

    .download-desktop-ad.desktop-ad {
        display: none !important;
    }
}
/* VSOFTE_V96_TIMER_AD_SPACING_END */


/* VSOFTE_V97_DESKTOP_AD_SPACING
   Дополнительный воздух вокруг R-A-18283949-3 на странице загрузки.
   HTML и логика РСЯ не меняются. */
@media (min-width: 992px) {
    .download-timer-ad-stack {
        gap: 20px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .download-timer-ad-stack > .download-desktop-ad,
    .download-desktop-ad.desktop-ad {
        margin-top: 4px !important;
        margin-bottom: 4px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .download-desktop-ad > div,
    .download-desktop-ad iframe,
    .download-desktop-ad ins {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (min-width: 1200px) {
    .download-timer-ad-stack {
        gap: 22px !important;
        margin-top: 22px !important;
        margin-bottom: 22px !important;
    }
}
/* VSOFTE_V97_DESKTOP_AD_SPACING_END */


/* VSOFTE_V98_MOBILE_AD_AFTER_TIMER_CSS
   Страница загрузки:
   desktop: таймер -> R-A-18283949-3
   mobile:  таймер -> R-A-18283949-4
   На каждом устройстве запрашивается только свой рекламный блок. */
.download-mobile-ad {
    display: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 !important;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.download-mobile-ad > div,
.download-mobile-ad iframe,
.download-mobile-ad ins,
.download-mobile-ad img,
.download-mobile-ad video {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

@media (min-width: 992px) {
    .download-mobile-ad.mobile-ad {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .download-mobile-ad.mobile-ad {
        display: block !important;
    }

    .download-timer-ad-stack > .download-mobile-ad {
        margin: 0 !important;
    }

    /* На mobile #3 скрыт, поэтому визуально: таймер -> #4. */
    .download-timer-ad-stack > .download-desktop-ad.desktop-ad {
        display: none !important;
    }
}
/* VSOFTE_V98_MOBILE_AD_AFTER_TIMER_CSS_END */


/* VSOFTE_V99_MOBILE_AD_SPACING_START
   Дополнительный воздух между таймером и мобильным РСЯ №4.
   Перекрывает margin:0 из v98 только на mobile. */
@media (max-width: 991.98px) {
    .download-timer-ad-stack > .download-mobile-ad.mobile-ad {
        margin-top: 18px !important;
        margin-bottom: 16px !important;
    }

    .download-timer-ad-stack > .download-mobile-ad.mobile-ad > div,
    .download-timer-ad-stack > .download-mobile-ad.mobile-ad iframe,
    .download-timer-ad-stack > .download-mobile-ad.mobile-ad ins {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .download-timer-ad-stack > .download-mobile-ad.mobile-ad {
        margin-top: 16px !important;
        margin-bottom: 14px !important;
    }
}
/* VSOFTE_V99_MOBILE_AD_SPACING_END */

/* VSOFTE_V101_OUTLINE_DOWNLOAD_CTA */
.download-go-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 2px solid #0a9a70;
    color: #078563;
    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 20px rgba(10,154,112,.08);
    transition: color .2s ease, background .2s ease, transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.download-go-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(110deg, #07966d 0%, #0aa879 55%, #07966d 100%);
    transform: translateX(-102%);
    transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
.download-go-button:hover,
.download-go-button:focus,
.download-go-button:focus-visible,
.download-go-button:active {
    border-color: #07966d;
    color: #fff;
    background: #0a9a70;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(10,154,112,.22);
}
.download-go-button:hover::before,
.download-go-button:focus::before,
.download-go-button:focus-visible::before,
.download-go-button:active::before { transform: translateX(0); }
.download-go-button i { transition: transform .2s ease; }
.download-go-button:hover i,
.download-go-button:focus i,
.download-go-button:focus-visible i,
.download-go-button:active i { transform: translate(2px,-2px); }
.download-go-button:active { transform: translateY(0) scale(.992); }
@media (hover: none) and (pointer: coarse) {
    .download-go-button:focus { color: #fff; background: #0a9a70; }
}
@media (prefers-reduced-motion: reduce) {
    .download-go-button,
    .download-go-button::before,
    .download-go-button i { transition: none; }
}
/* VSOFTE_V102_READY_ANCHOR */
.download-ready-anchor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 6px 11px 6px 7px;
    border: 1px solid rgba(10,154,112,.28);
    border-radius: 999px;
    background: #effaf6;
    color: #08765a;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(10,154,112,.12);
    opacity: 0;
    transform: translateY(-4px) scale(.96);
    transition: opacity .22s ease, transform .22s ease, background .2s ease, box-shadow .2s ease;
}
.download-ready-anchor[hidden] { display: none !important; }
.download-ready-anchor.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.download-ready-anchor i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: #0a9a70;
    color: #fff;
    font-size: .8rem;
    box-shadow: 0 5px 13px rgba(10,154,112,.24);
    animation: vsofteReadyArrow 1.15s ease-in-out infinite;
}
.download-ready-anchor b {
    color: inherit;
    font-size: .76rem;
    line-height: 1.1;
    font-weight: 800;
    white-space: nowrap;
}
.download-ready-anchor:hover,
.download-ready-anchor:focus-visible {
    color: #fff;
    background: #0a9a70;
    box-shadow: 0 10px 24px rgba(10,154,112,.24);
    outline: none;
}
.download-ready-anchor:hover i,
.download-ready-anchor:focus-visible i {
    background: rgba(255,255,255,.18);
}
.download-sources {
    scroll-margin-top: 118px;
}
.download-sources.is-scroll-target {
    animation: vsofteSourcesTarget 1.7s ease-out;
}
@keyframes vsofteReadyArrow {
    0%, 100% { transform: translateY(-1px); }
    50% { transform: translateY(4px); }
}
@keyframes vsofteSourcesTarget {
    0% { box-shadow: 0 0 0 0 rgba(10,154,112,.28); }
    35% { box-shadow: 0 0 0 7px rgba(10,154,112,.12); }
    100% { box-shadow: 0 0 0 0 rgba(10,154,112,0); }
}
@media (max-width: 600px) {
    .download-ready-anchor {
        min-height: 40px;
        gap: 6px;
        padding: 5px 9px 5px 6px;
    }
    .download-ready-anchor i {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
    }
    .download-ready-anchor b { font-size: .7rem; }
    .download-sources { scroll-margin-top: 92px; }
}
@media (max-width: 390px) {
    .download-ready-anchor b { display: none; }
    .download-ready-anchor { padding: 5px; }
}
@media (prefers-reduced-motion: reduce) {
    .download-ready-anchor,
    .download-ready-anchor i,
    .download-sources.is-scroll-target {
        animation: none !important;
        transition: none !important;
    }
}