:root {
    --apl-paper: #f6f7f2;
    --apl-paper-2: #eef2ec;
    --apl-ink: #1e2623;
    --apl-muted: #66736d;
    --apl-soft: #89958f;
    --apl-line: #d8ded5;
    --apl-card: #ffffff;
    --apl-card-2: #fbfcf8;
    --apl-green: #2f8a5f;
    --apl-green-2: #dff1e6;
    --apl-blue: #2f6f9f;
    --apl-blue-2: #e2edf6;
    --apl-amber: #b87822;
    --apl-amber-2: #f4eadb;
    --apl-red: #b65043;
    --apl-shadow: 0 18px 44px rgba(36, 51, 43, 0.11);
}

html {
    background: var(--apl-paper);
}

body {
    margin: 0;
    color: var(--apl-ink);
    background:
        linear-gradient(90deg, rgba(47, 138, 95, 0.06) 0 1px, transparent 1px 100%),
        linear-gradient(0deg, rgba(47, 111, 159, 0.045) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #fbfcf8 0%, var(--apl-paper) 46%, #eef2ec 100%);
    background-size: 44px 44px, 44px 44px, auto;
    font-family: Arial, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

a {
    color: var(--apl-ink);
}

a:hover,
a:focus {
    color: var(--apl-green);
}

.apl-page {
    min-width: 320px;
    overflow: hidden;
}

.apl-shell {
    width: min(1230px, calc(100% - 36px));
    max-width: 1230px;
    margin: 0 auto;
}

.apl-header {
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--apl-line);
    background: rgba(251, 252, 248, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(36, 51, 43, 0.08);
}

.apl-header-row {
    display: grid;
    grid-template-columns: auto minmax(210px, auto) minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    min-height: 76px;
}

.apl-brand,
.apl-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    color: var(--apl-ink);
    text-decoration: none;
}

.apl-brand:hover,
.apl-footer-brand:hover {
    color: var(--apl-ink);
}

.apl-brand-sign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #1f2d29;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: inset 0 -4px 0 rgba(47, 138, 95, 0.35);
}

.apl-brand-name {
    display: block;
    max-width: 260px;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.08;
}

.apl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.apl-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #4e5f58;
    font-size: 13px;
    font-weight: 800;
}

.apl-nav a:hover {
    border-color: var(--apl-line);
    background: #ffffff;
    color: var(--apl-green);
    text-decoration: none;
}

.apl-btn-menu,
.apl-btn-search,
.apl-btn-close,
.apl-login-btns > * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--apl-green);
    box-shadow: none;
    cursor: pointer;
}

.apl-btn-menu,
.apl-btn-search {
    display: none;
}

.apl-login-btns {
    display: flex;
    gap: 8px;
    align-items: center;
}

.apl-login-btns .apl-icon-left {
    width: auto;
    padding: 0 12px;
    gap: 6px;
    text-decoration: none;
}

.apl-login-box {
    position: fixed;
    top: 76px;
    right: max(16px, calc((100vw - 1230px) / 2));
    z-index: 10020;
    display: none;
    width: min(330px, calc(100vw - 32px));
    padding: 22px;
    border: 1px solid var(--apl-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(22, 32, 28, 0.22);
}

.apl-login-overlay {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: none;
    background: rgba(22, 33, 29, 0.38);
}

.apl-login-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: var(--apl-muted);
    cursor: pointer;
}

.apl-login-close:hover {
    background: var(--apl-green-2);
    color: var(--apl-green);
}

.apl-login-title {
    margin: 0 38px 14px 0;
    color: var(--apl-ink);
    font-size: 20px;
    font-weight: 900;
}

.apl-login-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--apl-green-2);
    color: var(--apl-green);
    font-size: 22px;
}

.apl-login-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apl-login-input {
    margin-bottom: 10px;
}

.apl-login-input input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: var(--apl-paper);
    color: var(--apl-ink);
    font-size: 14px;
}

.apl-login-check label {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 4px 0 14px;
    color: var(--apl-muted);
    font-size: 13px;
}

