:root {
	--apkshelf-ink: #18202f;
	--apkshelf-muted: #68758a;
	--apkshelf-soft: #f5f8fc;
	--apkshelf-card: #ffffff;
	--apkshelf-line: #dfe7f1;
	--apkshelf-green: #16a765;
	--apkshelf-green-dark: #0b7f4b;
	--apkshelf-cyan: #19a7c9;
	--apkshelf-orange: #ff7a3d;
	--apkshelf-shadow: 0 14px 40px rgba(30, 46, 71, .08);
}
* {
	box-sizing: border-box;
}

html,
body {
	background: #f4f7fb;
	color: var(--apkshelf-ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	letter-spacing: 0;
}

a {
	color: inherit;
}

a:hover {
	color: var(--apkshelf-green);
}

.apkshelf-row {
	display: flex;
}

.apkshelf-col {
	display: flex;
	flex-direction: column;
}

.apkshelf-middle {
	align-items: center;
}

.apkshelf-center {
	justify-content: center;
}

.apkshelf-grow {
	flex: 1 1 auto;
	min-width: 0;
}

.apkshelf-last {
	order: 2;
}

.apkshelf-clear::after {
	content: "";
	display: block;
	clear: both;
}

.apkshelf-shell {
	min-height: 100vh;
	background:
		linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,247,251,.98) 360px),
		radial-gradient(circle at 12% 0, rgba(25,167,201,.12), transparent 340px),
		radial-gradient(circle at 88% 8%, rgba(22,167,101,.12), transparent 330px);
}

.apkshelf-frame {
	width: min(1260px, calc(100% - 28px));
	margin: 0 auto;
}

.apkshelf-topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,.94);
	border-bottom: 1px solid rgba(223,231,241,.9);
	box-shadow: 0 8px 24px rgba(30,46,71,.06);
	backdrop-filter: blur(14px);
}

.apkshelf-topbar.apkshelf-sticky-hide {
	transform: translateY(-100%);
}

.apkshelf-topbar.apkshelf-sticky {
	transform: translateY(0);
}

.apkshelf-topbar-inner {
	min-height: 72px;
	gap: 18px;
}

.apkshelf-brand {
	display: inline-flex;
	align-items: center;
	min-width: 176px;
	gap: 10px;
	text-decoration: none;
}

.apkshelf-brand img,
.apkshelf-footer-brand img {
	max-width: 42px;
	max-height: 42px;
	object-fit: contain;
}

.apkshelf-brand::after {
	content: "Androfinoa";
	color: #142033;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}

.apkshelf-search-wrap {
	max-width: 520px;
	margin-left: auto;
}

.apkshelf-search-box {
	display: flex;
	align-items: center;
	min-height: 46px;
	background: #f8fafd;
	border: 1px solid var(--apkshelf-line);
	border-radius: 8px;
	overflow: hidden;
}

.apkshelf-search-box input {
	width: 100%;
	height: 46px;
	padding: 0 16px;
	background: transparent;
	border: 0;
	color: var(--apkshelf-ink);
	font-size: 14px;
}

.apkshelf-search-box button,
.apkshelf-menu-button,
.apkshelf-search-button,
.apkshelf-drawer-close,
.apkshelf-to-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: var(--apkshelf-green);
	color: #fff;
	cursor: pointer;
}

.apkshelf-menu-button,
.apkshelf-search-button {
	display: none;
}

.apkshelf-stage {
	padding: 18px 0 34px;
}

.apkshelf-primary-nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin: 0 0 18px;
	padding: 8px;
	list-style: none;
	background: #142033;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 8px;
	box-shadow: var(--apkshelf-shadow);
}

.apkshelf-primary-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 8px;
	color: #edf6ff;
	font-weight: 700;
	text-decoration: none;
}

.apkshelf-primary-nav a:hover {
	background: rgba(255,255,255,.08);
	color: #fff;
}

.apkshelf-share-slot {
	display: none !important;
}

.apkshelf-grid {
	align-items: flex-start;
	gap: 18px;
}

.apkshelf-left-rail,
.apkshelf-right-rail {
	flex: 0 0 220px;
}

.apkshelf-content {
	gap: 18px;
}

.apkshelf-rail-card,
.apkshelf-block,
.apkshelf-page-box,
.apkshelf-seo-panel,
.apkshelf-login-box,
.apkshelf-comment,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	background: var(--apkshelf-card);
	border: 1px solid var(--apkshelf-line);
	border-radius: 8px;
	box-shadow: var(--apkshelf-shadow);
}

.apkshelf-rail-card {
	margin-bottom: 14px;
	overflow: hidden;
}

.apkshelf-rail-title {
	padding: 14px 16px;
	background: linear-gradient(90deg, #f3fbf7, #f7fbff);
	border-bottom: 1px solid var(--apkshelf-line);
	color: var(--apkshelf-ink);
	font-size: 14px;
	font-weight: 800;
}

.apkshelf-icon-text {
	display: flex;
	align-items: center;
	gap: 9px;
}

.apkshelf-icon-text .fa {
	color: var(--apkshelf-green);
}

.apkshelf-rail-body {
	padding: 8px;
}

.apkshelf-link-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.apkshelf-link-list a {
	display: flex;
	align-items: center;
	min-height: 34px;
	padding: 0 10px;
	border-radius: 8px;
	color: #354157;
	text-decoration: none;
}

.apkshelf-link-list a:hover {
	background: #eef8f3;
	color: var(--apkshelf-green-dark);
}

.apkshelf-block {
	overflow: hidden;
}

.apkshelf-block-head {
	min-height: 58px;
	padding: 0 18px;
	border-bottom: 1px solid var(--apkshelf-line);
}

.apkshelf-block-title {
	margin: 0;
	color: var(--apkshelf-ink);
	font-size: 19px;
	font-weight: 900;
	line-height: 1.25;
}

.apkshelf-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(22,167,101,.25);
	border-radius: 8px;
	color: var(--apkshelf-green-dark);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}

.apkshelf-block-body {
	padding: 16px;
}

.apkshelf-app-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 14px;
}

.apkshelf-app-tile {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

.apkshelf-app-card {
	height: 100%;
	min-height: 226px;
	padding: 14px;
	background: #fff;
	border: 1px solid #e4ebf4;
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(30,46,71,.06);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.apkshelf-app-card:hover {
	transform: translateY(-3px);
	border-color: rgba(22,167,101,.32);
	box-shadow: 0 16px 34px rgba(22,167,101,.12);
}

.apkshelf-app-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}

.apkshelf-app-tile .apkshelf-icon-box {
	width: 108px;
	height: 108px;
	margin: 0 auto 14px;
}

.apkshelf-app-icon,
.apkshelf-top-icon,
.apkshelf-comment-avatar,
.apkshelf-comment-photo,
.apkshelf-login-avatar {
	overflow: hidden;
	border-radius: 8px;
	background: #eef3f8;
}

.apkshelf-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.apkshelf-icon-box::before,
.apkshelf-icon-box::after {
	display: none !important;
	content: none !important;
}

.apkshelf-app-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0;
	background: #fff;
	border: 0;
}

.apkshelf-img-fit img,
.apkshelf-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.apkshelf-app-icon img,
.apkshelf-top-icon img,
.apkshelf-mini-icon img,
.apkshelf-popup-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	object-position: center center !important;
	display: block !important;
	border-radius: 8px;
}

.apkshelf-top-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0;
	background: #fff;
	border: 0;
}

.apkshelf-app-name {
	min-height: 38px;
	color: var(--apkshelf-ink);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.25;
	white-space: normal;
}

.apkshelf-app-excerpt {
	margin-top: 8px;
	color: var(--apkshelf-muted);
	font-size: 13px;
	line-height: 1.45;
}

.apkshelf-card-meta {
	margin-top: 12px;
}

.apkshelf-stars,
.apkshelf-scorebar {
	color: #f2a500;
	font-weight: 800;
}

.apkshelf-scorebar {
	position: relative;
	height: 24px;
	overflow: hidden;
	border-radius: 8px;
	background: #eef3f8;
}

.apkshelf-scorebar-title {
	position: relative;
	z-index: 2;
	padding: 4px 8px;
	color: #1d2a3a;
	font-size: 12px;
}

.apkshelf-scorebar-fill {
	position: absolute;
	inset: 0 auto 0 0;
	background: linear-gradient(90deg, #21c574, #19a7c9);
}

.apkshelf-top-row {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 8px;
	border-radius: 8px;
	text-decoration: none;
}

.apkshelf-top-row:hover {
	background: #f2fbf6;
}

.apkshelf-top-icon {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
}

.apkshelf-top-name,
.apkshelf-comment-title {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.apkshelf-seo-panel {
	padding: 22px;
	order: 20;
}

.apkshelf-seo-copy h1 {
	margin: 0 0 12px;
	color: #111827;
	font-size: 25px;
	line-height: 1.2;
}

.apkshelf-seo-copy h2 {
	margin: 18px 0 8px;
	color: #142033;
	font-size: 18px;
	line-height: 1.25;
}

.apkshelf-seo-copy p {
	margin: 0 0 10px;
	color: #48566d;
	line-height: 1.65;
}

.apkshelf-slice-button {
	margin-top: 10px;
	color: var(--apkshelf-green-dark);
	font-weight: 800;
	cursor: pointer;
}

.apkshelf-slice-masked {
	position: relative;
	overflow: hidden;
}

.apkshelf-story-hero {
	padding: 22px;
	background:
		linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #effbf5 100%);
}

.apkshelf-story-hero > .apkshelf-icon-box {
	gap: 22px;
	align-items: flex-start;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}

.apkshelf-story-hero .apkshelf-app-icon {
	width: 156px;
	height: 156px;
	flex: 0 0 156px;
	padding: 0;
	box-shadow: 0 18px 34px rgba(30,46,71,.16);
}

.apkshelf-story-title h1 {
	margin: 8px 0 10px;
	color: #101827;
	font-size: 34px;
	line-height: 1.15;
}

.apkshelf-story-lead {
	max-width: 700px;
	color: var(--apkshelf-muted);
	font-size: 16px;
	line-height: 1.55;
}

.apkshelf-score-panel {
	min-width: 138px;
	padding: 12px;
	background: #fff;
	border: 1px solid var(--apkshelf-line);
	border-radius: 8px;
	color: var(--apkshelf-ink) !important;
}

.apkshelf-favorite {
	margin-top: 10px;
	color: var(--apkshelf-cyan);
	font-weight: 800;
}

.apkshelf-spec-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 22px 0;
	padding: 0;
	list-style: none;
}

.apkshelf-spec-item {
	width: auto !important;
	max-width: none !important;
	min-width: 0;
	min-height: 82px;
	margin: 0 !important;
	padding: 12px;
	background: #f8fbfe;
	border: 1px solid #e2ebf4;
	border-radius: 8px;
}

.apkshelf-spec-item div {
	margin-bottom: 6px;
	color: var(--apkshelf-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.apkshelf-spec-item span {
	display: block;
	color: #1e293b;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	white-space: normal !important;
	word-break: normal;
	overflow-wrap: anywhere;
}

.apkshelf-spec-item-wide {
	grid-column: span 2;
}

.apkshelf-rich-text {
	color: #263244;
	font-size: 16px;
	line-height: 1.72;
}

.apkshelf-rich-text h2,
.apkshelf-rich-text h3 {
	color: #101827;
	line-height: 1.25;
}

.apkshelf-gallery-source.hidden {
	display: none;
}

.apkshelf-gallery-stage {
	margin: 20px 0;
}

.apkshelf-message {
	margin: 20px 0;
	padding: 18px 20px;
	background: #f1fbf8;
	border-color: rgba(22,167,101,.22);
}

.apkshelf-install-title {
	margin: 0 0 12px;
	color: #0b7f4b;
	font-size: 20px;
	line-height: 1.25;
}

.apkshelf-install-steps {
	margin: 0;
	padding-left: 22px;
}

.apkshelf-install-note {
	margin-top: 12px;
	color: #506077;
}

.apkshelf-promo-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	margin: 20px 0;
	padding: 14px;
}

.apkshelf-promo-image img {
	width: 100%;
	max-height: 150px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.apkshelf-promo-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.apkshelf-promo-link,
.apkshelf-download-button,
.apkshelf-gate-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 16px;
	border-radius: 8px !important;
	font-weight: 900;
	text-decoration: none;
}

.apkshelf-promo-link {
	background: #eef8ff;
	color: #1685b6;
}

.apkshelf-download-card {
	padding: 16px;
	background: #111827;
	color: #fff;
}

.apkshelf-download-head {
	gap: 14px;
	margin-bottom: 14px;
}

.apkshelf-download-title {
	font-size: 21px;
	font-weight: 900;
	line-height: 1.25;
}

.apkshelf-download-button {
	width: 100%;
	min-height: 58px;
	background: linear-gradient(90deg, var(--apkshelf-green), var(--apkshelf-cyan));
	color: #fff;
}

.apkshelf-download-icon {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 8px;
	background: rgba(255,255,255,.14);
}

.apkshelf-download-icon img {
	max-width: 26px;
	max-height: 26px;
}

.apkshelf-related-block {
	margin-top: 18px;
}

.apkshelf-comments-block {
	margin-bottom: 20px;
}

.apkshelf-gate.apkshelf-is-open {
	display: flex !important;
}

.apkshelf-gate-dialog {
	border-radius: 8px !important;
	background: #101827 !important;
}

.apkshelf-gate-close {
	border-radius: 8px !important;
}

.apkshelf-gate-kicker {
	color: #7de3b1;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.apkshelf-gate-heading {
	margin: 8px 42px 16px 0;
	color: #fff;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
}

.apkshelf-gate-ad {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	margin: 0 0 14px;
}

.apkshelf-gate-ad-image img {
	width: 100%;
	border-radius: 8px;
	display: block;
}

.apkshelf-gate-ad-text,
.apkshelf-gate-timer {
	color: #c7d2e3;
	line-height: 1.5;
}

.apkshelf-gate-action.apkshelf-is-disabled {
	pointer-events: none;
	opacity: .58;
}

body.apkshelf-gate-open {
	overflow: hidden;
}

.apkshelf-comment {
	gap: 14px;
	margin-bottom: 12px;
	padding: 14px;
}

.apkshelf-comment-photo {
	width: 48px;
	height: 48px;
}

.apkshelf-comment-line {
	color: var(--apkshelf-muted);
	font-size: 13px;
}

.apkshelf-comment-name {
	color: var(--apkshelf-ink);
}

.apkshelf-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--apkshelf-line);
	border-radius: 8px;
	box-shadow: var(--apkshelf-shadow);
}

.apkshelf-footer .apkshelf-social-share {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.apkshelf-footer .apkshelf-social-share a {
	position: static !important;
	margin: 0 !important;
}

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

.apkshelf-footer-copy {
	color: var(--apkshelf-muted);
	font-size: 13px;
}

.apkshelf-screen {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: none;
	background: rgba(15,23,42,.42);
}

.apkshelf-drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	width: 290px;
	max-width: calc(100% - 50px);
	height: 100vh;
	overflow: auto;
	padding: 16px;
	background: #fff;
	box-shadow: 20px 0 40px rgba(15,23,42,.18);
	transform: translateX(-105%);
	transition: transform .2s ease;
}

.apkshelf-drawer.active {
	transform: translateX(0);
}

.apkshelf-drawer-close {
	position: fixed;
	top: 14px;
	left: 304px;
	z-index: 91;
	display: none;
	background: var(--apkshelf-orange);
}

.apkshelf-drawer-close.active {
	display: inline-flex;
}

.apkshelf-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 70;
	display: none;
	box-shadow: var(--apkshelf-shadow);
}

@media (max-width: 1180px) {
	.apkshelf-right-rail {
		display: none;
	}
	.apkshelf-left-rail {
		flex-basis: 210px;
	}
	.apkshelf-spec-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 950px) {
	.apkshelf-frame {
		width: min(100% - 20px, 760px);
	}
	.apkshelf-topbar-inner {
		min-height: 64px;
	}
	.apkshelf-menu-button,
	.apkshelf-search-button {
		display: inline-flex;
		flex: 0 0 42px;
	}
	.apkshelf-brand {
		min-width: 0;
	}
	.apkshelf-search-wrap {
		position: absolute;
		left: 10px;
		right: 10px;
		top: 72px;
		display: none;
		max-width: none;
		margin: 0;
	}
	.apkshelf-topbar.apkshelf-search-open .apkshelf-search-wrap {
		display: block;
	}
	.apkshelf-primary-nav,
	.apkshelf-left-rail,
	.apkshelf-right-rail {
		display: none;
	}
	.apkshelf-grid {
		display: block;
	}
	.apkshelf-story-hero > .apkshelf-icon-box,
	.apkshelf-promo-card {
		grid-template-columns: 1fr;
		display: grid;
	}
	.apkshelf-story-hero .apkshelf-app-icon {
		width: 124px;
		height: 124px;
		flex-basis: 124px;
	}
	.apkshelf-story-title h1 {
		font-size: 27px;
	}
	.apkshelf-score-panel {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.apkshelf-block-head.apkshelf-row {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 10px !important;
		min-height: 0 !important;
		padding: 14px !important;
	}
	.apkshelf-block-head .apkshelf-more-link,
	.apkshelf-block-head .apkshelf-comment-button {
		align-self: flex-start !important;
	}
	.apkshelf-app-grid,
	.apkshelf-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.apkshelf-spec-item-wide {
		grid-column: span 2;
	}
	.apkshelf-story-hero {
		padding: 16px;
	}
	.apkshelf-block-body {
		padding: 12px;
	}
	.apkshelf-footer {
		display: block;
		text-align: center;
	}
	.apkshelf-footer > * + * {
		margin-top: 12px;
	}
	.apkshelf-gate-ad {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {
	.apkshelf-app-grid,
	.apkshelf-spec-grid {
		grid-template-columns: 1fr;
	}
	.apkshelf-spec-item-wide {
		grid-column: span 1;
	}
	.apkshelf-story-title h1 {
		font-size: 24px;
	}
}

/* Layout stabilizer: old Androidus flex rules are still present in styles.css,
   so the active skin pins the main surfaces here. */
.apkshelf-stage {
	display: block !important;
}

.apkshelf-grid.apkshelf-row {
	display: grid !important;
	grid-template-columns: 220px minmax(0, 1fr) 220px;
	align-items: start !important;
	gap: 18px !important;
	width: 100% !important;
	margin: 18px 0 0 !important;
	padding: 0 !important;
}

.apkshelf-left-rail,
.apkshelf-right-rail {
	width: auto !important;
	min-width: 0 !important;
	flex: none !important;
}

.apkshelf-content {
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	width: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
}

#dle-content {
	order: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 18px !important;
	width: 100% !important;
	min-width: 0 !important;
}

.apkshelf-seo-panel {
	order: 2 !important;
	width: 100% !important;
	margin: 0 !important;
}

#dle-content > .apkshelf-block,
.apkshelf-content > .apkshelf-block,
.apkshelf-block + .apkshelf-block {
	margin-top: 0 !important;
}

.apkshelf-block-head {
	margin-bottom: 0 !important;
}

.apkshelf-block-body.apkshelf-app-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 14px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 16px !important;
}

.apkshelf-app-tile {
	float: none !important;
	display: block !important;
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.apkshelf-app-card {
	display: flex !important;
	flex-direction: column !important;
	min-height: 244px !important;
	padding: 14px !important;
}

.apkshelf-app-card .apkshelf-app-link {
	min-width: 0 !important;
}

.apkshelf-app-name.apkshelf-nowrap,
.apkshelf-app-name {
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
}

.apkshelf-card-meta {
	margin-top: auto !important;
	padding-top: 12px !important;
}

.apkshelf-social-share:empty,
.apkshelf-share-slot:empty {
	display: none !important;
}

.apkshelf-rail-body:empty {
	display: none !important;
}

.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
	display: grid !important;
	grid-template-columns: 156px minmax(0, 1fr) 138px;
	gap: 22px !important;
}

.apkshelf-spec-grid.apkshelf-row {
	display: grid !important;
}

@media (max-width: 1180px) {
	.apkshelf-grid.apkshelf-row {
		grid-template-columns: 210px minmax(0, 1fr) !important;
	}
	.apkshelf-right-rail {
		display: none !important;
	}
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 950px) {
	.apkshelf-grid.apkshelf-row {
		display: block !important;
		margin-top: 14px !important;
	}
	.apkshelf-left-rail,
	.apkshelf-right-rail {
		display: none !important;
	}
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
		grid-template-columns: 124px minmax(0, 1fr) !important;
	}
	.apkshelf-score-panel {
		grid-column: 1 / -1;
	}
}