.apl-login-btn button {
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: var(--apl-green);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.apl-login-btm {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 14px;
    color: var(--apl-muted);
    font-size: 13px;
}

.apl-login-btm a,
.apl-login-menu a {
    color: var(--apl-green);
    font-weight: 800;
}

.apl-login-menu {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.apl-login-menu a {
    display: flex;
    gap: 8px;
    align-items: center;
}

.apl-login-soc-title {
    margin-top: 14px;
    color: var(--apl-soft);
    font-size: 12px;
}

.apl-login-soc-btns {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.apl-login-soc-btns img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

.apl-login-box input[type="hidden"] {
    display: none;
}

.apl-search-wrap {
    padding: 0 0 16px;
}

.apl-search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    width: min(740px, 100%);
    margin: 0 auto;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(36, 51, 43, 0.08);
    overflow: hidden;
}

.apl-search-box input,
.apl-search-box input:focus {
    width: 100%;
    height: 50px;
    padding: 0 17px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--apl-ink);
    box-shadow: none;
    font-size: 15px;
}

.apl-search-box input::placeholder {
    color: var(--apl-soft);
}

.apl-search-box button {
    width: 54px;
    height: 50px !important;
    padding: 0 !important;
    border: 0;
    border-left: 1px solid var(--apl-line);
    border-radius: 0 !important;
    background: var(--apl-green) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.apl-main {
    padding: 26px 0 0;
}

.apl-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 255px;
    gap: 20px;
    align-items: start;
}

.apl-content {
    min-width: 0;
}

.apl-sidebar {
    display: grid;
    gap: 14px;
}

.apl-box {
    padding: 16px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 32px rgba(36, 51, 43, 0.08);
}

.apl-box-title {
    margin-bottom: 12px;
    color: #1f2d29;
    font-size: 16px;
    font-weight: 900;
}

.apl-menu-list,
.apl-check-list {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.apl-menu-list a {
    display: flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 5px;
    color: #54645f;
    font-size: 13px;
    font-weight: 800;
}

.apl-menu-list a:hover {
    background: var(--apl-green-2);
    color: var(--apl-green);
    text-decoration: none;
}

.apl-check-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    color: var(--apl-muted);
    font-size: 13px;
    line-height: 1.45;
}

.apl-check-list .fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--apl-green-2);
    color: var(--apl-green);
    font-size: 12px;
    line-height: 24px;
}

.apl-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 18px;
}

.apl-hero-copy,
.apl-hero-panel,
.apl-text-row > div,
.apl-proof-band > div,
.apl-pages,
.apl-static-area,
.apl-full-head,
.apl-finfo,
.apl-fdesc,
.apl-install-box,
.apl-support-note,
.apl-bunnyvpn-banner,
.apl-fdl-box,
.apl-sect {
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--apl-shadow);
}

.apl-hero-copy {
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(47, 138, 95, 0.11), transparent 42%),
        linear-gradient(180deg, #ffffff, #fbfcf8);
}

.apl-label {
    color: var(--apl-green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.apl-hero h1,
.apl-section-head h1,
.apl-section-head h2 {
    margin: 9px 0 0;
    color: var(--apl-ink);
    font-size: 34px;
    line-height: 1.14;
    font-weight: 900;
}

.apl-hero p {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--apl-muted);
    font-size: 15px;
    line-height: 1.7;
}

.apl-hero-panel {
    padding: 22px;
    background:
        linear-gradient(180deg, #24342f, #1d2925);
    color: #ffffff;
}

.apl-hero-status {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.apl-hero-status .fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #a8e7c4;
}

.apl-hero-status b {
    font-size: 18px;
    line-height: 1.2;
}

.apl-hero-panel ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: #dbe8e1;
    font-size: 13px;
    line-height: 1.45;
}

.apl-text-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.apl-text-row > div {
    padding: 18px;
}

.apl-text-row h2 {
    margin: 0 0 8px;
    color: var(--apl-ink);
    font-size: 21px;
    line-height: 1.25;
}

.apl-text-row p {
    margin: 0;
    color: var(--apl-muted);
    font-size: 14px;
    line-height: 1.65;
}

.apl-section {
    margin-bottom: 24px;
}

.apl-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--apl-line);
}

.apl-section-head h1,
.apl-section-head h2 {
    font-size: 27px;
}

.apl-section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--apl-green);
    font-size: 13px;
    font-weight: 900;
}

.apl-section-link:hover {
    background: var(--apl-green);
    color: #ffffff;
    text-decoration: none;
}

.apl-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin: 0;
}

.apl-card {
    float: none;
    width: auto;
    padding: 0;
    margin: 0;
}

.apl-card-link {
    position: relative;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 15px;
    align-items: center;
    min-height: 126px;
    padding: 15px 17px 15px 18px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: linear-gradient(180deg, #ffffff, var(--apl-card-2));
    box-shadow: 0 12px 28px rgba(36, 51, 43, 0.08);
    overflow: hidden;
}

.apl-card-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--apl-green), var(--apl-blue));
}

.apl-card-link:hover {
    border-color: #a8c7b5;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(36, 51, 43, 0.13);
    text-decoration: none;
}

.apl-card-icon {
    align-self: start;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    padding: 8px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, var(--apl-paper-2));
    box-shadow: inset 0 0 0 1px var(--apl-line);
}

.apl-card-icon img,
.apl-side-icon img,
.apl-app-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apl-card-icon img,
.apl-side-icon img,
.apl-app-mark img {
    object-fit: contain;
    border-radius: 12px;
}

.apl-card-kind {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--apl-blue);
    font-size: 11px;
    font-weight: 900;
}

.apl-card-main h3 {
    max-height: 46px;
    margin: 0 0 9px;
    overflow: hidden;
    color: var(--apl-ink);
    font-size: 18px;
    line-height: 1.22;
    font-weight: 900;
}

.apl-card-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.apl-card-facts > span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid var(--apl-line);
    border-radius: 5px;
    background: #f8faf7;
    color: #53615d;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.apl-card-facts > span:nth-lapl-child(3) {
    border-color: #bfdbc8;
    background: var(--apl-green-2);
    color: var(--apl-green);
}

.apl-card-facts > span:nth-lapl-child(2) {
    border-color: #d9c5a7;
    background: var(--apl-amber-2);
    color: var(--apl-amber);
}

.apl-card-facts > span:nth-lapl-child(1) {
    border-color: #bed2e6;
    background: var(--apl-blue-2);
    color: var(--apl-blue);
}

.apl-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 34px;
    margin-top: 11px;
    padding: 0 12px;
    border: 1px solid #bfdbc8;
    border-radius: 6px;
    background: var(--apl-green-2);
    color: var(--apl-green);
    font-size: 12px;
    font-weight: 900;
}

.apl-short-bottom {
    display: none;
}

.apl-proof-band,
.apl-support-note {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 6px 0 24px;
}

.apl-support-note {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apl-proof-band > div,
.apl-support-note > div {
    min-height: 82px;
    padding: 16px;
}

.apl-proof-band b,
.apl-support-note b {
    display: block;
    margin-bottom: 7px;
    color: var(--apl-ink);
    font-size: 16px;
}

.apl-proof-band span,
.apl-support-note span {
    display: block;
    color: var(--apl-muted);
    font-size: 13px;
    line-height: 1.45;
}

.apl-side-link {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 50px;
    padding: 8px 0;
    border-bottom: 1px solid var(--apl-line);
}

.apl-side-link:lapl-child {
    border-bottom: 0;
}

.apl-side-icon {
    width: 38px;
    height: 38px;
    padding: 4px;
    border-radius: 9px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px var(--apl-line);
}

.apl-side-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #4f5f59;
    font-size: 13px;
    font-weight: 900;
}

.apl-mini-comment + .apl-mini-comment {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--apl-line);
}

.apl-mini-comment-title {
    display: block;
    color: var(--apl-green);
    font-size: 13px;
    font-weight: 900;
}

.apl-mini-comment-text {
    margin-top: 6px;
    color: var(--apl-muted);
    font-size: 12px;
    line-height: 1.5;
}

.apl-mini-comment-meta {
    margin-top: 6px;
    color: var(--apl-soft);
    font-size: 11px;
}

.apl-pages,
.apl-static-area {
    padding: 24px;
}

.apl-full {
    display: grid;
    gap: 18px;
}

.apl-full-head {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 145px;
    gap: 18px;
    align-items: center;
    padding: 22px;
}

.apl-app-mark {
    position: relative;
    width: 110px;
    height: 110px;
    padding: 10px;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px var(--apl-line);
}

.apl-short-label {
    position: absolute;
    right: -33px;
    top: 8px;
    width: 92px;
    height: 20px;
    line-height: 20px;
    transform: rotate(38deg);
    background: var(--apl-green);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.apl-short-upd {
    top: 32px;
    background: var(--apl-blue);
}

.apl-short-new {
    top: 56px;
    background: var(--apl-amber);
}

.apl-full-title h1 {
    margin: 8px 0 8px;
    color: var(--apl-ink);
    font-size: 34px;
    line-height: 1.13;
    font-weight: 900;
}

.apl-full-title p {
    margin: 0;
    color: var(--apl-muted);
    font-size: 14px;
    line-height: 1.6;
}

.apl-frate {
    display: grid;
    gap: 10px;
    justify-items: stretch;
}

.apl-ffav a,
.apl-ffav span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    background: var(--apl-green-2);
    color: var(--apl-green);
    font-size: 12px;
    font-weight: 900;
}

.apl-finfo {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 16px;
    margin: 0;
    list-style: none;
}

.apl-finfo__item {
    min-height: 65px;
    padding: 11px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: var(--apl-card-2);
}

.apl-finfo__item div {
    color: var(--apl-soft);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.apl-finfo__item span {
    display: block;
    margin-top: 6px;
    color: var(--apl-ink);
    font-weight: 900;
    line-height: 1.35;
    word-break: break-word;
}

.apl-finfo__item a {
    color: var(--apl-green);
}

.apl-finfo__item--wide {
    grid-column: span 2;
}

.apl-fdesc {
    padding: 22px;
}

.apl-fdesc,
.apl-full-text {
    color: #43514c;
    font-size: 15px;
    line-height: 1.75;
}

.apl-full-text img:not(.emoji) {
    max-width: 100%;
    margin: 10px 0;
}

.apl-full-text a {
    color: var(--apl-green);
    text-decoration: underline;
}

.apl-full-text h2,
.apl-full-text h3,
.apl-full-text h4,
.apl-full-text h5 {
    margin: 12px 0 8px;
    color: var(--apl-ink);
    font-size: 23px;
    line-height: 1.25;
}

.apl-install-box {
    padding: 20px;
    border-left: 5px solid var(--apl-green);
    background: #f4fbf6;
}

.apl-install-box__title {
    margin-bottom: 10px;
    color: var(--apl-ink);
    font-size: 20px;
    font-weight: 900;
}

.apl-install-box__steps {
    margin: 0;
    padding-left: 20px;
}

.apl-install-box__note {
    margin-top: 10px;
    color: var(--apl-muted);
    font-size: 13px;
}

.apl-bunnyvpn-banner,
.apl-fdl-box {
    overflow: hidden;
}

.apl-bunnyvpn-banner__image,
.apl-bunnyvpn-banner__image img {
    display: block;
    width: 100%;
}

.apl-bunnyvpn-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px;
}