@media (max-width: 520px) {
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: 1fr !important;
	}
	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
		grid-template-columns: 1fr !important;
	}
}

/* androidus-apkshelf: unique visual layer */
:root {
	--apkshelf-ink: #18140f;
	--apkshelf-muted: #716b63;
	--apkshelf-paper: #fffdfa;
	--apkshelf-soft: #f5f2ec;
	--apkshelf-card: #ffffff;
	--apkshelf-line: #ded8cf;
	--apkshelf-night: #111820;
	--apkshelf-night-2: #1b2532;
	--apkshelf-red: #e9543d;
	--apkshelf-teal: #079d92;
	--apkshelf-amber: #f8b62d;
	--apkshelf-blue: #2f6fed;
	--apkshelf-shadow: 0 16px 34px rgba(30, 24, 17, .10);
}

html,
body {
	background: #f5f2ec !important;
	color: var(--apkshelf-ink) !important;
	font-family: Arial, Helvetica, sans-serif !important;
}

a:hover {
	color: var(--apkshelf-red) !important;
}

.apkshelf-shell {
	min-height: 100vh;
	background:
		linear-gradient(180deg, #111820 0, #111820 258px, #f5f2ec 258px, #f5f2ec 100%) !important;
}

.apkshelf-frame {
	width: min(1320px, calc(100% - 24px)) !important;
}

.apkshelf-topbar {
	position: sticky !important;
	top: 0 !important;
	z-index: 50 !important;
	background: rgba(17, 24, 32, .96) !important;
	border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
	box-shadow: 0 14px 28px rgba(0, 0, 0, .22) !important;
	backdrop-filter: blur(12px);
}

.apkshelf-topbar-inner {
	min-height: 76px !important;
	gap: 16px !important;
}

.apkshelf-brand {
	min-width: 190px !important;
}

.apkshelf-brand img,
.apkshelf-footer-brand img {
	width: 42px !important;
	height: 42px !important;
	object-fit: contain !important;
}

.apkshelf-brand::after {
	content: "Androfinoa APK" !important;
	color: #ffffff !important;
	font-size: 21px !important;
	font-weight: 900 !important;
	letter-spacing: 0 !important;
}

.apkshelf-search-wrap {
	max-width: 610px !important;
}

.apkshelf-search-box {
	min-height: 48px !important;
	background: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, .14) !important;
	border-radius: 6px !important;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .16) !important;
}

.apkshelf-search-box input {
	height: 48px !important;
	color: var(--apkshelf-night) !important;
}

.apkshelf-search-box button,
.apkshelf-menu-button,
.apkshelf-search-button,
.apkshelf-drawer-close,
.apkshelf-to-top {
	border-radius: 6px !important;
	background: var(--apkshelf-red) !important;
	color: #fff !important;
}

.apkshelf-login-button,
.apkshelf-fav-button {
	border-radius: 6px !important;
	background: rgba(255, 255, 255, .10) !important;
	color: #ffffff !important;
}

.apkshelf-stage {
	padding: 18px 0 34px !important;
}

.apkshelf-primary-nav {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 0 18px !important;
	padding: 10px !important;
	background: #ffffff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 6px !important;
	box-shadow: var(--apkshelf-shadow) !important;
}

.apkshelf-primary-nav a {
	justify-content: flex-start !important;
	min-height: 44px !important;
	padding: 0 14px !important;
	border-radius: 6px !important;
	background: #f8f6f2 !important;
	color: var(--apkshelf-night) !important;
	font-weight: 900 !important;
}

.apkshelf-primary-nav a .fa {
	color: var(--apkshelf-red) !important;
}

.apkshelf-primary-nav a:hover {
	background: var(--apkshelf-night) !important;
	color: #ffffff !important;
}

.apkshelf-grid.apkshelf-row {
	grid-template-columns: 236px minmax(0, 1fr) 236px !important;
	gap: 16px !important;
	margin-top: 0 !important;
}

.apkshelf-rail-card,
.apkshelf-block,
.apkshelf-page-box,
.apkshelf-seo-panel,
.apkshelf-login-box,
.apkshelf-comment,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	background: var(--apkshelf-card) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 6px !important;
	box-shadow: var(--apkshelf-shadow) !important;
}

.apkshelf-rail-card {
	margin-bottom: 12px !important;
	overflow: hidden !important;
}

.apkshelf-rail-title {
	padding: 12px 14px !important;
	background: var(--apkshelf-night) !important;
	border-bottom: 0 !important;
	color: #ffffff !important;
	font-size: 13px !important;
	letter-spacing: 0 !important;
	text-transform: uppercase !important;
}

.apkshelf-icon-text .fa,
.apkshelf-rail-title .fa {
	color: var(--apkshelf-amber) !important;
}

.apkshelf-rail-body {
	padding: 8px !important;
	background: #ffffff !important;
}

.apkshelf-link-list a {
	min-height: 32px !important;
	padding: 0 10px !important;
	border-radius: 6px !important;
	color: #3b342c !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.apkshelf-link-list a:hover {
	background: #fff1ed !important;
	color: var(--apkshelf-red) !important;
}

.apkshelf-top-row {
	min-height: 58px !important;
	padding: 8px !important;
	border-radius: 6px !important;
}

.apkshelf-top-row:hover {
	background: #f2fbfa !important;
}

.apkshelf-top-icon {
	width: 44px !important;
	height: 44px !important;
	flex: 0 0 44px !important;
	border-radius: 6px !important;
}

.apkshelf-block {
	overflow: hidden !important;
}