.apl-bunnyvpn-banner__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    background: #263631;
    color: #ffffff;
    font-weight: 900;
}

.apl-bunnyvpn-banner__link:hover {
    color: #ffffff;
    background: var(--apl-green);
    text-decoration: none;
}

.apl-fdl-header {
    padding: 17px;
    border-bottom: 1px solid var(--apl-line);
}

.apl-fdl-title {
    color: var(--apl-ink);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 900;
}

.apl-fdl-btn {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: var(--apl-green);
    color: #ffffff;
}

.apl-fdl-btn:hover {
    background: #237448;
    color: #ffffff;
    text-decoration: none;
}

.apl-fdl-btn-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(255,255,255,0.14);
}

.apl-fdl-btn-icon img {
    width: 24px;
}

.apl-fdl-btn-title div {
    font-size: 20px;
    font-weight: 900;
}

.apl-download-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.apl-download-popup[hidden] {
    display: none !important;
}

.apl-download-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 35, 31, 0.72);
    backdrop-filter: blur(5px);
}

.apl-download-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 22px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(20, 34, 29, 0.28);
}

.apl-download-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0 !important;
    border: 1px solid var(--apl-line) !important;
    border-radius: 6px !important;
    background: var(--apl-paper-2) !important;
    color: var(--apl-ink) !important;
}

.apl-download-popup__label {
    color: var(--apl-green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.apl-download-popup__title {
    margin-top: 8px;
    padding-right: 42px;
    color: var(--apl-ink);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.apl-download-popup__ad-image img {
    display: block;
    width: 100%;
    margin-top: 16px;
    border-radius: 6px;
}

.apl-download-popup__ad-text,
.apl-download-popup__timer {
    margin-top: 12px;
    color: var(--apl-muted);
    font-size: 14px;
    line-height: 1.55;
}

.apl-download-popup__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 50px;
    margin-top: 16px;
    border-radius: 6px;
    background: var(--apl-green);
    color: #ffffff;
    font-weight: 900;
}

.apl-download-popup__action:hover {
    color: #ffffff;
    text-decoration: none;
}

.apl-download-popup__action.apl-is-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.apl-sect {
    padding: 18px;
}

.apl-sect-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--apl-line);
}

.apl-sect-title {
    color: var(--apl-ink);
    font-size: 24px;
    font-weight: 900;
}

.apl-add-comm-btn,
.apl-sect-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--apl-green);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.apl-footer {
    margin-top: 38px;
    padding: 24px 0;
    border-top: 1px solid var(--apl-line);
    background: #ffffff;
}

.apl-footer-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.apl-footer-text,
.apl-footer-links a {
    color: var(--apl-muted);
    font-size: 13px;
    line-height: 1.55;
}

.apl-footer-links {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.apl-close-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    background: rgba(24, 35, 31, 0.58);
}

.apl-side-panel {
    position: fixed;
    left: -316px;
    top: 0;
    bottom: 0;
    z-index: 9999;
    width: 306px;
    max-width: calc(100vw - 64px);
    padding: 70px 18px 24px;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: 18px 0 40px rgba(20, 34, 29, 0.18);
    transition: left .25s;
}

.apl-side-panel.apl-active {
    left: 0;
}

.apl-side-panel .apl-nav {
    display: grid;
    justify-content: stretch;
    margin-bottom: 16px;
}

.apl-side-panel .apl-nav a {
    justify-content: flex-start;
    border-bottom: 1px solid var(--apl-line);
    border-radius: 0;
}

.apl-side-panel .apl-box {
    margin-bottom: 14px;
    box-shadow: none;
}

.apl-btn-close {
    position: fixed;
    left: 254px;
    top: 16px;
    z-index: 10000;
    display: none;
}

.apl-btn-close.apl-active {
    display: inline-flex;
}

body.apl-opened-menu,
body.apl-download-popup-open {
    overflow: hidden;
}

.apl-hidden,
#dofullsearch {
    display: none;
}

.apl-nowrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.apl-fx-row {
    display: flex;
    flex-wrap: wrap;
}

.apl-fx-col {
    display: flex;
    flex-direction: column;
}

.apl-fx-middle {
    align-items: center;
}

.apl-fx-center {
    justify-content: center;
}

.apl-fx-1 {
    min-width: 0;
    flex: 1 1 0;
}

.apl-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.apl-gallery-shown {
    margin-bottom: 15px;
}

#gotop {
    border-radius: 6px;
    background: #253631;
    color: #ffffff;
}

@media screen and (max-width: 1220px) {
    .apl-header {
        position: relative;
    }

    .apl-sticky,
    .apl-sticky-hide {
        top: auto !important;
    }
}

@media screen and (max-width: 1130px) {
    .apl-layout {
        grid-template-columns: minmax(0, 1fr) 255px;
    }

    .apl-sidebar-left {
        display: none;
    }
}

@media screen and (max-width: 950px) {
    .apl-header-row {
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        gap: 10px;
    }

    .apl-btn-menu,
    .apl-btn-search {
        display: inline-flex;
    }

    .apl-nav.apl-to-mob {
        display: none;
    }

    .apl-search-wrap {
        display: none;
        padding-bottom: 14px;
    }

    .apl-header.apl-is-active .apl-search-wrap {
        display: block;
    }

    .apl-layout {
        display: block;
    }

    .apl-sidebar-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 20px;
    }

    .apl-hero {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 760px) {
    .apl-shell {
        width: min(100% - 22px, 1230px);
    }

    .apl-header-row {
        min-height: 68px;
    }

    .apl-brand-sign {
        width: 40px;
        height: 40px;
    }

    .apl-brand-name {
        max-width: 170px;
        font-size: 20px;
    }

    .apl-hero-copy {
        padding: 22px;
    }

    .apl-hero h1 {
        font-size: 28px;
    }

    .apl-card-grid,
    .apl-card-grid-tight,
    .apl-text-row,
    .apl-proof-band,
    .apl-support-note,
    .apl-sidebar-right,
    .apl-footer-row {
        grid-template-columns: 1fr;
    }

    .apl-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .apl-section-head h1,
    .apl-section-head h2 {
        font-size: 24px;
    }

    .apl-full-head {
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .apl-app-mark {
        width: 86px;
        height: 86px;
        border-radius: 20px;
    }

    .apl-frate {
        grid-column: 1 / -1;
    }

    .apl-finfo {
        grid-template-columns: 1fr 1fr;
    }

    .apl-finfo__item--wide {
        grid-column: span 2;
    }

    .apl-bunnyvpn-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 470px) {
    .apl-shell {
        width: min(100% - 18px, 1230px);
    }

    .apl-brand-name {
        max-width: 134px;
        font-size: 18px;
    }

    .apl-btn-menu,
    .apl-btn-search,
    .apl-login-btns > * {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .apl-hero-copy,
    .apl-hero-panel,
    .apl-full-head,
    .apl-fdesc,
    .apl-install-box,
    .apl-sect {
        padding: 17px;
    }

    .apl-hero h1,
    .apl-full-title h1 {
        font-size: 25px;
    }

    .apl-card-link {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        min-height: 132px;
        padding: 13px;
    }

    .apl-card-icon {
        width: 58px;
        height: 58px;
        padding: 6px;
        border-radius: 14px;
    }

    .apl-card-action {
        min-width: 0;
        margin-top: 10px;
    }

    .apl-finfo {
        grid-template-columns: 1fr;
    }

    .apl-finfo__item--wide {
        grid-column: auto;
    }
}

/* apk-polza: service index skin */
:root {
    --apl-bg: #edf3f7;
    --apl-paper: #ffffff;
    --apl-paper-2: #f7fafc;
    --apl-ink: #1b2430;
    --apl-muted: #667383;
    --apl-soft: #96a3af;
    --apl-line: #d8e1e8;
    --apl-line-strong: #b9c8d4;
    --apl-blue: #226e9f;
    --apl-green: #2f875c;
    --apl-red: #b95049;
    --apl-yellow: #d7aa3d;
    --apl-shadow: 0 16px 42px rgba(40, 63, 82, 0.12);
}

html,
body {
    min-width: 320px;
}

body {
    margin: 0;
    background:
        linear-gradient(90deg, rgba(34, 110, 159, 0.08) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #f7fafc 0, var(--apl-bg) 360px, #f2f6f8 100%);
    background-size: 72px 100%, auto;
    color: var(--apl-ink);
    font-family: "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.apl-page {
    min-height: 100vh;
}

.apl-shell {
    width: min(100% - 36px, 1230px);
    margin: 0 auto;
}

.apl-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--apl-line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.apl-header-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    align-items: center;
    min-height: 72px;
    gap: 14px;
}

.apl-brand,
.apl-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--apl-ink);
    text-decoration: none;
}

.apl-brand-sign {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid var(--apl-ink);
    border-radius: 6px;
    background: var(--apl-yellow);
    color: var(--apl-ink);
    font-size: 11px;
    font-weight: 950;
}

.apl-brand-name {
    color: var(--apl-ink);
    font-size: 25px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
}

.apl-nav {
    display: flex;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.apl-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 11px;
    border-radius: 6px;
    color: var(--apl-muted);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.apl-nav a:hover {
    background: var(--apl-paper-2);
    color: var(--apl-blue);
}

.apl-btn-menu,
.apl-btn-search,
.apl-login-btns > *,
.apl-btn-close,
.apl-login-close,
.apl-download-popup__close {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--apl-line-strong);
    border-radius: 6px;
    background: var(--apl-paper);
    color: var(--apl-ink);
    cursor: pointer;
    text-decoration: none;
}

.apl-btn-menu {
    display: none;
}