.apkshelf-block-head {
	min-height: 56px !important;
	padding: 0 16px !important;
	background: #fffdfa !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-block-title {
	position: relative !important;
	padding-left: 14px !important;
	color: var(--apkshelf-night) !important;
	font-size: 19px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

.apkshelf-block-title::before {
	content: "" !important;
	position: absolute !important;
	left: 0 !important;
	top: .25em !important;
	bottom: .25em !important;
	width: 4px !important;
	border-radius: 4px !important;
	background: var(--apkshelf-red) !important;
}

.apkshelf-more-link {
	min-height: 34px !important;
	padding: 0 12px !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 6px !important;
	background: #ffffff !important;
	color: var(--apkshelf-teal) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.apkshelf-more-link:hover {
	border-color: var(--apkshelf-teal) !important;
	background: #ecfbf9 !important;
	color: var(--apkshelf-teal) !important;
}

.apkshelf-block-body.apkshelf-app-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px !important;
	padding: 14px !important;
}

.apkshelf-app-card {
	position: relative !important;
	display: grid !important;
	grid-template-columns: 92px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 12px 14px !important;
	min-height: 156px !important;
	padding: 14px !important;
	background: #ffffff !important;
	border: 1px solid #e2dbd1 !important;
	border-left: 4px solid var(--apkshelf-teal) !important;
	border-radius: 6px !important;
	box-shadow: none !important;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

.apkshelf-app-card:hover {
	transform: translateY(-2px) !important;
	border-color: #d6cbbf !important;
	border-left-color: var(--apkshelf-red) !important;
	box-shadow: 0 14px 28px rgba(25, 20, 15, .10) !important;
}

.apkshelf-app-card .apkshelf-app-link {
	display: contents !important;
	text-decoration: none !important;
}

.apkshelf-app-card .apkshelf-icon-box {
	grid-column: 1 !important;
	grid-row: 1 / 4 !important;
	width: 86px !important;
	height: 86px !important;
	margin: 0 !important;
	align-self: start !important;
}

.apkshelf-app-icon {
	width: 100% !important;
	height: 100% !important;
	border-radius: 6px !important;
	background: #f7f4ef !important;
}

.apkshelf-app-icon img,
.apkshelf-top-icon img,
.apkshelf-mini-icon img,
.apkshelf-popup-image img {
	border-radius: 6px !important;
	object-fit: contain !important;
}

.apkshelf-app-name {
	grid-column: 2 !important;
	min-height: 0 !important;
	color: var(--apkshelf-night) !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
	text-align: left !important;
}

.apkshelf-app-excerpt {
	grid-column: 2 !important;
	margin: 0 !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	text-align: left !important;
}

.apkshelf-card-meta {
	grid-column: 2 !important;
	margin-top: 0 !important;
	padding-top: 0 !important;
	text-align: left !important;
}

.apkshelf-stars,
.apkshelf-scorebar {
	color: var(--apkshelf-amber) !important;
}

.apkshelf-seo-panel {
	order: 2 !important;
	padding: 24px !important;
	background:
		linear-gradient(90deg, rgba(233, 84, 61, .08), rgba(7, 157, 146, .08)),
		#fffdfa !important;
}

.apkshelf-seo-copy h1 {
	max-width: 900px !important;
	margin: 0 0 12px !important;
	color: var(--apkshelf-night) !important;
	font-size: 27px !important;
	line-height: 1.18 !important;
}

.apkshelf-seo-copy h2 {
	margin: 18px 0 8px !important;
	color: #241d16 !important;
	font-size: 18px !important;
}

.apkshelf-seo-copy p {
	max-width: 980px !important;
	margin: 0 0 10px !important;
	color: #514940 !important;
	line-height: 1.65 !important;
}

.apkshelf-story-hero {
	padding: 0 !important;
	overflow: hidden !important;
	background: #ffffff !important;
}

.apkshelf-story-hero > .apkshelf-icon-box {
	display: grid !important;
	grid-template-columns: 154px minmax(0, 1fr) 148px !important;
	gap: 22px !important;
	align-items: center !important;
	margin: 0 !important;
	padding: 26px !important;
	background:
		linear-gradient(90deg, #111820, #1d2734) !important;
	color: #ffffff !important;
}

.apkshelf-story-hero .apkshelf-app-icon {
	width: 154px !important;
	height: 154px !important;
	flex: 0 0 154px !important;
	padding: 0 !important;
	background: #ffffff !important;
	box-shadow: 0 18px 34px rgba(0, 0, 0, .28) !important;
}

.apkshelf-story-title h1 {
	margin: 0 0 10px !important;
	color: #ffffff !important;
	font-size: 36px !important;
	line-height: 1.12 !important;
}

.apkshelf-story-lead {
	max-width: 720px !important;
	color: #d7e0ea !important;
	font-size: 16px !important;
	line-height: 1.55 !important;
}

.apkshelf-score-panel {
	min-width: 148px !important;
	background: rgba(255, 255, 255, .08) !important;
	border: 1px solid rgba(255, 255, 255, .16) !important;
	border-radius: 6px !important;
	color: #ffffff !important;
}

.apkshelf-favorite,
.apkshelf-favorite a {
	color: #ffd166 !important;
}

.apkshelf-spec-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 18px 22px !important;
	background: #fffdfa !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-spec-item {
	min-height: 78px !important;
	padding: 12px !important;
	background: #ffffff !important;
	border: 1px solid #e3dcd3 !important;
	border-radius: 6px !important;
}

.apkshelf-spec-item div {
	color: #8b8075 !important;
	font-size: 11px !important;
	text-transform: uppercase !important;
}

.apkshelf-spec-item span {
	color: var(--apkshelf-night) !important;
	font-size: 14px !important;
}

.apkshelf-story-body,
.apkshelf-gallery-stage,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	margin-left: 22px !important;
	margin-right: 22px !important;
}

.apkshelf-rich-text {
	color: #2f2b26 !important;
	font-size: 16px !important;
	line-height: 1.74 !important;
}

.apkshelf-rich-text h2,
.apkshelf-rich-text h3 {
	color: var(--apkshelf-night) !important;
	line-height: 1.24 !important;
}

.apkshelf-message {
	background: #f1fbfa !important;
	border-color: rgba(7, 157, 146, .22) !important;
}

.apkshelf-install-title {
	color: var(--apkshelf-teal) !important;
}

.apkshelf-promo-card {
	grid-template-columns: minmax(0, 1fr) 170px !important;
	background: #fffdfa !important;
}

.apkshelf-promo-link {
	border-radius: 6px !important;
	background: #ecfbf9 !important;
	color: var(--apkshelf-teal) !important;
}

.apkshelf-download-card {
	margin-bottom: 22px !important;
	background: var(--apkshelf-night) !important;
	border-color: var(--apkshelf-night-2) !important;
	color: #ffffff !important;
}

.apkshelf-download-title {
	color: #ffffff !important;
}

.apkshelf-download-button {
	border-radius: 6px !important;
	background: linear-gradient(90deg, var(--apkshelf-red), var(--apkshelf-amber)) !important;
	color: #17120c !important;
}

.apkshelf-download-icon {
	background: rgba(255, 255, 255, .22) !important;
	border-radius: 6px !important;
}

.apkshelf-related-block {
	margin-top: 16px !important;
}

.apkshelf-gate-dialog {
	border-radius: 6px !important;
	background: var(--apkshelf-night) !important;
}

.apkshelf-gate-close,
.apkshelf-gate-action {
	border-radius: 6px !important;
}

.apkshelf-footer {
	background: var(--apkshelf-night) !important;
	border-color: rgba(255, 255, 255, .10) !important;
	color: #ffffff !important;
}

.apkshelf-footer-copy,
.apkshelf-footer-menu a {
	color: #d7e0ea !important;
}

@media (max-width: 1180px) {
	.apkshelf-grid.apkshelf-row {
		grid-template-columns: 220px minmax(0, 1fr) !important;
	}
	.apkshelf-right-rail {
		display: none !important;
	}
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 950px) {
	.apkshelf-shell {
		background:
			linear-gradient(180deg, #111820 0, #111820 190px, #f5f2ec 190px, #f5f2ec 100%) !important;
	}
	.apkshelf-grid.apkshelf-row {
		display: block !important;
	}
	.apkshelf-left-rail,
	.apkshelf-right-rail {
		display: none !important;
	}
	.apkshelf-primary-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.apkshelf-story-hero > .apkshelf-icon-box {
		grid-template-columns: 126px minmax(0, 1fr) !important;
		padding: 20px !important;
	}
	.apkshelf-story-hero .apkshelf-app-icon {
		width: 126px !important;
		height: 126px !important;
		flex-basis: 126px !important;
	}
	.apkshelf-score-panel {
		grid-column: 1 / -1 !important;
	}
	.apkshelf-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	.apkshelf-frame {
		width: min(100% - 16px, 1320px) !important;
	}
	.apkshelf-topbar-inner {
		min-height: 64px !important;
	}
	.apkshelf-brand {
		min-width: 0 !important;
	}
	.apkshelf-brand::after {
		font-size: 18px !important;
	}
	.apkshelf-primary-nav {
		grid-template-columns: 1fr !important;
	}
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: 1fr !important;
		padding: 10px !important;
	}
	.apkshelf-app-card {
		grid-template-columns: 80px minmax(0, 1fr) !important;
		min-height: 146px !important;
		padding: 12px !important;
	}
	.apkshelf-app-card .apkshelf-icon-box {
		width: 74px !important;
		height: 74px !important;
	}
	.apkshelf-story-hero > .apkshelf-icon-box {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		padding: 18px !important;
	}
	.apkshelf-story-title h1 {
		font-size: 28px !important;
	}
	.apkshelf-spec-grid {
		grid-template-columns: 1fr !important;
		padding: 12px !important;
	}
	.apkshelf-story-body,
	.apkshelf-gallery-stage,
	.apkshelf-message,
	.apkshelf-promo-card,
	.apkshelf-download-card {
		margin-left: 12px !important;
		margin-right: 12px !important;
	}
	.apkshelf-promo-card {
		grid-template-columns: 1fr !important;
	}
}

/* androidus-apkshelf: fresh catalogue layout */
:root {
	--apkshelf-ink: #20222b;
	--apkshelf-muted: #667085;
	--apkshelf-bg: #f6f7fb;
	--apkshelf-card: #ffffff;
	--apkshelf-line: #dfe4ee;
	--apkshelf-coral: #ff5c45;
	--apkshelf-teal: #00a99d;
	--apkshelf-violet: #6b5cff;
	--apkshelf-amber: #ffb020;
	--apkshelf-night: #20222b;
	--apkshelf-shadow: 0 12px 30px rgba(32, 34, 43, .08);
}

html,
body {
	background: var(--apkshelf-bg) !important;
	color: var(--apkshelf-ink) !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 15px !important;
	letter-spacing: 0 !important;
}

.apkshelf-shell {
	min-height: 100vh !important;
	background:
		linear-gradient(180deg, #ffffff 0, #ffffff 132px, var(--apkshelf-bg) 132px, var(--apkshelf-bg) 100%) !important;
}

.apkshelf-frame {
	width: min(1240px, calc(100% - 28px)) !important;
}

.apkshelf-topbar {
	position: sticky !important;
	top: 0 !important;
	z-index: 50 !important;
	background: rgba(255, 255, 255, .96) !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
	box-shadow: 0 8px 22px rgba(32, 34, 43, .05) !important;
	backdrop-filter: blur(12px) !important;
}

.apkshelf-topbar-inner {
	min-height: 70px !important;
	gap: 18px !important;
}

.apkshelf-brand {
	min-width: 188px !important;
	text-decoration: none !important;
}

.apkshelf-brand img,
.apkshelf-footer-brand img {
	width: 42px !important;
	height: 42px !important;
	object-fit: contain !important;
}

.apkshelf-brand::after {
	content: "Androfinoa" !important;
	color: var(--apkshelf-night) !important;
	font-size: 22px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.apkshelf-brand::before {
	content: "APK" !important;
	order: 3 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 34px !important;
	height: 22px !important;
	margin-left: 8px !important;
	border-radius: 6px !important;
	background: #fff1ed !important;
	color: var(--apkshelf-coral) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
}

.apkshelf-search-wrap {
	max-width: 560px !important;
	margin-left: auto !important;
}

.apkshelf-search-box {
	min-height: 46px !important;
	background: #f8fafc !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
}

.apkshelf-search-box input {
	height: 46px !important;
	color: var(--apkshelf-night) !important;
	font-size: 14px !important;
}

.apkshelf-search-box button,
.apkshelf-menu-button,
.apkshelf-search-button,
.apkshelf-drawer-close,
.apkshelf-to-top {
	width: 42px !important;
	height: 42px !important;
	border-radius: 8px !important;
	background: var(--apkshelf-violet) !important;
	color: #ffffff !important;
}

.apkshelf-login-button,
.apkshelf-fav-button {
	border-radius: 8px !important;
	background: #f8fafc !important;
	color: var(--apkshelf-night) !important;
	border: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-stage {
	padding: 18px 0 34px !important;
}

.apkshelf-primary-nav {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.apkshelf-primary-nav a {
	justify-content: center !important;
	min-height: 46px !important;
	padding: 0 14px !important;
	background: #ffffff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-bottom: 3px solid var(--apkshelf-teal) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-night) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	box-shadow: 0 8px 18px rgba(32, 34, 43, .04) !important;
}

.apkshelf-primary-nav li:nth-child(2n) a {
	border-bottom-color: var(--apkshelf-coral) !important;
}

.apkshelf-primary-nav li:nth-child(3n) a {
	border-bottom-color: var(--apkshelf-violet) !important;
}

.apkshelf-primary-nav a .fa {
	color: var(--apkshelf-coral) !important;
}

.apkshelf-primary-nav a:hover {
	background: var(--apkshelf-night) !important;
	border-color: var(--apkshelf-night) !important;
	color: #ffffff !important;
}

.apkshelf-grid.apkshelf-row {
	display: grid !important;
	grid-template-columns: 210px minmax(0, 1fr) 210px !important;
	gap: 16px !important;
	margin-top: 0 !important;
}

.apkshelf-content {
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
}

#dle-content {
	order: 2 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
}

.apkshelf-seo-panel {
	order: 1 !important;
	padding: 26px !important;
	background:
		linear-gradient(135deg, rgba(255, 92, 69, .10), rgba(0, 169, 157, .10) 52%, rgba(107, 92, 255, .10)),
		#ffffff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: var(--apkshelf-shadow) !important;
}

.apkshelf-seo-copy h1 {
	max-width: 820px !important;
	margin: 0 0 12px !important;
	color: var(--apkshelf-night) !important;
	font-size: 31px !important;
	line-height: 1.14 !important;
}

.apkshelf-seo-copy h2 {
	margin: 18px 0 8px !important;
	color: var(--apkshelf-night) !important;
	font-size: 18px !important;
}

.apkshelf-seo-copy p {
	max-width: 940px !important;
	margin: 0 0 10px !important;
	color: #4d5668 !important;
	line-height: 1.65 !important;
}

.apkshelf-rail-card,
.apkshelf-block,
.apkshelf-page-box,
.apkshelf-login-box,
.apkshelf-comment,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	background: var(--apkshelf-card) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: var(--apkshelf-shadow) !important;
}

.apkshelf-rail-card {
	margin-bottom: 14px !important;
	overflow: hidden !important;
}

.apkshelf-rail-title {
	padding: 13px 14px !important;
	background: #ffffff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
	color: var(--apkshelf-night) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
}

.apkshelf-rail-title::before {
	content: "" !important;
	display: inline-block !important;
	width: 8px !important;
	height: 8px !important;
	margin-right: 8px !important;
	border-radius: 50% !important;
	background: var(--apkshelf-coral) !important;
	vertical-align: 1px !important;
}

.apkshelf-icon-text .fa,
.apkshelf-rail-title .fa {
	color: var(--apkshelf-violet) !important;
}

.apkshelf-rail-body {
	padding: 8px !important;
	background: #ffffff !important;
}

.apkshelf-link-list a {
	min-height: 34px !important;
	padding: 0 9px !important;
	border-radius: 8px !important;
	color: #3c4250 !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

.apkshelf-link-list a::before {
	content: "#" !important;
	margin-right: 6px !important;
	color: var(--apkshelf-teal) !important;
	font-weight: 900 !important;
}

.apkshelf-link-list a:hover {
	background: #f4f7ff !important;
	color: var(--apkshelf-violet) !important;
}

.apkshelf-top-row {
	min-height: 58px !important;
	padding: 8px !important;
	border-radius: 8px !important;
}

.apkshelf-top-row:hover {
	background: #f8fafc !important;
}

.apkshelf-top-icon {
	width: 46px !important;
	height: 46px !important;
	flex: 0 0 46px !important;
	border-radius: 8px !important;
	background: #ffffff !important;
}

.apkshelf-block {
	overflow: hidden !important;
}

.apkshelf-block-head {
	min-height: 58px !important;
	padding: 0 18px !important;
	background: #ffffff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-block-title {
	position: relative !important;
	padding-left: 0 !important;
	color: var(--apkshelf-night) !important;
	font-size: 20px !important;
	font-weight: 900 !important;
	line-height: 1.22 !important;
}

.apkshelf-block-title::before {
	display: none !important;
}

.apkshelf-block-title::after {
	content: "" !important;
	display: block !important;
	width: 56px !important;
	height: 3px !important;
	margin-top: 8px !important;
	border-radius: 3px !important;
	background: linear-gradient(90deg, var(--apkshelf-coral), var(--apkshelf-teal)) !important;
}

.apkshelf-more-link {
	min-height: 34px !important;
	padding: 0 12px !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	background: #f8fafc !important;
	color: var(--apkshelf-violet) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.apkshelf-block-body.apkshelf-app-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 12px !important;
	padding: 14px !important;
}

.apkshelf-app-card {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	min-height: 248px !important;
	padding: 14px !important;
	background: #ffffff !important;
	border: 1px solid #e1e6ef !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.apkshelf-app-card:hover {
	transform: translateY(-3px) !important;
	border-color: rgba(107, 92, 255, .38) !important;
	box-shadow: 0 16px 30px rgba(32, 34, 43, .10) !important;
}

.apkshelf-app-card .apkshelf-app-link {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
	text-decoration: none !important;
}

.apkshelf-app-card .apkshelf-icon-box {
	width: 104px !important;
	height: 104px !important;
	margin: 0 auto 12px !important;
}

.apkshelf-icon-box {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.apkshelf-icon-box::before,
.apkshelf-icon-box::after {
	display: none !important;
	content: none !important;
}

.apkshelf-app-icon {
	width: 100% !important;
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	background: #ffffff !important;
	border-radius: 8px !important;
	overflow: hidden !important;
}

.apkshelf-app-icon img,
.apkshelf-top-icon img,
.apkshelf-mini-icon img,
.apkshelf-popup-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	object-position: center center !important;
	display: block !important;
	border-radius: 8px !important;
}

.apkshelf-app-name {
	min-height: 40px !important;
	color: var(--apkshelf-night) !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1.24 !important;
	text-align: center !important;
}

.apkshelf-app-excerpt {
	margin-top: 9px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	text-align: center !important;
}

.apkshelf-card-meta {
	margin-top: auto !important;
	padding-top: 10px !important;
	text-align: center !important;
}

.apkshelf-stars,
.apkshelf-scorebar {
	color: var(--apkshelf-amber) !important;
}

.apkshelf-story-hero {
	padding: 0 !important;
	overflow: hidden !important;
	background: #ffffff !important;
}

.apkshelf-story-hero > .apkshelf-icon-box {
	display: grid !important;
	grid-template-columns: 150px minmax(0, 1fr) 144px !important;
	gap: 22px !important;
	align-items: center !important;
	margin: 0 !important;
	padding: 24px !important;
	background:
		linear-gradient(135deg, rgba(107, 92, 255, .10), rgba(255, 92, 69, .08)),
		#ffffff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-story-hero .apkshelf-app-icon {
	width: 150px !important;
	height: 150px !important;
	flex: 0 0 150px !important;
	padding: 0 !important;
	background: #ffffff !important;
	box-shadow: 0 14px 28px rgba(32, 34, 43, .14) !important;
}

.apkshelf-story-title h1 {
	margin: 0 0 10px !important;
	color: var(--apkshelf-night) !important;
	font-size: 35px !important;
	line-height: 1.12 !important;
}

.apkshelf-story-lead {
	max-width: 720px !important;
	color: #596273 !important;
	font-size: 16px !important;
	line-height: 1.55 !important;
}

.apkshelf-score-panel {
	min-width: 144px !important;
	padding: 12px !important;
	background: #ffffff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-night) !important;
	box-shadow: 0 10px 22px rgba(32, 34, 43, .07) !important;
}

.apkshelf-favorite,
.apkshelf-favorite a {
	color: var(--apkshelf-violet) !important;
	font-weight: 900 !important;
}

.apkshelf-spec-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 18px !important;
	background: #ffffff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-spec-item {
	min-height: 80px !important;
	padding: 12px !important;
	background: #f8fafc !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
}

.apkshelf-spec-item div {
	color: #7b8495 !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
}

.apkshelf-spec-item span {
	color: var(--apkshelf-night) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.35 !important;
	overflow-wrap: anywhere !important;
}

.apkshelf-story-body,
.apkshelf-gallery-stage,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	margin-left: 18px !important;
	margin-right: 18px !important;
}

.apkshelf-rich-text {
	color: #303746 !important;
	font-size: 16px !important;
	line-height: 1.74 !important;
}

.apkshelf-rich-text h2,
.apkshelf-rich-text h3 {
	color: var(--apkshelf-night) !important;
	line-height: 1.25 !important;
}

.apkshelf-message {
	background: #f4fffd !important;
	border-color: rgba(0, 169, 157, .24) !important;
}

.apkshelf-install-title {
	color: var(--apkshelf-teal) !important;
}

.apkshelf-promo-card {
	grid-template-columns: minmax(0, 1fr) 180px !important;
	background: #ffffff !important;
}

.apkshelf-promo-link {
	background: #f4f7ff !important;
	color: var(--apkshelf-violet) !important;
	border-radius: 8px !important;
}

.apkshelf-download-card {
	margin-bottom: 18px !important;
	background: #20222b !important;
	border-color: #20222b !important;
	color: #ffffff !important;
}

.apkshelf-download-title {
	color: #ffffff !important;
}

.apkshelf-download-button {
	border-radius: 8px !important;
	background: linear-gradient(90deg, var(--apkshelf-violet), var(--apkshelf-teal)) !important;
	color: #ffffff !important;
}

.apkshelf-download-icon {
	background: rgba(255, 255, 255, .16) !important;
	border-radius: 8px !important;
}

.apkshelf-related-block {
	margin-top: 16px !important;
}

.apkshelf-gate-dialog,
.apkshelf-gate-close,
.apkshelf-gate-action {
	border-radius: 8px !important;
}

.apkshelf-footer {
	background: #ffffff !important;
	border-color: var(--apkshelf-line) !important;
	color: var(--apkshelf-night) !important;
}

.apkshelf-footer-copy,
.apkshelf-footer-menu a {
	color: #667085 !important;
}

@media (max-width: 1180px) {
	.apkshelf-grid.apkshelf-row {
		grid-template-columns: 210px minmax(0, 1fr) !important;
	}
	.apkshelf-right-rail {
		display: none !important;
	}
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 950px) {
	.apkshelf-grid.apkshelf-row {
		display: block !important;
	}
	.apkshelf-left-rail,
	.apkshelf-right-rail {
		display: none !important;
	}
	.apkshelf-primary-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.apkshelf-story-hero > .apkshelf-icon-box {
		grid-template-columns: 126px minmax(0, 1fr) !important;
		padding: 20px !important;
	}
	.apkshelf-story-hero .apkshelf-app-icon {
		width: 126px !important;
		height: 126px !important;
		flex-basis: 126px !important;
	}
	.apkshelf-score-panel {
		grid-column: 1 / -1 !important;
	}
	.apkshelf-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	.apkshelf-frame {
		width: min(100% - 16px, 1240px) !important;
	}
	.apkshelf-topbar-inner {
		min-height: 64px !important;
	}
	.apkshelf-brand {
		min-width: 0 !important;
	}
	.apkshelf-brand::before {
		display: none !important;
	}
	.apkshelf-brand::after {
		font-size: 17px !important;
	}
	.apkshelf-primary-nav {
		grid-template-columns: 1fr !important;
	}
	.apkshelf-seo-panel {
		padding: 18px !important;
	}
	.apkshelf-seo-copy h1 {
		font-size: 25px !important;
	}
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: 1fr !important;
		padding: 10px !important;
	}
	.apkshelf-app-card {
		min-height: 232px !important;
		padding: 14px !important;
	}
	.apkshelf-app-card .apkshelf-icon-box {
		width: 96px !important;
		height: 96px !important;
	}
	.apkshelf-story-hero > .apkshelf-icon-box {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		padding: 18px !important;
	}
	.apkshelf-story-title h1 {
		font-size: 27px !important;
	}
	.apkshelf-spec-grid {
		grid-template-columns: 1fr !important;
		padding: 12px !important;
	}
	.apkshelf-story-body,
	.apkshelf-gallery-stage,
	.apkshelf-message,
	.apkshelf-promo-card,
	.apkshelf-download-card {
		margin-left: 12px !important;
		margin-right: 12px !important;
	}
	.apkshelf-promo-card {
		grid-template-columns: 1fr !important;
	}
}

/* androidus-apkshelf: operator-style APK feed */
:root {
	--apkshelf-ink: #171717;
	--apkshelf-muted: #686f76;
	--apkshelf-bg: #f2f5f3;
	--apkshelf-panel: #ffffff;
	--apkshelf-line: #d9e0dc;
	--apkshelf-black: #141414;
	--apkshelf-lime: #92d050;
	--apkshelf-coral: #ff684f;
	--apkshelf-cyan: #09aeb8;
	--apkshelf-violet: #6759ff;
	--apkshelf-amber: #f7ae25;
	--apkshelf-shadow: 0 12px 28px rgba(23, 23, 23, .09);
}

html,
body {
	background:
		linear-gradient(90deg, rgba(20, 20, 20, .035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(20, 20, 20, .035) 1px, transparent 1px),
		var(--apkshelf-bg) !important;
	background-size: 28px 28px !important;
	color: var(--apkshelf-ink) !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 15px !important;
	letter-spacing: 0 !important;
}

a:hover {
	color: var(--apkshelf-coral) !important;
}

.apkshelf-shell {
	min-height: 100vh !important;
	background: transparent !important;
}

.apkshelf-frame {
	width: min(1340px, calc(100% - 24px)) !important;
}

.apkshelf-topbar {
	position: sticky !important;
	top: 0 !important;
	z-index: 50 !important;
	background: rgba(20, 20, 20, .97) !important;
	border-bottom: 3px solid var(--apkshelf-lime) !important;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .20) !important;
	backdrop-filter: blur(10px) !important;
}

.apkshelf-topbar-inner {
	min-height: 70px !important;
	gap: 18px !important;
}

.apkshelf-brand {
	min-width: 210px !important;
	align-items: center !important;
	text-decoration: none !important;
}

.apkshelf-brand img,
.apkshelf-footer-brand img {
	width: 38px !important;
	height: 38px !important;
	object-fit: contain !important;
	filter: saturate(1.15) !important;
}

.apkshelf-brand::before {
	display: none !important;
}

.apkshelf-brand::after {
	content: "Androfinoa APK" !important;
	color: #ffffff !important;
	font-size: 21px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.apkshelf-search-wrap {
	max-width: 640px !important;
	margin-left: auto !important;
}

.apkshelf-search-box {
	min-height: 46px !important;
	background: #242424 !important;
	border: 1px solid rgba(255, 255, 255, .13) !important;
	border-radius: 4px !important;
	box-shadow: inset 0 0 0 1px rgba(146, 208, 80, .12) !important;
}

.apkshelf-search-box input {
	height: 46px !important;
	color: #ffffff !important;
	font-size: 14px !important;
}

.apkshelf-search-box input::placeholder {
	color: rgba(255, 255, 255, .58) !important;
}

.apkshelf-search-box button,
.apkshelf-menu-button,
.apkshelf-search-button,
.apkshelf-drawer-close,
.apkshelf-to-top {
	width: 42px !important;
	height: 42px !important;
	border-radius: 4px !important;
	background: var(--apkshelf-lime) !important;
	color: #111 !important;
}

.apkshelf-login-button,
.apkshelf-fav-button {
	border-radius: 4px !important;
	background: rgba(255, 255, 255, .10) !important;
	border: 1px solid rgba(255, 255, 255, .13) !important;
	color: #ffffff !important;
}

.apkshelf-stage {
	padding: 16px 0 34px !important;
}

.apkshelf-primary-nav {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 8px !important;
	margin: 0 0 10px !important;
	padding: 8px !important;
	background: var(--apkshelf-black) !important;
	border: 1px solid rgba(255, 255, 255, .10) !important;
	border-radius: 4px !important;
	box-shadow: var(--apkshelf-shadow) !important;
}

.apkshelf-primary-nav a {
	justify-content: flex-start !important;
	min-height: 42px !important;
	padding: 0 12px !important;
	background: #202020 !important;
	border: 1px solid rgba(255, 255, 255, .08) !important;
	border-radius: 4px !important;
	color: #f5f5f5 !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.apkshelf-primary-nav a .fa {
	color: var(--apkshelf-lime) !important;
}

.apkshelf-primary-nav a:hover {
	background: var(--apkshelf-lime) !important;
	border-color: var(--apkshelf-lime) !important;
	color: #111 !important;
}

.apkshelf-command-strip {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 8px !important;
	margin: 0 0 14px !important;
}

.apkshelf-command-strip div {
	min-height: 38px !important;
	padding: 9px 12px !important;
	background: #ffffff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-left: 4px solid var(--apkshelf-cyan) !important;
	border-radius: 4px !important;
	color: #30363b !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	box-shadow: 0 8px 18px rgba(23, 23, 23, .05) !important;
}

.apkshelf-command-strip div:nth-child(2) {
	border-left-color: var(--apkshelf-coral) !important;
}

.apkshelf-command-strip div:nth-child(3) {
	border-left-color: var(--apkshelf-lime) !important;
}

.apkshelf-command-strip span {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 42px !important;
	height: 20px !important;
	margin-right: 8px !important;
	border-radius: 3px !important;
	background: var(--apkshelf-black) !important;
	color: var(--apkshelf-lime) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
}

.apkshelf-grid.apkshelf-row {
	display: grid !important;
	grid-template-columns: 250px minmax(0, 1fr) 230px !important;
	gap: 14px !important;
	margin-top: 0 !important;
	align-items: start !important;
}

.apkshelf-left-rail,
.apkshelf-right-rail {
	width: auto !important;
	min-width: 0 !important;
}

.apkshelf-content {
	display: flex !important;
	flex-direction: column !important;
	gap: 14px !important;
}

#dle-content {
	order: 2 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 14px !important;
}

.apkshelf-rail-card,
.apkshelf-block,
.apkshelf-page-box,
.apkshelf-seo-panel,
.apkshelf-login-box,
.apkshelf-comment,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	background: var(--apkshelf-panel) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 4px !important;
	box-shadow: var(--apkshelf-shadow) !important;
}