.apl-btn-search:hover,
.apl-btn-menu:hover,
.apl-login-btns > *:hover {
    border-color: var(--apl-blue);
    color: var(--apl-blue);
}

.apl-login-btns {
    display: flex;
    gap: 8px;
}

.apl-btn-close {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10010;
}

.apl-btn-close.apl-active {
    display: inline-grid;
}

.apl-search-wrap {
    display: none;
    padding: 0 0 16px;
}

.apl-header.apl-is-active .apl-search-wrap {
    display: block;
}

.apl-search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    overflow: hidden;
    max-width: 760px;
    margin-left: auto;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: var(--apl-paper);
    box-shadow: var(--apl-shadow);
}

.apl-search-box input,
.apl-search-box input:focus {
    min-width: 0;
    height: 54px;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--apl-ink);
    font-size: 15px;
}

.apl-search-box input::placeholder {
    color: var(--apl-soft);
}

.apl-search-box button {
    border: 0;
    background: var(--apl-blue) !important;
    color: #fff;
    cursor: pointer;
}

.apl-main {
    display: grid;
    grid-template-columns: 225px minmax(0, 1fr) 290px;
    gap: 22px;
    align-items: start;
    padding: 26px 0 44px;
}

.apl-content {
    min-width: 0;
}

.apl-catalog-strip,
.apl-board {
    position: sticky;
    top: 94px;
    align-self: start;
}

.apl-catalog-strip,
.apl-board > div,
.apl-hero,
.apl-text-row > div,
.apl-proof-band > div,
.apl-pages,
.apl-static-area,
.apl-search-page,
.apl-full-head,
.apl-full-text,
.apl-install-box,
.apl-fdl-box,
.apl-bunnyvpn-banner,
.apl-support-note,
.apl-sect {
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: var(--apl-paper);
    box-shadow: var(--apl-shadow);
}

.apl-catalog-strip {
    padding: 14px;
}

.apl-box-title,
.apl-label {
    color: var(--apl-blue);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.apl-box-title {
    margin: 0 0 12px;
}

.apl-menu-list,
.apl-check-list,
.apl-hero-panel ul,
.apl-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.apl-menu-list {
    display: grid;
    gap: 7px;
}

.apl-menu-list a {
    display: flex;
    min-height: 36px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: var(--apl-paper-2);
    color: var(--apl-ink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.apl-menu-list a:hover {
    border-color: var(--apl-blue);
    color: var(--apl-blue);
}

.apl-board {
    display: grid;
    gap: 14px;
}

.apl-board > div {
    padding: 16px;
}

.apl-check-list {
    display: grid;
    gap: 11px;
}

.apl-check-list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    color: var(--apl-muted);
    font-size: 13px;
    line-height: 1.45;
}

.apl-check-list .fa {
    color: var(--apl-green);
    line-height: 1.45;
}

.apl-side-body {
    display: grid;
    gap: 9px;
}

.apl-side-link {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: var(--apl-ink);
    text-decoration: none;
}

.apl-side-icon {
    display: block;
    overflow: hidden;
    width: 38px;
    height: 38px;
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    background: var(--apl-paper-2);
}

.apl-side-icon img,
.apl-card-icon img,
.apl-result-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apl-side-title {
    min-width: 0;
    color: var(--apl-ink);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
}

.apl-mini-comment {
    border-top: 1px solid var(--apl-line);
    padding-top: 10px;
}

.apl-mini-comment:first-child {
    border-top: 0;
    padding-top: 0;
}

.apl-mini-comment-title {
    display: block;
    color: var(--apl-ink);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.apl-mini-comment-text {
    margin-top: 6px;
    color: var(--apl-muted);
    font-size: 12px;
    line-height: 1.45;
}

.apl-mini-comment-meta {
    margin-top: 6px;
    color: var(--apl-soft);
    font-size: 11px;
}

.apl-board-support p {
    margin: 0;
    color: var(--apl-muted);
    font-size: 13px;
    line-height: 1.55;
}

.apl-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 0;
    overflow: hidden;
    margin-bottom: 18px;
    border-left: 6px solid var(--apl-blue);
}

.apl-hero-copy {
    padding: 34px 36px;
}

.apl-hero h1 {
    max-width: 790px;
    margin: 10px 0 0;
    color: var(--apl-ink);
    font-size: 42px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: 0;
}

.apl-hero p {
    max-width: 760px;
    margin: 17px 0 0;
    color: var(--apl-muted);
    font-size: 16px;
    line-height: 1.7;
}

.apl-hero-panel {
    padding: 28px 24px;
    border-left: 1px solid var(--apl-line);
    background: var(--apl-paper-2);
}

.apl-hero-status {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    color: var(--apl-ink);
    font-size: 17px;
    font-weight: 950;
}

.apl-hero-status .fa {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 6px;
    background: var(--apl-green);
    color: #fff;
}

.apl-hero-panel li {
    padding: 10px 0;
    border-top: 1px solid var(--apl-line);
    color: var(--apl-muted);
    font-size: 13px;
    font-weight: 800;
}

.apl-text-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.apl-text-row > div {
    padding: 18px 20px;
    border-top: 4px solid var(--apl-yellow);
}

.apl-text-row > div:nth-child(2) {
    border-top-color: var(--apl-green);
}

.apl-text-row h2 {
    margin: 0;
    color: var(--apl-ink);
    font-size: 20px;
    font-weight: 950;
    line-height: 1.2;
}

.apl-text-row p {
    margin: 10px 0 0;
    color: var(--apl-muted);
    font-size: 14px;
    line-height: 1.65;
}

.apl-section {
    margin-top: 24px;
}

.apl-section:first-child,
.apl-section-new {
    margin-top: 0;
}

.apl-section-head,
.apl-sect-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--apl-line);
}

.apl-section-head h1,
.apl-section-head h2,
.apl-sect-title {
    margin: 5px 0 0;
    color: var(--apl-ink);
    font-size: 30px;
    font-weight: 950;
    line-height: 1.15;
}

.apl-section-link,
.apl-card-action,
.apl-fdl-btn,
.apl-bunnyvpn-banner__link,
.apl-add-comm-btn,
.apl-login-btn,
.apl-ac-submit {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid var(--apl-line-strong);
    border-radius: 6px;
    background: var(--apl-paper);
    color: var(--apl-ink);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
}

.apl-section-link:hover,
.apl-card-link:hover .apl-card-action {
    border-color: var(--apl-green);
    background: var(--apl-green);
    color: #fff;
}

.apl-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.apl-section-popular .apl-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apl-card {
    min-width: 0;
}

.apl-card-link,
.apl-result-link {
    display: grid;
    grid-template-columns: 44px 64px minmax(0, 1fr) 116px;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 14px;
    border: 1px solid var(--apl-line);
    border-left: 4px solid var(--apl-green);
    border-radius: 6px;
    background: var(--apl-paper);
    color: var(--apl-ink);
    text-decoration: none;
    box-shadow: none;
}

.apl-card:nth-child(3n + 2) .apl-card-link {
    border-left-color: var(--apl-blue);
}

.apl-card:nth-child(3n + 3) .apl-card-link {
    border-left-color: var(--apl-red);
}

.apl-card-link:hover,
.apl-result-link:hover {
    border-color: var(--apl-blue);
    box-shadow: var(--apl-shadow);
}

.apl-card-index {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--apl-paper-2);
    color: var(--apl-blue);
    font-size: 11px;
    font-weight: 950;
}

.apl-card-icon,
.apl-result-icon {
    display: block;
    overflow: hidden;
    width: 64px;
    height: 64px;
    border: 1px solid var(--apl-line);
    border-radius: 8px;
    background: var(--apl-paper-2);
}

.apl-card-main {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.apl-card-main h3,
.apl-result-text h3 {
    min-width: 0;
    margin: 0;
    color: var(--apl-ink);
    font-size: 19px;
    font-weight: 950;
    line-height: 1.2;
}

.apl-card-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.apl-card-facts span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 9px;
    border: 1px solid var(--apl-line);
    border-radius: 13px;
    background: var(--apl-paper-2);
    color: var(--apl-muted);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.apl-card-action {
    justify-self: end;
    width: 116px;
    background: var(--apl-ink);
    color: #fff;
}

.apl-proof-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 24px;
}

.apl-proof-band > div {
    display: grid;
    gap: 5px;
    padding: 13px 14px;
    border-left: 3px solid var(--apl-yellow);
}

.apl-proof-band > div:nth-child(2) {
    border-left-color: var(--apl-blue);
}

.apl-proof-band > div:nth-child(3) {
    border-left-color: var(--apl-green);
}

.apl-proof-band > div:nth-child(4) {
    border-left-color: var(--apl-red);
}

.apl-proof-band b {
    color: var(--apl-ink);
    font-size: 15px;
    font-weight: 950;
}

.apl-proof-band span {
    color: var(--apl-muted);
    font-size: 12px;
    line-height: 1.35;
}

.apl-result-row {
    margin-bottom: 10px;
}

.apl-result-link {
    grid-template-columns: 62px minmax(0, 1fr) 116px;
}

.apl-result-text {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.apl-footer {
    border-top: 1px solid var(--apl-line);
    background: #ffffff;
}

.apl-footer-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 24px 0;
}

.apl-footer-text {
    color: var(--apl-muted);
    font-size: 13px;
    line-height: 1.5;
}