.apkshelf-rail-card {
	margin-bottom: 12px !important;
	overflow: hidden !important;
}

.apkshelf-rail-title {
	position: relative !important;
	padding: 12px 13px !important;
	background: var(--apkshelf-black) !important;
	border-bottom: 0 !important;
	color: #ffffff !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
}

.apkshelf-rail-title::before {
	content: "" !important;
	display: inline-block !important;
	width: 9px !important;
	height: 9px !important;
	margin-right: 8px !important;
	border-radius: 50% !important;
	background: var(--apkshelf-lime) !important;
	box-shadow: 0 0 0 4px rgba(146, 208, 80, .14) !important;
	vertical-align: 0 !important;
}

.apkshelf-icon-text .fa,
.apkshelf-rail-title .fa {
	color: var(--apkshelf-cyan) !important;
}

.apkshelf-rail-body {
	padding: 8px !important;
	background: #ffffff !important;
}

.apkshelf-link-list a {
	min-height: 31px !important;
	padding: 0 9px !important;
	border-radius: 4px !important;
	color: #333 !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

.apkshelf-link-list a::before {
	content: ">" !important;
	margin-right: 7px !important;
	color: var(--apkshelf-coral) !important;
	font-weight: 900 !important;
}

.apkshelf-link-list a:hover {
	background: #f1f7ee !important;
	color: #111 !important;
}

.apkshelf-top-row {
	min-height: 58px !important;
	padding: 8px !important;
	border-radius: 4px !important;
}

.apkshelf-top-row:hover {
	background: #f1f7ee !important;
}

.apkshelf-top-icon {
	width: 44px !important;
	height: 44px !important;
	flex: 0 0 44px !important;
	border-radius: 4px !important;
	background: #fff !important;
}

.apkshelf-block {
	overflow: hidden !important;
}

.apkshelf-block-head {
	min-height: 54px !important;
	padding: 0 14px !important;
	background: #ffffff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-block-title {
	position: relative !important;
	padding-left: 0 !important;
	color: var(--apkshelf-black) !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

.apkshelf-block-title::before {
	content: "[" !important;
	display: inline !important;
	color: var(--apkshelf-coral) !important;
	margin-right: 4px !important;
}

.apkshelf-block-title::after {
	content: "]" !important;
	display: inline !important;
	width: auto !important;
	height: auto !important;
	margin-left: 4px !important;
	background: transparent !important;
	color: var(--apkshelf-coral) !important;
}

.apkshelf-more-link {
	min-height: 32px !important;
	padding: 0 10px !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 4px !important;
	background: #f7faf8 !important;
	color: #111 !important;
	font-size: 12px !important;
	font-weight: 900 !important;
}

.apkshelf-more-link:hover {
	background: var(--apkshelf-lime) !important;
	border-color: var(--apkshelf-lime) !important;
	color: #111 !important;
}

.apkshelf-seo-panel {
	order: 1 !important;
	padding: 22px !important;
	background:
		linear-gradient(90deg, rgba(146, 208, 80, .12), rgba(9, 174, 184, .10), rgba(255, 104, 79, .10)),
		#ffffff !important;
	border-top: 4px solid var(--apkshelf-black) !important;
}

.apkshelf-seo-copy h1 {
	max-width: 920px !important;
	margin: 0 0 10px !important;
	color: var(--apkshelf-black) !important;
	font-size: 30px !important;
	line-height: 1.12 !important;
}

.apkshelf-seo-copy h2 {
	margin: 16px 0 8px !important;
	color: var(--apkshelf-black) !important;
	font-size: 17px !important;
}

.apkshelf-seo-copy p {
	max-width: 980px !important;
	margin: 0 0 9px !important;
	color: #4d5459 !important;
	line-height: 1.62 !important;
}

.apkshelf-block-body.apkshelf-app-grid {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	padding: 10px !important;
}

.apkshelf-app-card {
	position: relative !important;
	display: grid !important;
	grid-template-columns: 86px minmax(0, 1fr) 170px !important;
	grid-template-rows: auto auto !important;
	align-items: center !important;
	gap: 6px 14px !important;
	min-height: 112px !important;
	padding: 12px !important;
	background: #ffffff !important;
	border: 1px solid #dfe6e2 !important;
	border-left: 5px solid var(--apkshelf-cyan) !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}

.apkshelf-app-card:hover {
	transform: translateX(3px) !important;
	border-left-color: var(--apkshelf-coral) !important;
	box-shadow: 0 12px 24px rgba(23, 23, 23, .09) !important;
}

.apkshelf-app-card .apkshelf-app-link {
	display: contents !important;
	text-decoration: none !important;
}

.apkshelf-app-card .apkshelf-icon-box {
	grid-column: 1 !important;
	grid-row: 1 / 3 !important;
	width: 74px !important;
	height: 74px !important;
	margin: 0 !important;
	align-self: center !important;
}

.apkshelf-icon-box {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.apkshelf-icon-box::before,
.apkshelf-icon-box::after {
	display: none !important;
	content: none !important;
}

.apkshelf-app-icon {
	width: 100% !important;
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	background: #ffffff !important;
	border-radius: 4px !important;
	overflow: hidden !important;
}

.apkshelf-app-icon img,
.apkshelf-top-icon img,
.apkshelf-mini-icon img,
.apkshelf-popup-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	object-position: center center !important;
	display: block !important;
	border-radius: 4px !important;
}

.apkshelf-app-main {
	grid-column: 2 !important;
	min-width: 0 !important;
}

.apkshelf-app-name {
	min-height: 0 !important;
	margin-bottom: 5px !important;
	color: var(--apkshelf-black) !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
	text-align: left !important;
}

.apkshelf-app-excerpt {
	margin: 0 !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.42 !important;
	text-align: left !important;
}

.apkshelf-app-facts {
	grid-column: 3 !important;
	grid-row: 1 / 3 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
	align-items: stretch !important;
}

.apkshelf-app-facts span {
	display: block !important;
	min-height: 24px !important;
	padding: 5px 8px !important;
	border-radius: 4px !important;
	background: #f3f7f5 !important;
	color: #343a40 !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.apkshelf-card-meta {
	grid-column: 2 !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

.apkshelf-stars,
.apkshelf-scorebar {
	color: var(--apkshelf-amber) !important;
}

.apkshelf-story-hero {
	padding: 0 !important;
	overflow: hidden !important;
	background: #ffffff !important;
}

.apkshelf-story-hero > .apkshelf-icon-box {
	display: grid !important;
	grid-template-columns: 132px minmax(0, 1fr) 150px !important;
	gap: 18px !important;
	align-items: center !important;
	margin: 0 !important;
	padding: 22px !important;
	background: var(--apkshelf-black) !important;
	border-bottom: 4px solid var(--apkshelf-lime) !important;
	color: #ffffff !important;
}

.apkshelf-story-hero .apkshelf-app-icon {
	width: 132px !important;
	height: 132px !important;
	flex: 0 0 132px !important;
	padding: 0 !important;
	background: #ffffff !important;
	border-radius: 4px !important;
	box-shadow: 0 14px 28px rgba(0, 0, 0, .28) !important;
}

.apkshelf-story-title h1 {
	margin: 0 0 9px !important;
	color: #ffffff !important;
	font-size: 34px !important;
	line-height: 1.12 !important;
}

.apkshelf-story-lead {
	max-width: 720px !important;
	color: #dce5df !important;
	font-size: 16px !important;
	line-height: 1.5 !important;
}

.apkshelf-story-beacons {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 7px !important;
	margin-top: 12px !important;
}

.apkshelf-story-beacons span {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 28px !important;
	padding: 0 9px !important;
	border-radius: 4px !important;
	background: rgba(146, 208, 80, .14) !important;
	border: 1px solid rgba(146, 208, 80, .22) !important;
	color: #f7ffe8 !important;
	font-size: 12px !important;
	font-weight: 900 !important;
}

.apkshelf-score-panel {
	min-width: 150px !important;
	padding: 12px !important;
	background: #242424 !important;
	border: 1px solid rgba(255, 255, 255, .14) !important;
	border-radius: 4px !important;
	color: #ffffff !important;
	box-shadow: none !important;
}

.apkshelf-favorite,
.apkshelf-favorite a {
	color: var(--apkshelf-lime) !important;
	font-weight: 900 !important;
}

.apkshelf-spec-grid {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: var(--apkshelf-line) !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-spec-item {
	min-height: 78px !important;
	padding: 12px !important;
	background: #ffffff !important;
	border: 0 !important;
	border-radius: 0 !important;
}

.apkshelf-spec-item div {
	color: #747b82 !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
}

.apkshelf-spec-item span {
	color: var(--apkshelf-black) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.34 !important;
	overflow-wrap: anywhere !important;
}

.apkshelf-story-body,
.apkshelf-gallery-stage,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	margin-left: 18px !important;
	margin-right: 18px !important;
}

.apkshelf-rich-text {
	color: #303438 !important;
	font-size: 16px !important;
	line-height: 1.72 !important;
}

.apkshelf-rich-text h2,
.apkshelf-rich-text h3 {
	color: var(--apkshelf-black) !important;
	line-height: 1.25 !important;
}

.apkshelf-message {
	background: #f3fbf6 !important;
	border-color: rgba(9, 174, 184, .24) !important;
	border-left: 5px solid var(--apkshelf-cyan) !important;
}

.apkshelf-install-title {
	color: #111 !important;
}

.apkshelf-promo-card {
	grid-template-columns: minmax(0, 1fr) 180px !important;
	background: #ffffff !important;
}

.apkshelf-promo-link {
	background: #f1f7ee !important;
	color: #111 !important;
	border-radius: 4px !important;
}

.apkshelf-download-card {
	margin-bottom: 18px !important;
	background: var(--apkshelf-black) !important;
	border-color: var(--apkshelf-black) !important;
	color: #ffffff !important;
}

.apkshelf-download-title {
	color: #ffffff !important;
}

.apkshelf-download-button {
	border-radius: 4px !important;
	background: linear-gradient(90deg, var(--apkshelf-lime), var(--apkshelf-cyan)) !important;
	color: #111 !important;
}

.apkshelf-download-icon {
	background: rgba(255, 255, 255, .18) !important;
	border-radius: 4px !important;
}

.apkshelf-related-block {
	margin-top: 14px !important;
}

.apkshelf-gate-dialog,
.apkshelf-gate-close,
.apkshelf-gate-action {
	border-radius: 4px !important;
}

.apkshelf-footer {
	background: var(--apkshelf-black) !important;
	border-color: var(--apkshelf-black) !important;
	color: #ffffff !important;
}

.apkshelf-footer-copy,
.apkshelf-footer-menu a {
	color: #dce5df !important;
}

@media (max-width: 1180px) {
	.apkshelf-grid.apkshelf-row {
		grid-template-columns: 230px minmax(0, 1fr) !important;
	}
	.apkshelf-right-rail {
		display: none !important;
	}
	.apkshelf-spec-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 950px) {
	.apkshelf-grid.apkshelf-row {
		display: block !important;
	}
	.apkshelf-left-rail,
	.apkshelf-right-rail {
		display: none !important;
	}
	.apkshelf-command-strip {
		grid-template-columns: 1fr !important;
	}
	.apkshelf-primary-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.apkshelf-story-hero > .apkshelf-icon-box {
		grid-template-columns: 118px minmax(0, 1fr) !important;
		padding: 18px !important;
	}
	.apkshelf-story-hero .apkshelf-app-icon {
		width: 118px !important;
		height: 118px !important;
		flex-basis: 118px !important;
	}
	.apkshelf-score-panel {
		grid-column: 1 / -1 !important;
	}
	.apkshelf-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	.apkshelf-frame {
		width: min(100% - 16px, 1340px) !important;
	}
	.apkshelf-topbar-inner {
		min-height: 64px !important;
	}
	.apkshelf-brand {
		min-width: 0 !important;
	}
	.apkshelf-brand::after {
		content: "Androfinoa" !important;
		font-size: 17px !important;
	}
	.apkshelf-primary-nav {
		grid-template-columns: 1fr !important;
	}
	.apkshelf-seo-panel {
		padding: 18px !important;
	}
	.apkshelf-seo-copy h1 {
		font-size: 25px !important;
	}
	.apkshelf-app-card {
		grid-template-columns: 76px minmax(0, 1fr) !important;
		min-height: 126px !important;
		padding: 11px !important;
	}
	.apkshelf-app-card .apkshelf-icon-box {
		width: 66px !important;
		height: 66px !important;
	}
	.apkshelf-app-facts {
		grid-column: 2 !important;
		grid-row: auto !important;
		flex-direction: row !important;
		flex-wrap: wrap !important;
	}
	.apkshelf-app-facts span {
		min-height: 22px !important;
		font-size: 11px !important;
	}
	.apkshelf-story-hero > .apkshelf-icon-box {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		padding: 16px !important;
	}
	.apkshelf-story-title h1 {
		font-size: 27px !important;
	}
	.apkshelf-spec-grid {
		grid-template-columns: 1fr !important;
	}
	.apkshelf-story-body,
	.apkshelf-gallery-stage,
	.apkshelf-message,
	.apkshelf-promo-card,
	.apkshelf-download-card {
		margin-left: 12px !important;
		margin-right: 12px !important;
	}
	.apkshelf-promo-card {
		grid-template-columns: 1fr !important;
	}
}

/* androidus-apkshelf: final clean APK index layout */
:root {
	--apkshelf-ink: #151821;
	--apkshelf-muted: #5f6c80;
	--apkshelf-bg: #f6f8fb;
	--apkshelf-card: #ffffff;
	--apkshelf-soft: #eef3f8;
	--apkshelf-line: #d9e2ec;
	--apkshelf-blue: #2563eb;
	--apkshelf-green: #16a34a;
	--apkshelf-orange: #f97316;
	--apkshelf-cyan: #0891b2;
	--apkshelf-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

html,
body {
	background: var(--apkshelf-bg) !important;
	color: var(--apkshelf-ink) !important;
	font-family: Arial, "Helvetica Neue", sans-serif !important;
	letter-spacing: 0 !important;
}

a {
	color: var(--apkshelf-blue) !important;
}

.apkshelf-shell {
	background:
		linear-gradient(180deg, #ffffff 0, #ffffff 118px, var(--apkshelf-bg) 118px, var(--apkshelf-bg) 100%) !important;
	min-height: 100vh !important;
}

.apkshelf-frame {
	width: min(100% - 32px, 1240px) !important;
}

.apkshelf-topbar {
	position: sticky !important;
	top: 0 !important;
	z-index: 60 !important;
	background: rgba(255, 255, 255, .96) !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .05) !important;
	backdrop-filter: blur(10px) !important;
}

.apkshelf-topbar-inner {
	min-height: 70px !important;
	gap: 18px !important;
}

.apkshelf-brand {
	width: auto !important;
	min-width: 218px !important;
	gap: 10px !important;
	text-decoration: none !important;
}

.apkshelf-brand img,
.apkshelf-footer-brand img {
	width: 38px !important;
	height: 38px !important;
	object-fit: contain !important;
}

.apkshelf-brand::after {
	content: "Androfinoa APK" !important;
	display: inline-block !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	color: var(--apkshelf-ink) !important;
}

.apkshelf-brand::before {
	display: none !important;
}

.apkshelf-search-wrap {
	max-width: 520px !important;
	margin-left: auto !important;
}

.apkshelf-search-box {
	height: 48px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.8) !important;
	overflow: hidden !important;
}

.apkshelf-search-box input {
	height: 48px !important;
	padding: 0 56px 0 18px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 14px !important;
}

.apkshelf-search-box button,
.apkshelf-menu-button,
.apkshelf-search-button,
.apkshelf-drawer-close,
.apkshelf-to-top {
	width: 42px !important;
	height: 42px !important;
	border-radius: 8px !important;
	background: var(--apkshelf-blue) !important;
	color: #fff !important;
}

.apkshelf-search-box button {
	top: 3px !important;
	right: 3px !important;
}

.apkshelf-login-button,
.apkshelf-fav-button {
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-ink) !important;
}

.apkshelf-stage {
	padding-top: 22px !important;
}

.apkshelf-primary-nav {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto !important;
	gap: 10px !important;
	margin: 0 0 14px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.apkshelf-primary-nav li {
	min-width: 0 !important;
}

.apkshelf-primary-nav a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 44px !important;
	padding: 0 14px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	box-shadow: 0 8px 18px rgba(15,23,42,.05) !important;
	text-decoration: none !important;
}

.apkshelf-primary-nav a .fa {
	color: var(--apkshelf-green) !important;
}

.apkshelf-primary-nav a:hover {
	background: var(--apkshelf-ink) !important;
	border-color: var(--apkshelf-ink) !important;
	color: #fff !important;
}

.apkshelf-command-strip {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 0 18px !important;
}

.apkshelf-command-strip div {
	min-height: 54px !important;
	padding: 12px 14px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.35 !important;
	box-shadow: 0 8px 18px rgba(15,23,42,.05) !important;
}

.apkshelf-command-strip span {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 24px !important;
	margin-right: 6px !important;
	padding: 0 8px !important;
	background: rgba(37, 99, 235, .10) !important;
	border-radius: 6px !important;
	color: var(--apkshelf-blue) !important;
	font-weight: 800 !important;
}

.apkshelf-grid.apkshelf-row {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	grid-template-areas:
		"content"
		"left"
		"right" !important;
	gap: 18px !important;
	align-items: start !important;
}

.apkshelf-content {
	grid-area: content !important;
	width: min(100%, 1040px) !important;
	max-width: 1040px !important;
	margin: 0 auto !important;
	order: 0 !important;
}

.apkshelf-left-rail {
	grid-area: left !important;
}

.apkshelf-right-rail {
	grid-area: right !important;
}

.apkshelf-left-rail,
.apkshelf-right-rail {
	width: 100% !important;
	max-width: none !important;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 14px !important;
	order: 0 !important;
}

.apkshelf-rail-card,
.apkshelf-block,
.apkshelf-page-box,
.apkshelf-seo-panel,
.apkshelf-login-box,
.apkshelf-comment,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	background: var(--apkshelf-card) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: var(--apkshelf-shadow) !important;
	overflow: hidden !important;
}

.apkshelf-rail-card {
	min-height: 100% !important;
}

.apkshelf-rail-title,
.apkshelf-block-head {
	min-height: 54px !important;
	padding: 0 18px !important;
	background: #fff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
	color: var(--apkshelf-ink) !important;
	font-size: 17px !important;
	font-weight: 800 !important;
}

.apkshelf-rail-title {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}

.apkshelf-rail-title::before,
.apkshelf-block-title::before,
.apkshelf-block-title::after {
	display: none !important;
}

.apkshelf-icon-text .fa,
.apkshelf-rail-title .fa {
	color: var(--apkshelf-blue) !important;
}

.apkshelf-rail-body {
	padding: 10px !important;
}

.apkshelf-link-list {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 8px !important;
}

.apkshelf-link-list a {
	display: flex !important;
	align-items: center !important;
	min-height: 36px !important;
	padding: 0 10px !important;
	background: var(--apkshelf-soft) !important;
	border: 1px solid transparent !important;
	border-radius: 6px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	text-decoration: none !important;
}

.apkshelf-link-list a::before {
	content: "" !important;
	width: 6px !important;
	height: 6px !important;
	margin-right: 8px !important;
	border-radius: 50% !important;
	background: var(--apkshelf-green) !important;
}

.apkshelf-link-list a:hover {
	background: #fff !important;
	border-color: var(--apkshelf-blue) !important;
	color: var(--apkshelf-blue) !important;
}

.apkshelf-top-row {
	min-height: 58px !important;
	padding: 8px 0 !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-top-icon {
	width: 42px !important;
	height: 42px !important;
	border-radius: 8px !important;
}

.apkshelf-seo-panel {
	position: relative !important;
	margin-bottom: 18px !important;
	padding: 28px !important;
	background:
		linear-gradient(90deg, rgba(37,99,235,.08), rgba(22,163,74,.06)),
		#fff !important;
}

.apkshelf-seo-panel::before {
	content: "APK Android" !important;
	display: inline-flex !important;
	align-items: center !important;
	min-height: 26px !important;
	margin-bottom: 12px !important;
	padding: 0 10px !important;
	border-radius: 6px !important;
	background: rgba(22, 163, 74, .12) !important;
	color: var(--apkshelf-green) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
}

.apkshelf-seo-copy h1 {
	max-width: 820px !important;
	margin: 0 0 14px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 36px !important;
	font-weight: 800 !important;
	line-height: 1.12 !important;
	letter-spacing: 0 !important;
}

.apkshelf-seo-copy h2 {
	margin: 22px 0 8px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	letter-spacing: 0 !important;
}

.apkshelf-seo-copy p {
	max-width: 900px !important;
	margin: 0 0 10px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 16px !important;
	line-height: 1.68 !important;
}

#dle-content > .apkshelf-block,
.apkshelf-content > .apkshelf-block {
	margin-bottom: 18px !important;
}

.apkshelf-block-title {
	color: var(--apkshelf-ink) !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
}

.apkshelf-more-link {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 32px !important;
	padding: 0 11px !important;
	background: var(--apkshelf-soft) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 6px !important;
	color: var(--apkshelf-blue) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

.apkshelf-block-body.apkshelf-app-grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 10px !important;
	padding: 14px !important;
}

.apkshelf-app-tile {
	width: 100% !important;
	float: none !important;
	padding: 0 !important;
}

.apkshelf-app-card {
	position: relative !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 180px 80px !important;
	align-items: center !important;
	gap: 12px !important;
	min-height: 104px !important;
	padding: 13px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-left: 4px solid var(--apkshelf-green) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.apkshelf-app-card:hover {
	border-left-color: var(--apkshelf-orange) !important;
	box-shadow: 0 12px 24px rgba(15,23,42,.08) !important;
	transform: translateY(-1px) !important;
}

.apkshelf-app-card .apkshelf-app-link {
	display: grid !important;
	grid-template-columns: 78px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 14px !important;
	min-width: 0 !important;
	text-decoration: none !important;
}

.apkshelf-app-card .apkshelf-icon-box {
	width: 78px !important;
	height: 78px !important;
	background: var(--apkshelf-soft) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	padding: 7px !important;
	overflow: hidden !important;
}

.apkshelf-icon-box::before,
.apkshelf-icon-box::after {
	display: none !important;
}

.apkshelf-app-icon {
	width: 100% !important;
	height: 100% !important;
	border-radius: 8px !important;
	background: #fff !important;
	overflow: hidden !important;
}

.apkshelf-app-icon img,
.apkshelf-top-icon img,
.apkshelf-mini-icon img,
.apkshelf-popup-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: inherit !important;
}

.apkshelf-app-main {
	min-width: 0 !important;
}

.apkshelf-app-name,
.apkshelf-app-name.apkshelf-nowrap {
	display: block !important;
	max-height: 44px !important;
	white-space: normal !important;
	overflow: hidden !important;
	color: var(--apkshelf-ink) !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	line-height: 1.22 !important;
}

.apkshelf-app-excerpt {
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	margin-top: 6px !important;
	overflow: hidden !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

.apkshelf-app-facts {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 6px !important;
	align-items: stretch !important;
}

.apkshelf-app-facts span {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 26px !important;
	padding: 0 8px !important;
	background: var(--apkshelf-soft) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 6px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	white-space: nowrap !important;
}

.apkshelf-card-meta {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 42px !important;
	background: rgba(249, 115, 22, .10) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-orange) !important;
	font-weight: 800 !important;
}

.apkshelf-stars,
.apkshelf-scorebar {
	color: var(--apkshelf-orange) !important;
}

.apkshelf-story-hero {
	margin-bottom: 18px !important;
	background: #fff !important;
}

.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
	display: grid !important;
	grid-template-columns: 132px minmax(0, 1fr) 190px !important;
	align-items: center !important;
	gap: 20px !important;
	padding: 22px !important;
	background:
		linear-gradient(90deg, rgba(37,99,235,.08), rgba(8,145,178,.06)),
		#fff !important;
	border: 0 !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px 8px 0 0 !important;
}

.apkshelf-story-hero .apkshelf-app-icon {
	width: 132px !important;
	height: 132px !important;
	border-radius: 8px !important;
	box-shadow: 0 14px 28px rgba(15,23,42,.16) !important;
	flex: none !important;
}

.apkshelf-app-badge {
	border-radius: 6px !important;
}

.apkshelf-story-title {
	min-width: 0 !important;
}

.apkshelf-story-title h1 {
	margin: 0 0 10px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 38px !important;
	font-weight: 800 !important;
	line-height: 1.12 !important;
	letter-spacing: 0 !important;
}

.apkshelf-story-lead {
	max-width: 720px !important;
	margin: 0 !important;
	color: var(--apkshelf-muted) !important;
	font-size: 16px !important;
	line-height: 1.55 !important;
}

.apkshelf-story-beacons {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	margin-top: 14px !important;
}

.apkshelf-story-beacons span {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 30px !important;
	padding: 0 10px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 6px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

.apkshelf-score-panel {
	display: grid !important;
	gap: 10px !important;
	padding: 14px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-ink) !important;
	box-shadow: none !important;
}

.apkshelf-favorite,
.apkshelf-favorite a {
	color: var(--apkshelf-blue) !important;
	font-weight: 800 !important;
}

.apkshelf-spec-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 10px !important;
	padding: 14px !important;
	margin: 0 !important;
	background: #fff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-spec-item {
	min-height: 78px !important;
	padding: 12px !important;
	background: var(--apkshelf-soft) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
}

.apkshelf-spec-item div {
	margin-bottom: 6px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
}

.apkshelf-spec-item span {
	display: block !important;
	color: var(--apkshelf-ink) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
	word-break: break-word !important;
}

.apkshelf-spec-item-wide {
	grid-column: span 2 !important;
}

.apkshelf-story-body,
.apkshelf-gallery-stage,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	margin: 16px !important;
}

.apkshelf-rich-text {
	color: #293241 !important;
	font-size: 16px !important;
	line-height: 1.72 !important;
}

.apkshelf-rich-text h2,
.apkshelf-rich-text h3 {
	margin: 24px 0 12px !important;
	color: var(--apkshelf-ink) !important;
	font-weight: 800 !important;
	line-height: 1.25 !important;
}

.apkshelf-gallery-stage img,
.apkshelf-story-body img {
	max-width: 100% !important;
	height: auto !important;
	border-radius: 8px !important;
}

.apkshelf-message {
	padding: 18px !important;
	background: linear-gradient(90deg, rgba(22,163,74,.10), rgba(8,145,178,.08)) !important;
	border-left: 4px solid var(--apkshelf-green) !important;
}

.apkshelf-install-title {
	margin-top: 0 !important;
	color: var(--apkshelf-ink) !important;
}

.apkshelf-install-steps {
	margin: 12px 0 0 20px !important;
}

.apkshelf-install-steps li {
	margin-bottom: 8px !important;
}

.apkshelf-promo-card {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 220px !important;
	gap: 14px !important;
	align-items: center !important;
	padding: 14px !important;
}

.apkshelf-promo-image img {
	display: block !important;
	width: 100% !important;
	border-radius: 8px !important;
}

.apkshelf-promo-actions {
	display: grid !important;
	gap: 10px !important;
}

.apkshelf-promo-link {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 42px !important;
	padding: 0 12px !important;
	border-radius: 8px !important;
	background: var(--apkshelf-soft) !important;
	color: var(--apkshelf-blue) !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

.apkshelf-download-card {
	background: var(--apkshelf-ink) !important;
	border-color: var(--apkshelf-ink) !important;
	color: #fff !important;
}

.apkshelf-download-title {
	color: #fff !important;
	font-size: 20px !important;
	font-weight: 800 !important;
}

.apkshelf-download-button {
	min-height: 58px !important;
	border-radius: 8px !important;
	background: linear-gradient(90deg, var(--apkshelf-green), var(--apkshelf-blue)) !important;
	color: #fff !important;
}

.apkshelf-download-icon {
	width: 56px !important;
	height: 56px !important;
	border-radius: 8px !important;
}

.apkshelf-related-block .apkshelf-block-body.apkshelf-app-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.apkshelf-related-block .apkshelf-app-card {
	grid-template-columns: minmax(0, 1fr) !important;
}

.apkshelf-related-block .apkshelf-app-facts,
.apkshelf-related-block .apkshelf-card-meta {
	display: none !important;
}

.apkshelf-gate-dialog {
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-ink) !important;
}

.apkshelf-gate-close,
.apkshelf-gate-action {
	border-radius: 8px !important;
}

.apkshelf-gate-heading {
	color: var(--apkshelf-ink) !important;
}

.apkshelf-gate-ad-text,
.apkshelf-gate-timer {
	color: var(--apkshelf-muted) !important;
}

.apkshelf-footer {
	margin-top: 22px !important;
	padding: 24px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: var(--apkshelf-shadow) !important;
}

.apkshelf-footer-copy,
.apkshelf-footer-menu a {
	color: var(--apkshelf-muted) !important;
}

@media (max-width: 1180px) {
	.apkshelf-left-rail,
	.apkshelf-right-rail {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
		grid-template-columns: 118px minmax(0, 1fr) !important;
	}

	.apkshelf-score-panel {
		grid-column: 1 / -1 !important;
	}
}