.apl-footer-links a {
    color: var(--apl-blue);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.apl-full-head,
.apl-full-text,
.apl-install-box,
.apl-fdl-box,
.apl-bunnyvpn-banner,
.apl-support-note,
.apl-pages,
.apl-static-area,
.apl-search-page {
    padding: 20px;
}

.apl-full-head {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.apl-app-mark,
.apl-full-head .apl-img-fit {
    overflow: hidden;
    width: 112px;
    height: 112px;
    border: 1px solid var(--apl-line);
    border-radius: 10px;
    background: var(--apl-paper-2);
}

.apl-full-title h1 {
    margin: 0;
    color: var(--apl-ink);
    font-size: 32px;
    font-weight: 950;
    line-height: 1.15;
}

.apl-finfo {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.apl-finfo__item {
    border: 1px solid var(--apl-line);
    border-radius: 6px;
    padding: 11px;
    background: var(--apl-paper-2);
}

.apl-finfo__item span,
.apl-finfo__item small {
    display: block;
    color: var(--apl-muted);
    font-size: 12px;
}

.apl-finfo__item b {
    display: block;
    margin-top: 4px;
    color: var(--apl-ink);
    font-size: 14px;
}

.apl-fdesc,
.apl-full-text {
    color: var(--apl-ink);
    font-size: 15px;
    line-height: 1.7;
}

.apl-fdl-btn {
    width: 100%;
    min-height: 52px;
    background: var(--apl-green);
    color: #fff;
}

.apl-download-popup {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.apl-download-popup__backdrop,
.apl-login-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 36, 48, 0.55);
}

.apl-download-popup__dialog,
.apl-login-box {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    padding: 22px;
    border-radius: 6px;
    background: #fff;
    color: var(--apl-ink);
    box-shadow: 0 24px 70px rgba(27, 36, 48, 0.28);
}

.apl-hidden,
.apl-gallery-hidden,
#dofullsearch {
    display: none !important;
}

.apl-nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.apl-opened-menu,
body.apl-download-popup-open {
    overflow: hidden;
}

.apl-side-panel {
    background: #fff;
    color: var(--apl-ink);
}

.apl-side-panel .apl-nav {
    display: grid;
    justify-content: stretch;
    gap: 0;
}

.apl-side-panel .apl-nav a {
    justify-content: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid var(--apl-line);
    color: var(--apl-ink);
}

.apl-close-overlay.apl-active {
    background: rgba(27, 36, 48, 0.48);
}

@media screen and (max-width: 1180px) {
    .apl-main {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .apl-board {
        grid-column: 1 / -1;
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 900px) {
    .apl-shell {
        width: min(100% - 28px, 1230px);
    }

    .apl-header-row {
        grid-template-columns: 42px auto minmax(0, 1fr) auto;
        gap: 10px;
    }

    .apl-btn-menu,
    .apl-btn-search {
        display: inline-grid;
    }

    .apl-nav.apl-to-mob,
    .apl-search-wrap {
        display: none;
    }

    .apl-login-btns {
        justify-self: end;
    }

    .apl-login-btns > * {
        width: 38px;
        height: 38px;
    }

    .apl-main {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 18px;
    }

    .apl-catalog-strip {
        position: static;
        order: 1;
    }

    .apl-content {
        order: 2;
    }

    .apl-board {
        order: 3;
        grid-template-columns: 1fr;
    }

    .apl-menu-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .apl-menu-list a {
        justify-content: center;
        text-align: center;
    }

    .apl-hero,
    .apl-text-row,
    .apl-proof-band {
        grid-template-columns: 1fr;
    }

    .apl-hero-panel {
        border-top: 1px solid var(--apl-line);
        border-left: 0;
    }

    .apl-hero h1 {
        font-size: 34px;
    }

    .apl-section-popular .apl-card-grid {
        grid-template-columns: 1fr;
    }

    .apl-card-link {
        grid-template-columns: 36px 58px minmax(0, 1fr);
    }

    .apl-card-action {
        grid-column: 2 / -1;
        justify-self: start;
        width: auto;
        padding: 0 16px;
    }

    .apl-full-head {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .apl-app-mark,
    .apl-full-head .apl-img-fit {
        width: 88px;
        height: 88px;
    }

    .apl-finfo {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 520px) {
    .apl-shell {
        width: min(100% - 18px, 1230px);
    }

    .apl-header-row {
        min-height: 64px;
    }

    .apl-brand-sign {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .apl-brand-name {
        max-width: 164px;
        font-size: 21px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .apl-catalog-strip,
    .apl-hero-copy,
    .apl-hero-panel,
    .apl-board > div,
    .apl-text-row > div,
    .apl-pages,
    .apl-static-area,
    .apl-search-page {
        padding: 16px;
    }

    .apl-hero h1 {
        font-size: 29px;
    }

    .apl-hero p {
        font-size: 15px;
    }

    .apl-section-head,
    .apl-sect-header,
    .apl-footer-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .apl-section-head h1,
    .apl-section-head h2,
    .apl-sect-title {
        font-size: 24px;
    }

    .apl-card-link {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px;
        padding: 13px;
    }

    .apl-card-index {
        display: none;
    }

    .apl-card-icon {
        width: 52px;
        height: 52px;
    }

    .apl-card-main h3 {
        font-size: 18px;
    }

    .apl-card-action {
        grid-column: 1 / -1;
        width: 100%;
    }

    .apl-menu-list {
        gap: 6px;
    }

    .apl-menu-list a {
        min-height: 38px;
        padding: 0 8px;
        font-size: 12px;
    }

    .apl-proof-band {
        gap: 8px;
    }

    .apl-finfo {
        grid-template-columns: 1fr;
    }
}