@media (max-width: 860px) {
	.apkshelf-frame {
		width: min(100% - 20px, 1240px) !important;
	}

	.apkshelf-topbar-inner {
		min-height: 64px !important;
	}

	.apkshelf-brand {
		min-width: 0 !important;
	}

	.apkshelf-brand::after {
		font-size: 18px !important;
	}

	.apkshelf-search-wrap {
		display: none !important;
	}

	.apkshelf-primary-nav,
	.apkshelf-command-strip {
		grid-template-columns: 1fr 1fr !important;
	}

	.apkshelf-share-slot,
	.apkshelf-command-strip div:nth-child(3) {
		display: none !important;
	}

	.apkshelf-left-rail,
	.apkshelf-right-rail {
		display: none !important;
	}

	.apkshelf-seo-panel {
		padding: 20px !important;
	}

	.apkshelf-seo-copy h1 {
		font-size: 27px !important;
	}

	.apkshelf-seo-copy h2 {
		font-size: 19px !important;
	}

	.apkshelf-block-body.apkshelf-app-grid {
		padding: 10px !important;
	}

	.apkshelf-app-card {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 10px !important;
	}

	.apkshelf-app-card .apkshelf-app-link {
		grid-template-columns: 68px minmax(0, 1fr) !important;
	}

	.apkshelf-app-card .apkshelf-icon-box {
		width: 68px !important;
		height: 68px !important;
	}

	.apkshelf-app-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.apkshelf-card-meta {
		min-height: 34px !important;
	}

	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
		grid-template-columns: 1fr !important;
		padding: 16px !important;
	}

	.apkshelf-story-hero .apkshelf-app-icon {
		width: 112px !important;
		height: 112px !important;
	}

	.apkshelf-story-title h1 {
		font-size: 28px !important;
	}

	.apkshelf-spec-grid {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-spec-item-wide {
		grid-column: auto !important;
	}

	.apkshelf-related-block .apkshelf-block-body.apkshelf-app-grid,
	.apkshelf-promo-card {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-story-body,
	.apkshelf-gallery-stage,
	.apkshelf-message,
	.apkshelf-promo-card,
	.apkshelf-download-card {
		margin: 12px !important;
	}
}

@media (max-width: 520px) {
	.apkshelf-frame {
		width: min(100% - 14px, 1240px) !important;
	}

	.apkshelf-primary-nav,
	.apkshelf-command-strip,
	.apkshelf-app-facts {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-primary-nav a {
		justify-content: flex-start !important;
	}

	.apkshelf-seo-copy h1,
	.apkshelf-story-title h1 {
		font-size: 25px !important;
	}

	.apkshelf-app-card .apkshelf-app-link {
		grid-template-columns: 60px minmax(0, 1fr) !important;
	}

	.apkshelf-app-card .apkshelf-icon-box {
		width: 60px !important;
		height: 60px !important;
	}

	.apkshelf-app-name,
	.apkshelf-app-name.apkshelf-nowrap {
		font-size: 16px !important;
	}
}

/* androidus-apkshelf: last-line readable tiles */
.apkshelf-block-body.apkshelf-app-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.apkshelf-app-card {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	min-height: 176px !important;
	gap: 10px !important;
	padding: 13px !important;
}

.apkshelf-app-card .apkshelf-app-link {
	position: static !important;
	display: grid !important;
	grid-template-columns: 72px minmax(0, 1fr) !important;
	align-items: start !important;
	gap: 12px !important;
	width: 100% !important;
	min-height: 84px !important;
}

.apkshelf-app-card .apkshelf-icon-box {
	position: static !important;
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 72px !important;
	height: 72px !important;
}

.apkshelf-app-main {
	position: static !important;
	display: block !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	min-width: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-name,
.apkshelf-app-name.apkshelf-nowrap {
	position: static !important;
	display: block !important;
	max-height: 42px !important;
	min-height: 20px !important;
	overflow: hidden !important;
	white-space: normal !important;
	color: var(--apkshelf-ink) !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.22 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-excerpt {
	position: static !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	min-height: 38px !important;
	max-height: 38px !important;
	margin-top: 6px !important;
	overflow: hidden !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-facts {
	position: static !important;
	inset: auto !important;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 6px !important;
	margin-top: auto !important;
}

.apkshelf-app-card > .apkshelf-card-meta {
	display: none !important;
	position: static !important;
}

@media (max-width: 860px) {
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-app-card {
		min-height: 0 !important;
	}
}

/* androidus-apkshelf: readable tile correction */
.apkshelf-block-body.apkshelf-app-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.apkshelf-app-card {
	display: flex !important;
	flex-direction: column !important;
	min-height: 176px !important;
	gap: 10px !important;
}

.apkshelf-app-card .apkshelf-app-link {
	display: grid !important;
	grid-template-columns: 72px minmax(0, 1fr) !important;
	align-items: start !important;
	gap: 12px !important;
	width: 100% !important;
	min-height: 84px !important;
}

.apkshelf-app-card .apkshelf-icon-box {
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 72px !important;
	height: 72px !important;
}

.apkshelf-app-main {
	display: block !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	min-width: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-name,
.apkshelf-app-name.apkshelf-nowrap {
	display: block !important;
	max-height: 42px !important;
	min-height: 20px !important;
	overflow: hidden !important;
	white-space: normal !important;
	color: var(--apkshelf-ink) !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.22 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-excerpt {
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	min-height: 38px !important;
	max-height: 38px !important;
	margin-top: 6px !important;
	overflow: hidden !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-facts {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 6px !important;
	margin-top: auto !important;
}

.apkshelf-app-facts span {
	min-width: 0 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

@media (max-width: 860px) {
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-app-card {
		min-height: 0 !important;
	}
}

/* androidus-apkshelf: list rating cleanup */
.apkshelf-app-card {
	grid-template-columns: minmax(0, 1fr) 180px !important;
}

.apkshelf-app-card > .apkshelf-card-meta {
	display: none !important;
}

@media (max-width: 860px) {
	.apkshelf-app-card {
		grid-template-columns: minmax(0, 1fr) !important;
	}
}

/* androidus-apkshelf: final multi-column APK catalogue */
:root {
	--apkshelf-ink: #101828;
	--apkshelf-muted: #667085;
	--apkshelf-bg: #f4f7fb;
	--apkshelf-card: #ffffff;
	--apkshelf-line: #dbe3ee;
	--apkshelf-blue: #1d4ed8;
	--apkshelf-green: #159947;
	--apkshelf-orange: #f97316;
	--apkshelf-red: #e11d48;
	--apkshelf-soft-blue: #eef5ff;
	--apkshelf-soft-green: #edf8f1;
	--apkshelf-shadow: 0 10px 24px rgba(16, 24, 40, .08);
}

html,
body {
	background: var(--apkshelf-bg) !important;
	color: var(--apkshelf-ink) !important;
	font-family: Arial, "Helvetica Neue", sans-serif !important;
	letter-spacing: 0 !important;
}

a {
	color: var(--apkshelf-blue) !important;
}

.apkshelf-shell {
	min-height: 100vh !important;
	background:
		linear-gradient(180deg, #ffffff 0, #ffffff 84px, var(--apkshelf-bg) 84px, var(--apkshelf-bg) 100%) !important;
}

.apkshelf-frame {
	width: min(100% - 34px, 1320px) !important;
}

.apkshelf-topbar {
	position: sticky !important;
	top: 0 !important;
	z-index: 80 !important;
	background: rgba(255,255,255,.97) !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
	box-shadow: 0 8px 22px rgba(16,24,40,.05) !important;
	backdrop-filter: blur(10px) !important;
}

.apkshelf-topbar-inner {
	min-height: 72px !important;
	gap: 16px !important;
}

.apkshelf-brand {
	width: auto !important;
	min-width: 216px !important;
	gap: 10px !important;
	text-decoration: none !important;
}

.apkshelf-brand img,
.apkshelf-footer-brand img {
	width: 38px !important;
	height: 38px !important;
	object-fit: contain !important;
}

.apkshelf-brand::before {
	display: none !important;
}

.apkshelf-brand::after {
	content: "Androfinoa APK" !important;
	display: inline-block !important;
	color: var(--apkshelf-ink) !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
}

.apkshelf-search-wrap {
	max-width: 540px !important;
	margin-left: auto !important;
}

.apkshelf-search-box {
	height: 48px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.9) !important;
	overflow: hidden !important;
}

.apkshelf-search-box input {
	height: 48px !important;
	padding: 0 58px 0 18px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 14px !important;
}

.apkshelf-search-box input::placeholder {
	color: #98a2b3 !important;
}

.apkshelf-search-box button,
.apkshelf-menu-button,
.apkshelf-search-button,
.apkshelf-drawer-close,
.apkshelf-to-top {
	width: 42px !important;
	height: 42px !important;
	border-radius: 8px !important;
	background: var(--apkshelf-green) !important;
	color: #fff !important;
}

.apkshelf-search-box button {
	top: 3px !important;
	right: 3px !important;
}

.apkshelf-login-button,
.apkshelf-fav-button {
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-ink) !important;
}

.apkshelf-stage {
	padding-top: 18px !important;
}

.apkshelf-primary-nav {
	display: grid !important;
	grid-template-columns: 1.05fr 1fr 1fr 1fr auto !important;
	gap: 10px !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.apkshelf-primary-nav a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 44px !important;
	padding: 0 14px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	box-shadow: 0 6px 14px rgba(16,24,40,.04) !important;
}

.apkshelf-primary-nav a .fa {
	color: var(--apkshelf-green) !important;
}

.apkshelf-primary-nav a:hover {
	background: var(--apkshelf-blue) !important;
	border-color: var(--apkshelf-blue) !important;
	color: #fff !important;
}

.apkshelf-command-strip {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 0 18px !important;
}

.apkshelf-command-strip div {
	display: flex !important;
	align-items: center !important;
	min-height: 50px !important;
	padding: 10px 14px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
}

.apkshelf-command-strip span {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 25px !important;
	margin-right: 9px !important;
	padding: 0 9px !important;
	background: var(--apkshelf-soft-green) !important;
	border-radius: 6px !important;
	color: var(--apkshelf-green) !important;
	font-weight: 900 !important;
}

.apkshelf-grid.apkshelf-row {
	display: grid !important;
	grid-template-columns: 230px minmax(0, 1fr) 260px !important;
	grid-template-areas: "left content right" !important;
	gap: 16px !important;
	align-items: start !important;
}

.apkshelf-left-rail {
	grid-area: left !important;
}

.apkshelf-content {
	grid-area: content !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.apkshelf-right-rail {
	grid-area: right !important;
}

.apkshelf-left-rail,
.apkshelf-right-rail {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 12px !important;
	width: 100% !important;
	max-width: none !important;
	position: sticky !important;
	top: 96px !important;
}

.apkshelf-rail-card,
.apkshelf-block,
.apkshelf-page-box,
.apkshelf-seo-panel,
.apkshelf-login-box,
.apkshelf-comment,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	background: var(--apkshelf-card) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: var(--apkshelf-shadow) !important;
	overflow: hidden !important;
}

.apkshelf-rail-card {
	box-shadow: 0 7px 18px rgba(16,24,40,.06) !important;
}

.apkshelf-rail-title,
.apkshelf-block-head {
	display: flex !important;
	align-items: center !important;
	min-height: 50px !important;
	padding: 0 14px !important;
	background: #fff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
	color: var(--apkshelf-ink) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

.apkshelf-rail-title::before,
.apkshelf-block-title::before,
.apkshelf-block-title::after {
	display: none !important;
}

.apkshelf-icon-text .fa,
.apkshelf-rail-title .fa {
	margin-right: 8px !important;
	color: var(--apkshelf-blue) !important;
}

.apkshelf-rail-body {
	padding: 10px !important;
}

.apkshelf-link-list {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 6px !important;
}

.apkshelf-link-list a {
	display: flex !important;
	align-items: center !important;
	min-height: 34px !important;
	padding: 0 10px !important;
	background: var(--apkshelf-bg) !important;
	border: 1px solid transparent !important;
	border-radius: 6px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

.apkshelf-link-list a::before {
	content: "" !important;
	width: 6px !important;
	height: 6px !important;
	margin-right: 8px !important;
	border-radius: 50% !important;
	background: var(--apkshelf-orange) !important;
}

.apkshelf-link-list a:hover {
	background: var(--apkshelf-soft-blue) !important;
	border-color: #bfdbfe !important;
	color: var(--apkshelf-blue) !important;
}

.apkshelf-top-row {
	min-height: 56px !important;
	padding: 7px 0 !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-top-icon {
	width: 40px !important;
	height: 40px !important;
	border-radius: 8px !important;
}

.apkshelf-seo-panel {
	position: relative !important;
	margin-bottom: 16px !important;
	padding: 24px !important;
	background:
		linear-gradient(90deg, rgba(29,78,216,.08), rgba(21,153,71,.08)),
		#fff !important;
}

.apkshelf-seo-panel::before {
	content: "APK каталог" !important;
	display: inline-flex !important;
	align-items: center !important;
	min-height: 26px !important;
	margin-bottom: 12px !important;
	padding: 0 10px !important;
	background: var(--apkshelf-soft-green) !important;
	border-radius: 6px !important;
	color: var(--apkshelf-green) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
}

.apkshelf-seo-copy h1 {
	max-width: 760px !important;
	margin: 0 0 12px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 34px !important;
	font-weight: 900 !important;
	line-height: 1.12 !important;
	letter-spacing: 0 !important;
}

.apkshelf-seo-copy h2 {
	margin: 20px 0 8px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 21px !important;
	font-weight: 900 !important;
	line-height: 1.22 !important;
	letter-spacing: 0 !important;
}

.apkshelf-seo-copy p {
	max-width: 840px !important;
	margin: 0 0 10px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 15px !important;
	line-height: 1.7 !important;
}

.apkshelf-block {
	margin-bottom: 16px !important;
}

.apkshelf-block-title {
	color: var(--apkshelf-ink) !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.apkshelf-more-link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 32px !important;
	padding: 0 10px !important;
	background: var(--apkshelf-soft-blue) !important;
	border: 1px solid #bfdbfe !important;
	border-radius: 6px !important;
	color: var(--apkshelf-blue) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

.apkshelf-block-body.apkshelf-app-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px !important;
	padding: 14px !important;
}

.apkshelf-app-tile {
	width: 100% !important;
	float: none !important;
	padding: 0 !important;
}

.apkshelf-app-card {
	display: grid !important;
	grid-template-columns: 1fr !important;
	align-content: start !important;
	gap: 10px !important;
	min-height: 236px !important;
	padding: 13px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-top: 4px solid var(--apkshelf-blue) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

.apkshelf-app-card:hover {
	border-top-color: var(--apkshelf-orange) !important;
	box-shadow: 0 13px 26px rgba(16,24,40,.09) !important;
	transform: translateY(-2px) !important;
}

.apkshelf-app-card .apkshelf-app-link {
	display: grid !important;
	grid-template-columns: 74px minmax(0, 1fr) !important;
	align-items: start !important;
	gap: 12px !important;
	text-decoration: none !important;
	min-width: 0 !important;
}

.apkshelf-app-card .apkshelf-icon-box {
	width: 74px !important;
	height: 74px !important;
	padding: 6px !important;
	background: var(--apkshelf-bg) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	overflow: hidden !important;
}

.apkshelf-icon-box::before,
.apkshelf-icon-box::after {
	display: none !important;
}

.apkshelf-app-icon {
	width: 100% !important;
	height: 100% !important;
	border-radius: 8px !important;
	background: #fff !important;
	overflow: hidden !important;
}

.apkshelf-app-icon img,
.apkshelf-top-icon img,
.apkshelf-mini-icon img,
.apkshelf-popup-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: inherit !important;
}

.apkshelf-app-main {
	min-width: 0 !important;
}

.apkshelf-app-name,
.apkshelf-app-name.apkshelf-nowrap {
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	white-space: normal !important;
	max-height: 44px !important;
	overflow: hidden !important;
	color: var(--apkshelf-ink) !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.22 !important;
}

.apkshelf-app-excerpt {
	display: -webkit-box !important;
	-webkit-line-clamp: 3 !important;
	-webkit-box-orient: vertical !important;
	min-height: 58px !important;
	margin-top: 7px !important;
	overflow: hidden !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.48 !important;
}

.apkshelf-app-facts {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 6px !important;
}

.apkshelf-app-facts span {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 28px !important;
	padding: 0 7px !important;
	background: var(--apkshelf-bg) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 6px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.apkshelf-app-card > .apkshelf-card-meta {
	display: none !important;
}

.apkshelf-story-hero {
	margin-bottom: 16px !important;
	background: #fff !important;
}

.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
	display: grid !important;
	grid-template-columns: 148px minmax(0, 1fr) 190px !important;
	align-items: center !important;
	gap: 20px !important;
	padding: 22px !important;
	background:
		linear-gradient(90deg, rgba(21,153,71,.10), rgba(29,78,216,.08)),
		#fff !important;
	border: 0 !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-story-hero .apkshelf-app-icon {
	width: 148px !important;
	height: 148px !important;
	border-radius: 8px !important;
	box-shadow: 0 14px 28px rgba(16,24,40,.16) !important;
	flex: none !important;
}

.apkshelf-story-title h1 {
	max-width: 760px !important;
	margin: 0 0 10px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 39px !important;
	font-weight: 900 !important;
	line-height: 1.1 !important;
	letter-spacing: 0 !important;
}

.apkshelf-story-lead {
	max-width: 700px !important;
	margin: 0 !important;
	color: var(--apkshelf-muted) !important;
	font-size: 16px !important;
	line-height: 1.55 !important;
}

.apkshelf-story-beacons {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	margin-top: 14px !important;
}

.apkshelf-story-beacons span {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 30px !important;
	padding: 0 10px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 6px !important;
	color: var(--apkshelf-ink) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

.apkshelf-score-panel {
	display: grid !important;
	gap: 9px !important;
	padding: 14px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-ink) !important;
	box-shadow: none !important;
}

.apkshelf-favorite,
.apkshelf-favorite a {
	color: var(--apkshelf-blue) !important;
	font-weight: 900 !important;
}

.apkshelf-spec-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 14px !important;
	background: #fff !important;
	border-bottom: 1px solid var(--apkshelf-line) !important;
}

.apkshelf-spec-item {
	min-height: 76px !important;
	padding: 12px !important;
	background: var(--apkshelf-bg) !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
}

.apkshelf-spec-item div {
	margin-bottom: 6px !important;
	color: var(--apkshelf-muted) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
}

.apkshelf-spec-item span {
	display: block !important;
	color: var(--apkshelf-ink) !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1.35 !important;
	word-break: break-word !important;
}

.apkshelf-spec-item-wide {
	grid-column: span 2 !important;
}

.apkshelf-story-body,
.apkshelf-gallery-stage,
.apkshelf-message,
.apkshelf-promo-card,
.apkshelf-download-card {
	margin: 16px !important;
}

.apkshelf-rich-text {
	color: #293241 !important;
	font-size: 16px !important;
	line-height: 1.72 !important;
}

.apkshelf-rich-text h2,
.apkshelf-rich-text h3 {
	margin: 24px 0 12px !important;
	color: var(--apkshelf-ink) !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

.apkshelf-gallery-stage img,
.apkshelf-story-body img {
	max-width: 100% !important;
	height: auto !important;
	border-radius: 8px !important;
}

.apkshelf-message {
	padding: 18px !important;
	background: linear-gradient(90deg, rgba(21,153,71,.10), rgba(29,78,216,.08)) !important;
	border-left: 4px solid var(--apkshelf-green) !important;
}

.apkshelf-install-title {
	margin-top: 0 !important;
	color: var(--apkshelf-ink) !important;
}

.apkshelf-install-steps {
	margin: 12px 0 0 20px !important;
}

.apkshelf-install-steps li {
	margin-bottom: 8px !important;
}

.apkshelf-promo-card {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 210px !important;
	gap: 14px !important;
	align-items: center !important;
	padding: 14px !important;
}

.apkshelf-promo-image img {
	display: block !important;
	width: 100% !important;
	border-radius: 8px !important;
}

.apkshelf-promo-actions {
	display: grid !important;
	gap: 10px !important;
}

.apkshelf-promo-link {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 42px !important;
	padding: 0 12px !important;
	background: var(--apkshelf-soft-blue) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-blue) !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

.apkshelf-download-card {
	background: var(--apkshelf-ink) !important;
	border-color: var(--apkshelf-ink) !important;
	color: #fff !important;
}

.apkshelf-download-title {
	color: #fff !important;
	font-size: 20px !important;
	font-weight: 900 !important;
}

.apkshelf-download-button {
	min-height: 58px !important;
	border-radius: 8px !important;
	background: linear-gradient(90deg, var(--apkshelf-green), var(--apkshelf-blue)) !important;
	color: #fff !important;
}

.apkshelf-download-icon {
	width: 56px !important;
	height: 56px !important;
	border-radius: 8px !important;
}

.apkshelf-related-block .apkshelf-block-body.apkshelf-app-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.apkshelf-related-block .apkshelf-app-card {
	min-height: 160px !important;
}

.apkshelf-related-block .apkshelf-app-facts {
	display: none !important;
}

.apkshelf-gate-dialog {
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	color: var(--apkshelf-ink) !important;
}

.apkshelf-gate-heading {
	color: var(--apkshelf-ink) !important;
}

.apkshelf-gate-ad-text,
.apkshelf-gate-timer {
	color: var(--apkshelf-muted) !important;
}

.apkshelf-gate-close,
.apkshelf-gate-action {
	border-radius: 8px !important;
}

.apkshelf-footer {
	margin-top: 20px !important;
	padding: 22px !important;
	background: #fff !important;
	border: 1px solid var(--apkshelf-line) !important;
	border-radius: 8px !important;
	box-shadow: var(--apkshelf-shadow) !important;
}

.apkshelf-footer-copy,
.apkshelf-footer-menu a {
	color: var(--apkshelf-muted) !important;
}

@media (max-width: 1180px) {
	.apkshelf-grid.apkshelf-row {
		grid-template-columns: 220px minmax(0, 1fr) !important;
		grid-template-areas:
			"content content"
			"left right" !important;
	}

	.apkshelf-left-rail,
	.apkshelf-right-rail {
		position: static !important;
	}

	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
		grid-template-columns: 128px minmax(0, 1fr) !important;
	}

	.apkshelf-score-panel {
		grid-column: 1 / -1 !important;
	}
}

@media (max-width: 860px) {
	.apkshelf-frame {
		width: min(100% - 20px, 1320px) !important;
	}

	.apkshelf-topbar-inner {
		min-height: 64px !important;
	}

	.apkshelf-brand {
		min-width: 0 !important;
	}

	.apkshelf-brand::after {
		font-size: 18px !important;
	}

	.apkshelf-search-wrap {
		display: none !important;
	}

	.apkshelf-primary-nav,
	.apkshelf-command-strip {
		grid-template-columns: 1fr 1fr !important;
	}

	.apkshelf-share-slot,
	.apkshelf-command-strip div:nth-child(3) {
		display: none !important;
	}

	.apkshelf-grid.apkshelf-row {
		grid-template-columns: 1fr !important;
		grid-template-areas:
			"content"
			"left"
			"right" !important;
	}

	.apkshelf-left-rail,
	.apkshelf-right-rail {
		display: none !important;
	}

	.apkshelf-seo-panel {
		padding: 20px !important;
	}

	.apkshelf-seo-copy h1 {
		font-size: 27px !important;
	}

	.apkshelf-seo-copy h2 {
		font-size: 19px !important;
	}

	.apkshelf-block-body.apkshelf-app-grid,
	.apkshelf-related-block .apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: 1fr !important;
		padding: 10px !important;
	}

	.apkshelf-app-card {
		min-height: 0 !important;
	}

	.apkshelf-app-card .apkshelf-app-link {
		grid-template-columns: 68px minmax(0, 1fr) !important;
	}

	.apkshelf-app-card .apkshelf-icon-box {
		width: 68px !important;
		height: 68px !important;
	}

	.apkshelf-app-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
		grid-template-columns: 1fr !important;
		padding: 16px !important;
	}

	.apkshelf-story-hero .apkshelf-app-icon {
		width: 112px !important;
		height: 112px !important;
	}

	.apkshelf-story-title h1 {
		font-size: 28px !important;
	}

	.apkshelf-spec-grid {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-spec-item-wide {
		grid-column: auto !important;
	}

	.apkshelf-promo-card {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-story-body,
	.apkshelf-gallery-stage,
	.apkshelf-message,
	.apkshelf-promo-card,
	.apkshelf-download-card {
		margin: 12px !important;
	}
}

@media (max-width: 520px) {
	.apkshelf-frame {
		width: min(100% - 14px, 1320px) !important;
	}

	.apkshelf-primary-nav,
	.apkshelf-command-strip,
	.apkshelf-app-facts {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-primary-nav a {
		justify-content: flex-start !important;
	}

	.apkshelf-seo-copy h1,
	.apkshelf-story-title h1 {
		font-size: 25px !important;
	}

	.apkshelf-app-card .apkshelf-app-link {
		grid-template-columns: 60px minmax(0, 1fr) !important;
	}

	.apkshelf-app-card .apkshelf-icon-box {
		width: 60px !important;
		height: 60px !important;
	}

	.apkshelf-app-name,
	.apkshelf-app-name.apkshelf-nowrap {
		font-size: 16px !important;
	}
}

/* androidus-apkshelf: final readable tile override */
.apkshelf-block-body.apkshelf-app-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.apkshelf-app-card {
	position: relative !important;
	display: flex !important;
	flex-direction: column !important;
	min-height: 176px !important;
	gap: 10px !important;
	padding: 13px !important;
}

.apkshelf-app-card .apkshelf-app-link {
	position: static !important;
	display: grid !important;
	grid-template-columns: 72px minmax(0, 1fr) !important;
	align-items: start !important;
	gap: 12px !important;
	width: 100% !important;
	min-height: 84px !important;
}

.apkshelf-app-card .apkshelf-icon-box {
	position: static !important;
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 72px !important;
	height: 72px !important;
}

.apkshelf-app-main {
	position: static !important;
	display: block !important;
	grid-column: 2 !important;
	grid-row: 1 !important;
	min-width: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-name,
.apkshelf-app-name.apkshelf-nowrap {
	position: static !important;
	display: block !important;
	max-height: 42px !important;
	min-height: 20px !important;
	overflow: hidden !important;
	white-space: normal !important;
	color: var(--apkshelf-ink) !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.22 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-excerpt {
	position: static !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	min-height: 38px !important;
	max-height: 38px !important;
	margin-top: 6px !important;
	overflow: hidden !important;
	color: var(--apkshelf-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkshelf-app-facts {
	position: static !important;
	inset: auto !important;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 6px !important;
	margin-top: auto !important;
}

.apkshelf-app-card > .apkshelf-card-meta {
	display: none !important;
	position: static !important;
}

@media (max-width: 860px) {
	.apkshelf-block-body.apkshelf-app-grid {
		grid-template-columns: 1fr !important;
	}

	.apkshelf-app-card {
		min-height: 0 !important;
	}
}


/* androidus-shelf: final unique design layer */
:root {
	--apkshelf-ink: #111827;
	--apkshelf-muted: #667085;
	--apkshelf-bg: #f5f7fb;
	--apkshelf-card: #ffffff;
	--apkshelf-line: #dbe3ee;
	--apkshelf-accent: #16a34a;
	--apkshelf-accent2: #2563eb;
	--apkshelf-accent3: #f97316;
	--apkshelf-shadow: 0 12px 26px rgba(17, 24, 39, .08);
}
html, body { background: var(--apkshelf-bg) !important; color: var(--apkshelf-ink) !important; font-family: Arial, "Helvetica Neue", sans-serif !important; letter-spacing: 0 !important; }
a { color: var(--apkshelf-accent2) !important; }
.apkshelf-shell { min-height: 100vh !important; background: var(--apkshelf-bg) !important; }
.apkshelf-frame { width: min(100% - 34px, 1340px) !important; }
.apkshelf-topbar { position: sticky !important; top: 0 !important; z-index: 80 !important; background: rgba(255,255,255,.96) !important; border-bottom: 1px solid var(--apkshelf-line) !important; box-shadow: 0 8px 18px rgba(17,24,39,.05) !important; backdrop-filter: blur(10px) !important; }
.apkshelf-topbar-inner { min-height: 70px !important; gap: 16px !important; }
.apkshelf-brand { width: auto !important; min-width: 210px !important; gap: 10px !important; text-decoration: none !important; }
.apkshelf-brand img, .apkshelf-footer-brand img { width: 38px !important; height: 38px !important; object-fit: contain !important; }
.apkshelf-brand::before { display: none !important; }
.apkshelf-brand::after { content: "Androfinoa APK" !important; display: inline-block !important; color: var(--apkshelf-ink) !important; font-size: 22px !important; font-weight: 900 !important; line-height: 1 !important; }
.apkshelf-search-wrap { max-width: 540px !important; margin-left: auto !important; }
.apkshelf-search-box { height: 48px !important; background: #fff !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; overflow: hidden !important; }
.apkshelf-search-box input { height: 48px !important; padding: 0 58px 0 18px !important; color: var(--apkshelf-ink) !important; font-size: 14px !important; }
.apkshelf-search-box button, .apkshelf-menu-button, .apkshelf-search-button, .apkshelf-drawer-close, .apkshelf-to-top { width: 42px !important; height: 42px !important; border-radius: 8px !important; background: var(--apkshelf-accent) !important; color: #fff !important; }
.apkshelf-search-box button { top: 3px !important; right: 3px !important; }
.apkshelf-stage { padding-top: 18px !important; }
.apkshelf-primary-nav { display: grid !important; gap: 10px !important; margin: 0 0 12px !important; padding: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
.apkshelf-primary-nav a { display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; min-height: 44px !important; padding: 0 14px !important; background: #fff !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; color: var(--apkshelf-ink) !important; font-size: 14px !important; font-weight: 900 !important; text-decoration: none !important; }
.apkshelf-primary-nav a .fa { color: var(--apkshelf-accent) !important; }
.apkshelf-primary-nav a:hover { background: var(--apkshelf-accent2) !important; border-color: var(--apkshelf-accent2) !important; color: #fff !important; }
.apkshelf-command-strip { display: grid !important; gap: 10px !important; margin: 0 0 16px !important; }
.apkshelf-command-strip div { min-height: 48px !important; padding: 10px 14px !important; background: #fff !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; color: var(--apkshelf-muted) !important; font-size: 13px !important; font-weight: 800 !important; line-height: 1.35 !important; }
.apkshelf-command-strip span { display: inline-flex !important; align-items: center !important; min-height: 24px !important; margin-right: 8px !important; padding: 0 9px !important; background: rgba(22,163,74,.11) !important; border-radius: 6px !important; color: var(--apkshelf-accent) !important; font-weight: 900 !important; }
.apkshelf-rail-card, .apkshelf-block, .apkshelf-page-box, .apkshelf-seo-panel, .apkshelf-login-box, .apkshelf-comment, .apkshelf-message, .apkshelf-promo-card, .apkshelf-download-card { background: var(--apkshelf-card) !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; box-shadow: var(--apkshelf-shadow) !important; overflow: hidden !important; }
.apkshelf-rail-title, .apkshelf-block-head { display: flex !important; align-items: center !important; min-height: 50px !important; padding: 0 14px !important; background: #fff !important; border-bottom: 1px solid var(--apkshelf-line) !important; color: var(--apkshelf-ink) !important; font-size: 16px !important; font-weight: 900 !important; }
.apkshelf-rail-title::before, .apkshelf-block-title::before, .apkshelf-block-title::after { display: none !important; }
.apkshelf-icon-text .fa, .apkshelf-rail-title .fa { margin-right: 8px !important; color: var(--apkshelf-accent2) !important; }
.apkshelf-rail-body { padding: 10px !important; }
.apkshelf-link-list { display: grid !important; grid-template-columns: 1fr !important; gap: 6px !important; }
.apkshelf-link-list a { display: flex !important; align-items: center !important; min-height: 34px !important; padding: 0 10px !important; background: #f2f5f9 !important; border: 1px solid transparent !important; border-radius: 6px !important; color: var(--apkshelf-ink) !important; font-size: 13px !important; font-weight: 800 !important; text-decoration: none !important; }
.apkshelf-link-list a::before { content: "" !important; width: 6px !important; height: 6px !important; margin-right: 8px !important; border-radius: 50% !important; background: var(--apkshelf-accent3) !important; }
.apkshelf-top-row { min-height: 56px !important; padding: 7px 0 !important; border-bottom: 1px solid var(--apkshelf-line) !important; }
.apkshelf-top-icon { width: 40px !important; height: 40px !important; border-radius: 8px !important; }
.apkshelf-seo-panel { margin-bottom: 16px !important; padding: 24px !important; }
.apkshelf-seo-panel::before { content: "APK Android" !important; display: inline-flex !important; align-items: center !important; min-height: 26px !important; margin-bottom: 12px !important; padding: 0 10px !important; background: rgba(22,163,74,.11) !important; border-radius: 6px !important; color: var(--apkshelf-accent) !important; font-size: 12px !important; font-weight: 900 !important; text-transform: uppercase !important; }
.apkshelf-seo-copy h1 { max-width: 820px !important; margin: 0 0 12px !important; color: var(--apkshelf-ink) !important; font-size: 34px !important; font-weight: 900 !important; line-height: 1.12 !important; letter-spacing: 0 !important; }
.apkshelf-seo-copy h2 { margin: 20px 0 8px !important; color: var(--apkshelf-ink) !important; font-size: 21px !important; font-weight: 900 !important; line-height: 1.22 !important; letter-spacing: 0 !important; }
.apkshelf-seo-copy p { max-width: 880px !important; margin: 0 0 10px !important; color: var(--apkshelf-muted) !important; font-size: 15px !important; line-height: 1.7 !important; }
.apkshelf-block { margin-bottom: 16px !important; }
.apkshelf-block-title { color: var(--apkshelf-ink) !important; font-size: 17px !important; font-weight: 900 !important; line-height: 1.2 !important; }
.apkshelf-more-link { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-height: 32px !important; padding: 0 10px !important; background: #f2f5f9 !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 6px !important; color: var(--apkshelf-accent2) !important; font-size: 13px !important; font-weight: 900 !important; text-decoration: none !important; }
.apkshelf-app-tile { width: 100% !important; float: none !important; padding: 0 !important; }
.apkshelf-app-card .apkshelf-app-link { text-decoration: none !important; min-width: 0 !important; }
.apkshelf-icon-box::before, .apkshelf-icon-box::after { display: none !important; }
.apkshelf-app-icon { width: 100% !important; height: 100% !important; border-radius: 8px !important; background: #fff !important; overflow: hidden !important; }
.apkshelf-app-icon img, .apkshelf-top-icon img, .apkshelf-mini-icon img, .apkshelf-popup-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: inherit !important; }
.apkshelf-app-main { min-width: 0 !important; }
.apkshelf-app-name, .apkshelf-app-name.apkshelf-nowrap { color: var(--apkshelf-ink) !important; font-size: 17px !important; font-weight: 900 !important; line-height: 1.22 !important; white-space: normal !important; overflow: hidden !important; }
.apkshelf-app-excerpt { color: var(--apkshelf-muted) !important; font-size: 13px !important; line-height: 1.45 !important; overflow: hidden !important; }
.apkshelf-app-facts span { display: flex !important; align-items: center !important; justify-content: center !important; min-height: 28px !important; padding: 0 7px !important; background: #f4f7fb !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 6px !important; color: var(--apkshelf-muted) !important; font-size: 11px !important; font-weight: 900 !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
.apkshelf-app-card > .apkshelf-card-meta { display: none !important; }
.apkshelf-story-hero { margin-bottom: 16px !important; background: #fff !important; }
.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row { display: grid !important; align-items: center !important; gap: 20px !important; padding: 22px !important; border: 0 !important; border-bottom: 1px solid var(--apkshelf-line) !important; }
.apkshelf-story-hero .apkshelf-app-icon { width: 136px !important; height: 136px !important; border-radius: 8px !important; box-shadow: 0 14px 28px rgba(17,24,39,.14) !important; flex: none !important; }
.apkshelf-story-title h1 { margin: 0 0 10px !important; color: var(--apkshelf-ink) !important; font-size: 38px !important; font-weight: 900 !important; line-height: 1.1 !important; letter-spacing: 0 !important; }
.apkshelf-story-lead { max-width: 700px !important; margin: 0 !important; color: var(--apkshelf-muted) !important; font-size: 16px !important; line-height: 1.55 !important; }
.apkshelf-story-beacons { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; margin-top: 14px !important; }
.apkshelf-story-beacons span { display: inline-flex !important; align-items: center !important; min-height: 30px !important; padding: 0 10px !important; background: #fff !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 6px !important; color: var(--apkshelf-ink) !important; font-size: 13px !important; font-weight: 900 !important; }
.apkshelf-score-panel { display: grid !important; gap: 9px !important; padding: 14px !important; background: #fff !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; color: var(--apkshelf-ink) !important; box-shadow: none !important; }
.apkshelf-favorite, .apkshelf-favorite a { color: var(--apkshelf-accent2) !important; font-weight: 900 !important; }
.apkshelf-spec-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 10px !important; margin: 0 !important; padding: 14px !important; background: #fff !important; border-bottom: 1px solid var(--apkshelf-line) !important; }
.apkshelf-spec-item { min-height: 76px !important; padding: 12px !important; background: #f4f7fb !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; }
.apkshelf-spec-item div { margin-bottom: 6px !important; color: var(--apkshelf-muted) !important; font-size: 12px !important; font-weight: 900 !important; text-transform: uppercase !important; }
.apkshelf-spec-item span { display: block !important; color: var(--apkshelf-ink) !important; font-size: 15px !important; font-weight: 900 !important; line-height: 1.35 !important; word-break: break-word !important; }
.apkshelf-spec-item-wide { grid-column: span 2 !important; }
.apkshelf-story-body, .apkshelf-gallery-stage, .apkshelf-message, .apkshelf-promo-card, .apkshelf-download-card { margin: 16px !important; }
.apkshelf-rich-text { color: #293241 !important; font-size: 16px !important; line-height: 1.72 !important; }
.apkshelf-rich-text h2, .apkshelf-rich-text h3 { margin: 24px 0 12px !important; color: var(--apkshelf-ink) !important; font-weight: 900 !important; line-height: 1.25 !important; }
.apkshelf-gallery-stage img, .apkshelf-story-body img { max-width: 100% !important; height: auto !important; border-radius: 8px !important; }
.apkshelf-message { padding: 18px !important; background: #f4f7fb !important; border-left: 4px solid var(--apkshelf-accent) !important; }
.apkshelf-promo-card { display: grid !important; grid-template-columns: minmax(0, 1fr) 210px !important; gap: 14px !important; align-items: center !important; padding: 14px !important; }
.apkshelf-promo-image img { display: block !important; width: 100% !important; border-radius: 8px !important; }
.apkshelf-promo-actions { display: grid !important; gap: 10px !important; }
.apkshelf-promo-link { display: flex !important; align-items: center !important; justify-content: center !important; min-height: 42px !important; padding: 0 12px !important; background: #f2f5f9 !important; border-radius: 8px !important; color: var(--apkshelf-accent2) !important; font-weight: 900 !important; text-decoration: none !important; }
.apkshelf-download-card { background: var(--apkshelf-ink) !important; border-color: var(--apkshelf-ink) !important; color: #fff !important; }
.apkshelf-download-title { color: #fff !important; font-size: 20px !important; font-weight: 900 !important; }
.apkshelf-download-button { min-height: 58px !important; border-radius: 8px !important; background: linear-gradient(90deg, var(--apkshelf-accent), var(--apkshelf-accent2)) !important; color: #fff !important; }
.apkshelf-download-icon { width: 56px !important; height: 56px !important; border-radius: 8px !important; }
.apkshelf-gate-dialog { background: #fff !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; color: var(--apkshelf-ink) !important; }
.apkshelf-gate-heading { color: var(--apkshelf-ink) !important; }
.apkshelf-gate-ad-text, .apkshelf-gate-timer { color: var(--apkshelf-muted) !important; }
.apkshelf-gate-close, .apkshelf-gate-action { border-radius: 8px !important; }
.apkshelf-footer { margin-top: 20px !important; padding: 22px !important; background: #fff !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; box-shadow: var(--apkshelf-shadow) !important; }
.apkshelf-footer-copy, .apkshelf-footer-menu a { color: var(--apkshelf-muted) !important; }
@media (max-width: 860px) {
	.apkshelf-frame { width: min(100% - 20px, 1340px) !important; }
	.apkshelf-brand { min-width: 0 !important; }
	.apkshelf-brand::after { font-size: 18px !important; }
	.apkshelf-search-wrap { display: none !important; }
	.apkshelf-primary-nav, .apkshelf-command-strip { grid-template-columns: 1fr 1fr !important; }
	.apkshelf-share-slot, .apkshelf-command-strip div:nth-child(3) { display: none !important; }
	.apkshelf-grid.apkshelf-row { grid-template-columns: 1fr !important; grid-template-areas: "content" "left" "right" !important; }
	.apkshelf-left-rail, .apkshelf-right-rail { display: none !important; }
	.apkshelf-seo-panel { padding: 20px !important; }
	.apkshelf-seo-copy h1, .apkshelf-story-title h1 { font-size: 25px !important; }
	.apkshelf-seo-copy h2 { font-size: 19px !important; }
	.apkshelf-block-body.apkshelf-app-grid, .apkshelf-related-block .apkshelf-block-body.apkshelf-app-grid { grid-template-columns: 1fr !important; padding: 10px !important; }
	.apkshelf-app-card { min-height: 0 !important; }
	.apkshelf-app-card .apkshelf-app-link { grid-template-columns: 64px minmax(0, 1fr) !important; }
	.apkshelf-app-card .apkshelf-icon-box { width: 64px !important; height: 64px !important; }
	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row { grid-template-columns: 1fr !important; padding: 16px !important; }
	.apkshelf-story-hero .apkshelf-app-icon { width: 112px !important; height: 112px !important; }
	.apkshelf-spec-grid { grid-template-columns: 1fr !important; }
	.apkshelf-spec-item-wide { grid-column: auto !important; }
	.apkshelf-promo-card { grid-template-columns: 1fr !important; }
	.apkshelf-story-body, .apkshelf-gallery-stage, .apkshelf-message, .apkshelf-promo-card, .apkshelf-download-card { margin: 12px !important; }
}
@media (max-width: 520px) {
	.apkshelf-frame { width: min(100% - 14px, 1340px) !important; }
	.apkshelf-primary-nav, .apkshelf-command-strip, .apkshelf-app-facts { grid-template-columns: 1fr !important; }
	.apkshelf-primary-nav a { justify-content: flex-start !important; }
	.apkshelf-app-card .apkshelf-app-link { grid-template-columns: 58px minmax(0, 1fr) !important; }
	.apkshelf-app-card .apkshelf-icon-box { width: 58px !important; height: 58px !important; }
	.apkshelf-app-name, .apkshelf-app-name.apkshelf-nowrap { font-size: 16px !important; }
}


.apkshelf-shell { background: linear-gradient(180deg,#ffffff 0,#ffffff 95px,#eef3f8 95px,#f6f8fb 100%) !important; }
.apkshelf-primary-nav { grid-template-columns: repeat(4, minmax(0, 1fr)) auto !important; }
.apkshelf-command-strip { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.apkshelf-grid.apkshelf-row { display: grid !important; grid-template-columns: 235px minmax(0,1fr) 255px !important; grid-template-areas: "left content right" !important; gap: 16px !important; align-items: start !important; }
.apkshelf-left-rail { grid-area: left !important; } .apkshelf-content { grid-area: content !important; } .apkshelf-right-rail { grid-area: right !important; }
.apkshelf-left-rail, .apkshelf-right-rail { display: grid !important; gap: 12px !important; position: sticky !important; top: 94px !important; width: 100% !important; max-width: none !important; }
.apkshelf-seo-panel { background: linear-gradient(90deg, rgba(22,163,74,.10), rgba(37,99,235,.08)), #fff !important; }
.apkshelf-block-body.apkshelf-app-grid { display: grid !important; grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 12px !important; padding: 14px !important; }
.apkshelf-app-card { display: flex !important; flex-direction: column !important; min-height: 176px !important; gap: 10px !important; padding: 13px !important; border-top: 4px solid var(--apkshelf-accent2) !important; }
.apkshelf-app-card .apkshelf-app-link { display: grid !important; grid-template-columns: 72px minmax(0,1fr) !important; gap: 12px !important; align-items: start !important; min-height: 84px !important; }
.apkshelf-app-card .apkshelf-icon-box { width: 72px !important; height: 72px !important; padding: 6px !important; background: #eef3f8 !important; border: 1px solid var(--apkshelf-line) !important; border-radius: 8px !important; }
.apkshelf-app-name { max-height: 42px !important; } .apkshelf-app-excerpt { display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; max-height: 38px !important; min-height: 38px !important; margin-top: 6px !important; }
.apkshelf-app-facts { display: grid !important; grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 6px !important; margin-top: auto !important; }
.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row { grid-template-columns: 140px minmax(0,1fr) 190px !important; background: linear-gradient(90deg, rgba(22,163,74,.12), rgba(37,99,235,.08)), #fff !important; }
.apkshelf-related-block .apkshelf-block-body.apkshelf-app-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
@media (max-width:1180px) { .apkshelf-grid.apkshelf-row { grid-template-columns: 1fr !important; grid-template-areas: "content" "left" "right" !important; } .apkshelf-left-rail,.apkshelf-right-rail { position: static !important; grid-template-columns: repeat(2,minmax(0,1fr)) !important; } }

/* androidus-shelf: final mobile guard */
@media (max-width: 860px) {
	.apkshelf-grid.apkshelf-row {
		grid-template-columns: 1fr !important;
		grid-template-areas: "content" !important;
	}
	.apkshelf-content { grid-area: content !important; }
	.apkshelf-left-rail,
	.apkshelf-right-rail { display: none !important; }
	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
		display: grid !important;
		grid-template-columns: 112px minmax(0, 1fr) !important;
		gap: 14px !important;
		align-items: start !important;
		padding: 16px !important;
	}
	.apkshelf-story-hero .apkshelf-app-icon {
		width: 112px !important;
		height: 112px !important;
	}
	.apkshelf-story-title { min-width: 0 !important; }
	.apkshelf-story-title h1 {
		font-size: 26px !important;
		line-height: 1.12 !important;
		word-break: normal !important;
		overflow-wrap: anywhere !important;
	}
	.apkshelf-story-lead {
		font-size: 14px !important;
		line-height: 1.45 !important;
	}
	.apkshelf-story-beacons { gap: 6px !important; }
	.apkshelf-story-beacons span {
		min-height: 26px !important;
		padding: 0 7px !important;
		font-size: 11px !important;
	}
	.apkshelf-score-panel {
		grid-column: 1 / -1 !important;
		width: 100% !important;
	}
}
@media (max-width: 520px) {
	.apkshelf-frame { width: min(100% - 12px, 1340px) !important; }
	.apkshelf-topbar-inner { min-height: 58px !important; gap: 8px !important; }
	.apkshelf-brand::after { font-size: 13px !important; }
	.apkshelf-brand img { width: 30px !important; height: 30px !important; }
	.apkshelf-primary-nav { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 6px !important; }
	.apkshelf-primary-nav a { min-height: 38px !important; padding: 0 8px !important; font-size: 11px !important; }
	.apkshelf-command-strip { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 6px !important; }
	.apkshelf-command-strip div { min-height: 38px !important; padding: 7px 8px !important; font-size: 10px !important; }
	.apkshelf-story-hero > .apkshelf-icon-box.apkshelf-row {
		grid-template-columns: 96px minmax(0, 1fr) !important;
		gap: 12px !important;
		padding: 14px !important;
	}
	.apkshelf-story-hero .apkshelf-app-icon {
		width: 96px !important;
		height: 96px !important;
	}
	.apkshelf-story-title h1 {
		margin-bottom: 7px !important;
		font-size: 22px !important;
		line-height: 1.12 !important;
	}
	.apkshelf-story-lead { font-size: 13px !important; }
	.apkshelf-spec-grid { padding: 10px !important; gap: 8px !important; }
	.apkshelf-story-body,
	.apkshelf-gallery-stage,
	.apkshelf-message,
	.apkshelf-promo-card,
	.apkshelf-download-card { margin: 10px !important; }
}

/* androidus-shelf: rebuilt distinct layout 20260719 */
:root { --apkshelf-ink:#111827; --apkshelf-muted:#667085; --apkshelf-bg:#eef3f8; --apkshelf-card:#fff; --apkshelf-line:#dbe3ee; --apkshelf-a:#16a34a; --apkshelf-b:#2563eb; --apkshelf-c:#f97316; --apkshelf-shadow:0 14px 28px rgba(17,24,39,.08); }
html,body{background:var(--apkshelf-bg)!important;color:var(--apkshelf-ink)!important;font-family:Arial,"Helvetica Neue",sans-serif!important;letter-spacing:0!important}*{box-sizing:border-box!important}a{color:var(--apkshelf-b)!important}.apkshelf-shell{min-height:100vh!important;background:linear-gradient(180deg,#fff 0,#fff 82px,#eef3f8 82px,#f6f8fb 100%)!important}.apkshelf-frame{width:min(100% - 34px,1320px)!important}.apkshelf-topbar{position:sticky!important;top:0!important;z-index:80!important;background:rgba(255,255,255,.97)!important;border-bottom:1px solid var(--apkshelf-line)!important;box-shadow:0 8px 18px rgba(17,24,39,.05)!important}.apkshelf-topbar-inner{min-height:68px!important;gap:16px!important}.apkshelf-brand{width:auto!important;min-width:210px!important;text-decoration:none!important}.apkshelf-brand img,.apkshelf-footer-brand img{width:36px!important;height:36px!important;object-fit:contain!important}.apkshelf-brand:before{display:none!important}.apkshelf-brand:after{content:"Androfinoa APK"!important;color:var(--apkshelf-ink)!important;font-size:22px!important;font-weight:900!important}.apkshelf-search-wrap{max-width:540px!important;margin-left:auto!important}.apkshelf-search-box{height:48px!important;background:#fff!important;border:1px solid var(--apkshelf-line)!important;border-radius:8px!important;overflow:hidden!important}.apkshelf-search-box input{height:48px!important;padding:0 58px 0 18px!important;color:var(--apkshelf-ink)!important}.apkshelf-search-box button,.apkshelf-menu-button,.apkshelf-search-button,.apkshelf-drawer-close,.apkshelf-to-top{width:42px!important;height:42px!important;border-radius:8px!important;background:var(--apkshelf-a)!important;color:#fff!important}.apkshelf-search-box button{top:3px!important;right:3px!important}.apkshelf-stage{padding-top:18px!important}.apkshelf-primary-nav{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr)) auto!important;gap:12px!important;margin:0 0 12px!important;padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important}.apkshelf-primary-nav a{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;min-height:48px!important;padding:0 14px!important;background:#fff!important;border:1px solid var(--apkshelf-line)!important;border-radius:8px!important;color:var(--apkshelf-ink)!important;font-weight:900!important;text-decoration:none!important;box-shadow:var(--apkshelf-shadow)!important}.apkshelf-primary-nav a:hover{background:var(--apkshelf-b)!important;border-color:var(--apkshelf-b)!important;color:#fff!important}.apkshelf-command-strip{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:10px!important;margin-bottom:16px!important}.apkshelf-command-strip div{min-height:46px!important;padding:10px 14px!important;background:#fff!important;border:1px solid var(--apkshelf-line)!important;border-radius:8px!important;color:var(--apkshelf-muted)!important;font-size:13px!important;font-weight:800!important}.apkshelf-command-strip span{display:inline-flex!important;min-height:24px!important;align-items:center!important;margin-right:8px!important;padding:0 9px!important;background:rgba(22,163,74,.12)!important;border-radius:6px!important;color:var(--apkshelf-a)!important;font-weight:900!important}.apkshelf-grid.apkshelf-row{display:grid!important;grid-template-columns:235px minmax(0,1fr) 255px!important;grid-template-areas:"left content right"!important;gap:16px!important;align-items:start!important}.apkshelf-left-rail{grid-area:left!important}.apkshelf-content{grid-area:content!important}.apkshelf-right-rail{grid-area:right!important}.apkshelf-left-rail,.apkshelf-right-rail{display:grid!important;gap:12px!important;position:sticky!important;top:94px!important}.apkshelf-rail-card,.apkshelf-block,.apkshelf-page-box,.apkshelf-seo-panel,.apkshelf-message,.apkshelf-promo-card,.apkshelf-download-card{background:#fff!important;border:1px solid var(--apkshelf-line)!important;border-radius:8px!important;box-shadow:var(--apkshelf-shadow)!important;overflow:hidden!important}.apkshelf-rail-title,.apkshelf-block-head{min-height:50px!important;padding:0 14px!important;background:#fff!important;border-bottom:1px solid var(--apkshelf-line)!important;color:var(--apkshelf-ink)!important;font-size:16px!important;font-weight:900!important}.apkshelf-rail-title:before,.apkshelf-block-title:before,.apkshelf-block-title:after{display:none!important}.apkshelf-rail-body{padding:10px!important}.apkshelf-link-list{display:grid!important;gap:6px!important}.apkshelf-link-list a{display:flex!important;align-items:center!important;min-height:34px!important;padding:0 10px!important;background:#f2f5f9!important;border-radius:6px!important;color:var(--apkshelf-ink)!important;font-size:13px!important;font-weight:800!important;text-decoration:none!important}.apkshelf-link-list a:before{content:""!important;width:6px!important;height:6px!important;margin-right:8px!important;border-radius:50%!important;background:var(--apkshelf-c)!important}.apkshelf-seo-panel{margin-bottom:16px!important;padding:24px!important;background:linear-gradient(90deg,rgba(22,163,74,.10),rgba(37,99,235,.08)),#fff!important}.apkshelf-seo-panel:before{content:"APK Android"!important;display:inline-flex!important;min-height:26px!important;align-items:center!important;margin-bottom:12px!important;padding:0 10px!important;background:rgba(22,163,74,.11)!important;border-radius:6px!important;color:var(--apkshelf-a)!important;font-size:12px!important;font-weight:900!important;text-transform:uppercase!important}.apkshelf-seo-copy h1{max-width:820px!important;margin:0 0 12px!important;color:var(--apkshelf-ink)!important;font-size:34px!important;font-weight:900!important;line-height:1.12!important}.apkshelf-seo-copy h2{margin:20px 0 8px!important;color:var(--apkshelf-ink)!important;font-size:21px!important;font-weight:900!important}.apkshelf-seo-copy p{max-width:880px!important;margin:0 0 10px!important;color:var(--apkshelf-muted)!important;font-size:15px!important;line-height:1.7!important}.apkshelf-block{margin-bottom:16px!important}.apkshelf-block-title{font-size:17px!important;font-weight:900!important;color:var(--apkshelf-ink)!important}.apkshelf-more-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:32px!important;padding:0 10px!important;background:#f2f5f9!important;border:1px solid var(--apkshelf-line)!important;border-radius:6px!important;color:var(--apkshelf-b)!important;font-size:13px!important;font-weight:900!important;text-decoration:none!important}.apkshelf-block-body.apkshelf-app-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;padding:14px!important}.apkshelf-app-tile{width:100%!important;float:none!important;padding:0!important}.apkshelf-app-card{display:flex!important;flex-direction:column!important;min-height:176px!important;gap:10px!important;padding:13px!important;background:#fff!important;border:1px solid var(--apkshelf-line)!important;border-top:4px solid var(--apkshelf-b)!important;border-radius:8px!important;box-shadow:none!important}.apkshelf-app-card .apkshelf-app-link{display:grid!important;grid-template-columns:72px minmax(0,1fr)!important;gap:12px!important;text-decoration:none!important}.apkshelf-app-card .apkshelf-icon-box{width:72px!important;height:72px!important;padding:6px!important;background:#eef3f8!important;border:1px solid var(--apkshelf-line)!important;border-radius:8px!important}.apkshelf-app-icon,.apkshelf-top-icon,.apkshelf-mini-icon,.apkshelf-popup-image{border-radius:8px!important;overflow:hidden!important}.apkshelf-app-icon img,.apkshelf-top-icon img,.apkshelf-mini-icon img,.apkshelf-popup-image img{width:100%!important;height:100%!important;object-fit:cover!important;border-radius:inherit!important}.apkshelf-app-name,.apkshelf-app-name.apkshelf-nowrap{max-height:42px!important;color:var(--apkshelf-ink)!important;font-size:17px!important;font-weight:900!important;line-height:1.22!important;white-space:normal!important;overflow:hidden!important}.apkshelf-app-excerpt{display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;max-height:38px!important;margin-top:6px!important;color:var(--apkshelf-muted)!important;font-size:13px!important;line-height:1.45!important;overflow:hidden!important}.apkshelf-app-facts{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:6px!important;margin-top:auto!important}.apkshelf-app-facts span{display:flex!important;align-items:center!important;justify-content:center!important;min-height:28px!important;padding:0 7px!important;background:#f4f7fb!important;border:1px solid var(--apkshelf-line)!important;border-radius:6px!important;color:var(--apkshelf-muted)!important;font-size:11px!important;font-weight:900!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}.apkshelf-card-meta{display:none!important}.apkshelf-story-hero{margin-bottom:16px!important;background:#fff!important}.apkshelf-story-hero>.apkshelf-icon-box.apkshelf-row{display:grid!important;grid-template-columns:140px minmax(0,1fr) 190px!important;gap:20px!important;align-items:center!important;padding:22px!important;background:linear-gradient(90deg,rgba(22,163,74,.12),rgba(37,99,235,.08)),#fff!important;border-bottom:1px solid var(--apkshelf-line)!important}.apkshelf-story-hero .apkshelf-app-icon{width:136px!important;height:136px!important;box-shadow:0 14px 28px rgba(17,24,39,.14)!important}.apkshelf-story-title h1{margin:0 0 10px!important;color:var(--apkshelf-ink)!important;font-size:38px!important;font-weight:900!important;line-height:1.1!important}.apkshelf-story-lead{color:var(--apkshelf-muted)!important;font-size:16px!important;line-height:1.55!important}.apkshelf-story-beacons{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin-top:14px!important}.apkshelf-story-beacons span,.apkshelf-spec-item{background:#f4f7fb!important;border:1px solid var(--apkshelf-line)!important;border-radius:8px!important}.apkshelf-story-beacons span{min-height:30px!important;padding:0 10px!important;color:var(--apkshelf-ink)!important;font-weight:900!important}.apkshelf-score-panel{padding:14px!important;background:#fff!important;border:1px solid var(--apkshelf-line)!important;border-radius:8px!important}.apkshelf-spec-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:10px!important;margin:0!important;padding:14px!important;background:#fff!important;border-bottom:1px solid var(--apkshelf-line)!important}.apkshelf-spec-item{min-height:76px!important;padding:12px!important}.apkshelf-spec-item div{margin-bottom:6px!important;color:var(--apkshelf-muted)!important;font-size:12px!important;font-weight:900!important;text-transform:uppercase!important}.apkshelf-spec-item span{color:var(--apkshelf-ink)!important;font-size:15px!important;font-weight:900!important;word-break:break-word!important}.apkshelf-spec-item-wide{grid-column:span 2!important}.apkshelf-story-body,.apkshelf-gallery-stage,.apkshelf-message,.apkshelf-promo-card,.apkshelf-download-card{margin:16px!important}.apkshelf-rich-text{color:#293241!important;font-size:16px!important;line-height:1.72!important}.apkshelf-gallery-stage img,.apkshelf-story-body img{max-width:100%!important;height:auto!important;border-radius:8px!important}.apkshelf-message{padding:18px!important;background:#f4f7fb!important;border-left:4px solid var(--apkshelf-a)!important}.apkshelf-promo-card{display:grid!important;grid-template-columns:minmax(0,1fr) 210px!important;gap:14px!important;align-items:center!important;padding:14px!important}.apkshelf-promo-image img{display:block!important;width:100%!important;border-radius:8px!important}.apkshelf-promo-actions{display:grid!important;gap:10px!important}.apkshelf-promo-link{display:flex!important;align-items:center!important;justify-content:center!important;min-height:42px!important;background:#f2f5f9!important;border-radius:8px!important;color:var(--apkshelf-b)!important;font-weight:900!important;text-decoration:none!important}.apkshelf-download-card{background:var(--apkshelf-ink)!important;border-color:var(--apkshelf-ink)!important;color:#fff!important}.apkshelf-download-title{color:#fff!important;font-size:20px!important;font-weight:900!important}.apkshelf-download-button{min-height:58px!important;border-radius:8px!important;background:linear-gradient(90deg,var(--apkshelf-a),var(--apkshelf-b))!important;color:#fff!important}.apkshelf-footer{margin-top:20px!important;padding:22px!important;background:#fff!important;border:1px solid var(--apkshelf-line)!important;border-radius:8px!important;box-shadow:var(--apkshelf-shadow)!important}
@media(max-width:1180px){.apkshelf-grid.apkshelf-row{grid-template-columns:1fr!important;grid-template-areas:"content"!important}.apkshelf-left-rail,.apkshelf-right-rail{display:none!important}.apkshelf-block-body.apkshelf-app-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:860px){.apkshelf-frame{width:min(100% - 20px,1320px)!important}.apkshelf-search-wrap{display:none!important}.apkshelf-primary-nav,.apkshelf-command-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important}.apkshelf-share-slot,.apkshelf-command-strip div:nth-child(3){display:none!important}.apkshelf-seo-copy h1,.apkshelf-story-title h1{font-size:25px!important}.apkshelf-block-body.apkshelf-app-grid{grid-template-columns:1fr!important}.apkshelf-story-hero>.apkshelf-icon-box.apkshelf-row{grid-template-columns:112px minmax(0,1fr)!important;padding:16px!important}.apkshelf-story-hero .apkshelf-app-icon{width:112px!important;height:112px!important}.apkshelf-score-panel{grid-column:1/-1!important}.apkshelf-spec-grid{grid-template-columns:1fr!important}.apkshelf-spec-item-wide{grid-column:auto!important}.apkshelf-promo-card{grid-template-columns:1fr!important}}
@media(max-width:520px){.apkshelf-frame{width:min(100% - 12px,1320px)!important}.apkshelf-brand:after{font-size:13px!important}.apkshelf-brand img{width:30px!important;height:30px!important}.apkshelf-story-hero>.apkshelf-icon-box.apkshelf-row{grid-template-columns:96px minmax(0,1fr)!important}.apkshelf-story-hero .apkshelf-app-icon{width:96px!important;height:96px!important}.apkshelf-story-title h1{font-size:22px!important}.apkshelf-story-lead{font-size:13px!important}.apkshelf-story-body,.apkshelf-gallery-stage,.apkshelf-message,.apkshelf-promo-card,.apkshelf-download-card{margin:10px!important}}

/* androidus-shelf: final polish 20260719 */
.apkshelf-seo-copy,
.apkshelf-seo-copy * { max-height: none !important; overflow: visible !important; }
.apkshelf-seo-copy:before,
.apkshelf-seo-copy:after,
.apkshelf-seo-panel .expand,
.apkshelf-seo-panel .readmore,
.apkshelf-seo-panel .show-more,
.apkshelf-seo-panel [class*="show"],
.apkshelf-seo-panel [class*="more"] { display: none !important; }
.apkshelf-seo-panel a { text-decoration: none !important; }

/* androidus-shelf: slicer disable 20260719 */
.apkshelf-seo-copy,
.apkshelf-seo-copy.apkshelf-slice,
.apkshelf-seo-copy.apkshelf-slice-masked {
	height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}
.apkshelf-seo-copy:before,
.apkshelf-seo-copy:after,
.apkshelf-slice-masked:before,
.apkshelf-slice-masked:after,
.apkshelf-slice-button {
	display: none !important;
	content: none !important;
}
