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

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

a {
	color: inherit;
}

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

.apkstrip-row {
	display: flex;
}

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

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

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

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

.apkstrip-last {
	order: 2;
}

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

.apkstrip-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);
}

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

.apkstrip-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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(--apkstrip-shadow);
}

.apkstrip-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;
}

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

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

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

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

.apkstrip-content {
	gap: 18px;
}

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

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

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

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

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

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

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

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

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

.apkstrip-block {
	overflow: hidden;
}

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

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

.apkstrip-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(--apkstrip-green-dark);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}

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

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

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

.apkstrip-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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;
}

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

.apkstrip-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-promo-link,
.apkstrip-download-button,
.apkstrip-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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;
}

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

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

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

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

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

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

@media (max-width: 640px) {
	.apkstrip-block-head.apkstrip-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;
	}
	.apkstrip-block-head .apkstrip-more-link,
	.apkstrip-block-head .apkstrip-comment-button {
		align-self: flex-start !important;
	}
	.apkstrip-app-grid,
	.apkstrip-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.apkstrip-spec-item-wide {
		grid-column: span 2;
	}
	.apkstrip-story-hero {
		padding: 16px;
	}
	.apkstrip-block-body {
		padding: 12px;
	}
	.apkstrip-footer {
		display: block;
		text-align: center;
	}
	.apkstrip-footer > * + * {
		margin-top: 12px;
	}
	.apkstrip-gate-ad {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {
	.apkstrip-app-grid,
	.apkstrip-spec-grid {
		grid-template-columns: 1fr;
	}
	.apkstrip-spec-item-wide {
		grid-column: span 1;
	}
	.apkstrip-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. */
.apkstrip-stage {
	display: block !important;
}

.apkstrip-grid.apkstrip-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;
}

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

.apkstrip-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;
}

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

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

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

.apkstrip-block-body.apkstrip-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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);
}

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

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

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

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

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

.apkstrip-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;
}

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

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

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

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

.apkstrip-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(--apkstrip-line) !important;
	border-radius: 6px !important;
	box-shadow: var(--apkstrip-shadow) !important;
}

.apkstrip-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(--apkstrip-night) !important;
	font-weight: 900 !important;
}

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

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

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

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

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

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

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

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

.apkstrip-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;
}

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

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

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

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

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

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

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

.apkstrip-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(--apkstrip-red) !important;
}

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

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

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

.apkstrip-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(--apkstrip-teal) !important;
	border-radius: 6px !important;
	box-shadow: none !important;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-story-hero > .apkstrip-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;
}

.apkstrip-story-hero .apkstrip-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;
}

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

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

.apkstrip-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;
}

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

.apkstrip-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(--apkstrip-line) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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(--apkstrip-coral) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
}

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

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

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

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

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

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

.apkstrip-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;
}

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

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

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

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

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

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

.apkstrip-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;
}

.apkstrip-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(--apkstrip-line) !important;
	border-radius: 8px !important;
	box-shadow: var(--apkstrip-shadow) !important;
}

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

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

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

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

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

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

.apkstrip-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(--apkstrip-coral) !important;
	vertical-align: 1px !important;
}

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

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

.apkstrip-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;
}

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

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

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

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

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

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

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

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

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

.apkstrip-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(--apkstrip-coral), var(--apkstrip-teal)) !important;
}

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

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

.apkstrip-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;
}

.apkstrip-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;
}

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

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

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

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

.apkstrip-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;
}

.apkstrip-app-icon img,
.apkstrip-top-icon img,
.apkstrip-mini-icon img,
.apkstrip-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;
}

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

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

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

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

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

.apkstrip-story-hero > .apkstrip-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(--apkstrip-line) !important;
}

.apkstrip-story-hero .apkstrip-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;
}

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

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

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

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

.apkstrip-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(--apkstrip-line) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* androidus-apkstrip: operator-style APK feed */
:root {
	--apkstrip-ink: #171717;
	--apkstrip-muted: #686f76;
	--apkstrip-bg: #f2f5f3;
	--apkstrip-panel: #ffffff;
	--apkstrip-line: #d9e0dc;
	--apkstrip-black: #141414;
	--apkstrip-lime: #92d050;
	--apkstrip-coral: #ff684f;
	--apkstrip-cyan: #09aeb8;
	--apkstrip-violet: #6759ff;
	--apkstrip-amber: #f7ae25;
	--apkstrip-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(--apkstrip-bg) !important;
	background-size: 28px 28px !important;
	color: var(--apkstrip-ink) !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 15px !important;
	letter-spacing: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

.apkstrip-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;
}

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

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

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

.apkstrip-login-button,
.apkstrip-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;
}

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

.apkstrip-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(--apkstrip-black) !important;
	border: 1px solid rgba(255, 255, 255, .10) !important;
	border-radius: 4px !important;
	box-shadow: var(--apkstrip-shadow) !important;
}

.apkstrip-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;
}

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

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

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

.apkstrip-command-strip div {
	min-height: 38px !important;
	padding: 9px 12px !important;
	background: #ffffff !important;
	border: 1px solid var(--apkstrip-line) !important;
	border-left: 4px solid var(--apkstrip-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;
}

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

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

.apkstrip-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(--apkstrip-black) !important;
	color: var(--apkstrip-lime) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
}

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

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

.apkstrip-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;
}

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

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

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

.apkstrip-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(--apkstrip-lime) !important;
	box-shadow: 0 0 0 4px rgba(146, 208, 80, .14) !important;
	vertical-align: 0 !important;
}

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

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

.apkstrip-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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(--apkstrip-black) !important;
}

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

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

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

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

.apkstrip-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(--apkstrip-cyan) !important;
	border-radius: 4px !important;
	box-shadow: none !important;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}

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

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

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

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

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

.apkstrip-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;
}

.apkstrip-app-icon img,
.apkstrip-top-icon img,
.apkstrip-mini-icon img,
.apkstrip-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;
}

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

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

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

.apkstrip-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;
}

.apkstrip-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;
}

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

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

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

.apkstrip-story-hero > .apkstrip-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(--apkstrip-black) !important;
	border-bottom: 4px solid var(--apkstrip-lime) !important;
	color: #ffffff !important;
}

.apkstrip-story-hero .apkstrip-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;
}

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

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

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

.apkstrip-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;
}

.apkstrip-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;
}

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

.apkstrip-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(--apkstrip-line) !important;
	border-bottom: 1px solid var(--apkstrip-line) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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;
}

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

.apkstrip-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(--apkstrip-line) !important;
	border-radius: 8px !important;
	color: var(--apkstrip-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;
}

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

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

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

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

.apkstrip-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(--apkstrip-blue) !important;
	font-weight: 800 !important;
}

.apkstrip-grid.apkstrip-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;
}

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

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

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

.apkstrip-left-rail,
.apkstrip-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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;
}

.apkstrip-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(--apkstrip-green) !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
}

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

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

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

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

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

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

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

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

.apkstrip-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(--apkstrip-line) !important;
	border-left: 4px solid var(--apkstrip-green) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

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

.apkstrip-app-card .apkstrip-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;
}

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

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

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

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

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

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

.apkstrip-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(--apkstrip-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

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

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

.apkstrip-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(--apkstrip-orange) !important;
	font-weight: 800 !important;
}

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

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

.apkstrip-story-hero > .apkstrip-icon-box.apkstrip-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(--apkstrip-line) !important;
	border-radius: 8px 8px 0 0 !important;
}

.apkstrip-story-hero .apkstrip-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;
}

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

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

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

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

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

.apkstrip-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(--apkstrip-line) !important;
	border-radius: 6px !important;
	color: var(--apkstrip-ink) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

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

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

.apkstrip-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(--apkstrip-line) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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(--apkstrip-soft) !important;
	color: var(--apkstrip-blue) !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-app-card .apkstrip-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;
}

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

.apkstrip-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;
}

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

.apkstrip-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(--apkstrip-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkstrip-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;
}

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

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

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

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

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

.apkstrip-app-card .apkstrip-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;
}

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

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

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

.apkstrip-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(--apkstrip-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-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;
}

.apkstrip-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(--apkstrip-line) !important;
	border-radius: 8px !important;
	color: var(--apkstrip-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;
}

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

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

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

.apkstrip-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(--apkstrip-line) !important;
	border-radius: 8px !important;
	color: var(--apkstrip-muted) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
}

.apkstrip-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(--apkstrip-soft-green) !important;
	border-radius: 6px !important;
	color: var(--apkstrip-green) !important;
	font-weight: 900 !important;
}

.apkstrip-grid.apkstrip-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;
}

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

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

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

.apkstrip-left-rail,
.apkstrip-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;
}

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

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

.apkstrip-rail-title,
.apkstrip-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(--apkstrip-line) !important;
	color: var(--apkstrip-ink) !important;
	font-size: 16px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
}

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

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

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

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

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

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

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

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

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

.apkstrip-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;
}

.apkstrip-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(--apkstrip-soft-green) !important;
	border-radius: 6px !important;
	color: var(--apkstrip-green) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
}

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

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

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

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

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

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

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

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

.apkstrip-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(--apkstrip-line) !important;
	border-top: 4px solid var(--apkstrip-blue) !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

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

.apkstrip-app-card .apkstrip-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;
}

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

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

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

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

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

.apkstrip-app-name,
.apkstrip-app-name.apkstrip-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(--apkstrip-ink) !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.22 !important;
}

.apkstrip-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(--apkstrip-muted) !important;
	font-size: 13px !important;
	line-height: 1.48 !important;
}

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

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

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

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

.apkstrip-story-hero > .apkstrip-icon-box.apkstrip-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(--apkstrip-line) !important;
}

.apkstrip-story-hero .apkstrip-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;
}

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

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

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

.apkstrip-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(--apkstrip-line) !important;
	border-radius: 6px !important;
	color: var(--apkstrip-ink) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

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

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

.apkstrip-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(--apkstrip-line) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.apkstrip-app-card .apkstrip-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;
}

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

.apkstrip-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;
}

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

.apkstrip-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(--apkstrip-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.apkstrip-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;
}

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

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

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


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


.apkstrip-shell { background: linear-gradient(180deg,#fff 0,#fff 72px,#f3f8f9 72px,#f6f9fb 100%) !important; }
.apkstrip-primary-nav { grid-template-columns: repeat(4,minmax(0,1fr)) auto !important; }
.apkstrip-command-strip { grid-template-columns: 1.2fr 1fr 1fr !important; }
.apkstrip-grid.apkstrip-row { display: grid !important; grid-template-columns: minmax(0,1fr) !important; grid-template-areas: "content" "left" "right" !important; gap: 14px !important; }
.apkstrip-content { grid-area: content !important; width: min(100%, 1120px) !important; margin: 0 auto !important; } .apkstrip-left-rail { grid-area: left !important; } .apkstrip-right-rail { grid-area: right !important; }
.apkstrip-left-rail,.apkstrip-right-rail { display: grid !important; grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 12px !important; }
.apkstrip-seo-panel { background: linear-gradient(180deg,#ffffff,#f1fbfb) !important; border-top: 4px solid var(--apkstrip-accent2) !important; }
.apkstrip-block-body.apkstrip-app-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 10px !important; padding: 14px !important; }
.apkstrip-app-card { display: grid !important; grid-template-columns: minmax(0,1fr) 230px !important; gap: 12px !important; align-items: center !important; min-height: 108px !important; padding: 12px !important; border-top: 0 !important; border-left: 5px solid var(--apkstrip-accent) !important; }
.apkstrip-app-card .apkstrip-app-link { display: grid !important; grid-template-columns: 82px minmax(0,1fr) !important; gap: 13px !important; align-items: center !important; }
.apkstrip-app-card .apkstrip-icon-box { width: 82px !important; height: 82px !important; padding: 7px !important; background: #f3f8f9 !important; border: 1px solid var(--apkstrip-line) !important; border-radius: 8px !important; }
.apkstrip-app-excerpt { display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; max-height: 38px !important; margin-top: 5px !important; }
.apkstrip-app-facts { display: grid !important; grid-template-columns: 1fr !important; gap: 6px !important; }
.apkstrip-story-hero > .apkstrip-icon-box.apkstrip-row { grid-template-columns: 150px minmax(0,1fr) 180px !important; background: linear-gradient(90deg, rgba(220,38,38,.08), rgba(8,145,178,.08)), #fff !important; }
@media (max-width:1180px) { .apkstrip-left-rail,.apkstrip-right-rail { grid-template-columns: 1fr !important; } .apkstrip-app-card { grid-template-columns: 1fr !important; } .apkstrip-app-facts { grid-template-columns: repeat(3,minmax(0,1fr)) !important; } }

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

/* androidus-strip: rebuilt distinct layout 20260719 */
:root{--apkstrip-ink:#1b2430;--apkstrip-muted:#687385;--apkstrip-bg:#fff7f4;--apkstrip-card:#ffffff;--apkstrip-line:#eadbd5;--apkstrip-a:#e5483f;--apkstrip-b:#0f9f8f;--apkstrip-c:#f59e0b;--apkstrip-shadow:0 16px 38px rgba(82,32,20,.08)}
html,body{background:linear-gradient(180deg,#fff 0,#fff7f4 210px,#f8fbfd 100%)!important;color:var(--apkstrip-ink)!important;font-family:Arial,"Helvetica Neue",sans-serif!important;letter-spacing:0!important}*{box-sizing:border-box!important}a{color:var(--apkstrip-a)!important}.apkstrip-shell{min-height:100vh!important;background:transparent!important}.apkstrip-frame{width:min(100% - 38px,1160px)!important}.apkstrip-topbar{position:sticky!important;top:0!important;z-index:80!important;background:rgba(255,255,255,.96)!important;border-bottom:3px solid var(--apkstrip-a)!important;box-shadow:0 10px 28px rgba(82,32,20,.06)!important;backdrop-filter:blur(12px)!important}.apkstrip-topbar-inner{min-height:66px!important;gap:16px!important}.apkstrip-brand{min-width:220px!important;text-decoration:none!important}.apkstrip-brand img,.apkstrip-footer-brand img{width:34px!important;height:34px!important}.apkstrip-brand:before{display:none!important}.apkstrip-brand:after{content:"Droidvantaa Files"!important;color:var(--apkstrip-ink)!important;font-size:21px!important;font-weight:900!important}.apkstrip-search-wrap{max-width:410px!important;margin-left:auto!important}.apkstrip-search-box{height:44px!important;background:#fff!important;border:1px solid var(--apkstrip-line)!important;border-radius:6px!important;overflow:hidden!important}.apkstrip-search-box input{height:44px!important;padding:0 54px 0 16px!important;color:var(--apkstrip-ink)!important}.apkstrip-search-box button,.apkstrip-menu-button,.apkstrip-search-button,.apkstrip-drawer-close,.apkstrip-to-top{width:38px!important;height:38px!important;border-radius:6px!important;background:var(--apkstrip-a)!important;color:#fff!important}.apkstrip-search-box button{top:3px!important;right:3px!important}.apkstrip-stage{padding-top:18px!important}.apkstrip-primary-nav{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:10px!important;margin:0 0 10px!important;padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important}.apkstrip-primary-nav a{display:flex!important;align-items:center!important;justify-content:flex-start!important;gap:9px!important;min-height:42px!important;padding:0 14px!important;background:#fff!important;border:1px solid var(--apkstrip-line)!important;border-radius:6px!important;color:var(--apkstrip-ink)!important;font-size:13px!important;font-weight:900!important;text-decoration:none!important}.apkstrip-primary-nav a .fa{color:var(--apkstrip-a)!important}.apkstrip-share-slot{display:none!important}.apkstrip-command-strip{display:flex!important;gap:8px!important;margin:0 0 14px!important;overflow:auto!important}.apkstrip-command-strip div{flex:0 0 auto!important;min-height:34px!important;padding:7px 12px!important;background:#fff!important;border:1px solid var(--apkstrip-line)!important;border-radius:999px!important;color:var(--apkstrip-muted)!important;font-size:12px!important;font-weight:800!important}.apkstrip-command-strip span{color:var(--apkstrip-a)!important;font-weight:900!important}.apkstrip-grid.apkstrip-row{display:grid!important;grid-template-columns:250px minmax(0,1fr)!important;grid-template-areas:"left content"!important;gap:18px!important;align-items:start!important}.apkstrip-content{grid-area:content!important}.apkstrip-left-rail{grid-area:left!important;display:grid!important;gap:12px!important;position:sticky!important;top:90px!important}.apkstrip-right-rail{display:none!important}.apkstrip-rail-card,.apkstrip-block,.apkstrip-page-box,.apkstrip-seo-panel,.apkstrip-message,.apkstrip-promo-card,.apkstrip-download-card{background:#fff!important;border:1px solid var(--apkstrip-line)!important;border-radius:6px!important;box-shadow:var(--apkstrip-shadow)!important;overflow:hidden!important}.apkstrip-rail-title,.apkstrip-block-head{min-height:46px!important;padding:0 14px!important;background:#fff!important;border-bottom:1px solid var(--apkstrip-line)!important;color:var(--apkstrip-ink)!important;font-size:15px!important;font-weight:900!important;text-transform:uppercase!important}.apkstrip-rail-title:before,.apkstrip-block-title:before,.apkstrip-block-title:after{display:none!important}.apkstrip-rail-body{padding:10px!important}.apkstrip-link-list{display:grid!important;gap:7px!important}.apkstrip-link-list a{display:flex!important;align-items:center!important;min-height:32px!important;padding:0 10px!important;background:#fbf1ee!important;border-radius:5px!important;color:var(--apkstrip-ink)!important;font-size:13px!important;font-weight:800!important;text-decoration:none!important}.apkstrip-link-list a:before{content:""!important;width:6px!important;height:6px!important;margin-right:8px!important;border-radius:50%!important;background:var(--apkstrip-b)!important}.apkstrip-seo-panel{margin-bottom:18px!important;padding:24px 26px!important;border-left:6px solid var(--apkstrip-a)!important;background:linear-gradient(90deg,#fff,#fff8f5)!important}.apkstrip-seo-panel:before{content:"APK файлы"!important;display:inline-flex!important;min-height:24px!important;align-items:center!important;margin-bottom:12px!important;padding:0 10px!important;background:#fff0ed!important;border-radius:999px!important;color:var(--apkstrip-a)!important;font-size:12px!important;font-weight:900!important;text-transform:uppercase!important}.apkstrip-seo-copy h1{margin:0 0 10px!important;color:var(--apkstrip-ink)!important;font-size:34px!important;font-weight:900!important;line-height:1.12!important}.apkstrip-seo-copy h2{margin:18px 0 8px!important;color:var(--apkstrip-a)!important;font-size:20px!important;font-weight:900!important}.apkstrip-seo-copy p{margin:0 0 9px!important;color:var(--apkstrip-muted)!important;font-size:15px!important;line-height:1.68!important}.apkstrip-block{margin-bottom:18px!important}.apkstrip-block-title{font-size:18px!important;font-weight:900!important;color:var(--apkstrip-ink)!important}.apkstrip-more-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:30px!important;padding:0 10px!important;background:#fff4f1!important;border:1px solid #ffd8cf!important;border-radius:999px!important;color:var(--apkstrip-a)!important;font-size:12px!important;font-weight:900!important;text-decoration:none!important}.apkstrip-block-body.apkstrip-app-grid{display:grid!important;grid-template-columns:1fr!important;gap:0!important;padding:0!important}.apkstrip-app-tile{width:100%!important;float:none!important;padding:0!important}.apkstrip-app-card{display:grid!important;grid-template-columns:1fr!important;min-height:96px!important;padding:0!important;background:#fff!important;border:0!important;border-bottom:1px solid var(--apkstrip-line)!important;border-left:4px solid var(--apkstrip-a)!important;border-radius:0!important;box-shadow:none!important}.apkstrip-app-card .apkstrip-app-link{display:grid!important;grid-template-columns:76px minmax(0,1fr)!important;gap:14px!important;align-items:center!important;min-height:92px!important;padding:12px 150px 12px 14px!important;text-decoration:none!important}.apkstrip-app-card .apkstrip-icon-box{width:68px!important;height:68px!important;padding:0!important;background:transparent!important;border:0!important}.apkstrip-app-icon{width:68px!important;height:68px!important;border-radius:6px!important;overflow:hidden!important}.apkstrip-app-icon img,.apkstrip-top-icon img,.apkstrip-mini-icon img,.apkstrip-popup-image img{width:100%!important;height:100%!important;object-fit:cover!important;border-radius:inherit!important}.apkstrip-app-name,.apkstrip-app-name.apkstrip-nowrap{max-height:22px!important;color:var(--apkstrip-ink)!important;font-size:17px!important;font-weight:900!important;line-height:1.25!important;white-space:normal!important;overflow:hidden!important}.apkstrip-app-excerpt{display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;max-height:38px!important;margin-top:5px!important;color:var(--apkstrip-muted)!important;font-size:13px!important;line-height:1.45!important;overflow:hidden!important}.apkstrip-app-facts{position:absolute!important;right:12px!important;top:50%!important;transform:translateY(-50%)!important;display:grid!important;grid-template-columns:1fr!important;gap:5px!important;width:122px!important}.apkstrip-app-facts span{display:flex!important;align-items:center!important;justify-content:center!important;min-height:24px!important;padding:0 6px!important;background:#f7fafc!important;border:1px solid #e5edf3!important;border-radius:5px!important;color:var(--apkstrip-muted)!important;font-size:10px!important;font-weight:900!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}.apkstrip-card-meta{display:none!important}.apkstrip-story-hero{margin-bottom:18px!important;background:#fff!important;border:1px solid var(--apkstrip-line)!important;border-radius:6px!important;box-shadow:var(--apkstrip-shadow)!important;overflow:hidden!important}.apkstrip-story-hero>.apkstrip-icon-box.apkstrip-row{display:grid!important;grid-template-columns:128px minmax(0,1fr) 160px!important;gap:20px!important;align-items:center!important;padding:24px!important;background:linear-gradient(90deg,#fff7f4,#f4fffd)!important;border-bottom:1px solid var(--apkstrip-line)!important}.apkstrip-story-hero .apkstrip-app-icon{width:124px!important;height:124px!important;border-radius:6px!important}.apkstrip-story-title h1{margin:0 0 10px!important;color:var(--apkstrip-ink)!important;font-size:37px!important;font-weight:900!important;line-height:1.08!important}.apkstrip-story-lead{color:var(--apkstrip-muted)!important;font-size:15px!important;line-height:1.58!important}.apkstrip-story-beacons{display:flex!important;flex-wrap:wrap!important;gap:7px!important;margin-top:12px!important}.apkstrip-story-beacons span{min-height:28px!important;padding:0 9px!important;background:#fff!important;border:1px solid var(--apkstrip-line)!important;border-radius:999px!important;color:var(--apkstrip-ink)!important;font-weight:900!important}.apkstrip-score-panel{padding:14px!important;background:#fff!important;border:1px solid var(--apkstrip-line)!important;border-radius:6px!important}.apkstrip-spec-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:8px!important;margin:0!important;padding:14px!important;background:#fff!important}.apkstrip-spec-item{min-height:70px!important;padding:11px!important;background:#f8fafc!important;border:1px solid #e5edf3!important;border-radius:6px!important}.apkstrip-spec-item div{margin-bottom:5px!important;color:var(--apkstrip-muted)!important;font-size:11px!important;font-weight:900!important;text-transform:uppercase!important}.apkstrip-spec-item span{display:block!important;color:var(--apkstrip-ink)!important;font-size:14px!important;font-weight:900!important;word-break:break-word!important}.apkstrip-spec-item-wide{grid-column:span 2!important}.apkstrip-story-body,.apkstrip-gallery-stage,.apkstrip-message,.apkstrip-promo-card,.apkstrip-download-card{margin:18px!important}.apkstrip-rich-text{color:#243142!important;font-size:16px!important;line-height:1.75!important}.apkstrip-gallery-stage img,.apkstrip-story-body img{max-width:100%!important;height:auto!important;border-radius:6px!important}.apkstrip-message{padding:18px!important;background:#fffaf8!important;border-left:4px solid var(--apkstrip-a)!important}.apkstrip-promo-card{display:grid!important;grid-template-columns:minmax(0,1fr) 190px!important;gap:14px!important;align-items:center!important;padding:14px!important}.apkstrip-promo-image img{display:block!important;width:100%!important;border-radius:6px!important}.apkstrip-promo-actions{display:grid!important;gap:9px!important}.apkstrip-promo-link{display:flex!important;align-items:center!important;justify-content:center!important;min-height:40px!important;background:#fff4f1!important;border-radius:6px!important;color:var(--apkstrip-a)!important;font-weight:900!important;text-decoration:none!important}.apkstrip-download-card{background:#1b2430!important;border-color:#1b2430!important;color:#fff!important}.apkstrip-download-title{color:#fff!important;font-size:19px!important;font-weight:900!important}.apkstrip-download-button{min-height:56px!important;border-radius:6px!important;background:linear-gradient(90deg,var(--apkstrip-a),var(--apkstrip-b))!important;color:#fff!important}.apkstrip-related-block .apkstrip-block-body.apkstrip-app-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;padding:12px!important}.apkstrip-footer{margin-top:22px!important;padding:20px!important;background:#fff!important;border-top:1px solid var(--apkstrip-line)!important;color:var(--apkstrip-muted)!important}
@media(max-width:1180px){.apkstrip-grid.apkstrip-row{grid-template-columns:1fr!important;grid-template-areas:"content"!important}.apkstrip-left-rail{display:none!important}.apkstrip-app-card .apkstrip-app-link{padding-right:130px!important}}
@media(max-width:860px){.apkstrip-frame{width:min(100% - 18px,1160px)!important}.apkstrip-search-wrap{display:none!important}.apkstrip-brand{min-width:0!important}.apkstrip-brand:after{font-size:15px!important}.apkstrip-primary-nav{grid-template-columns:repeat(2,minmax(0,1fr))!important}.apkstrip-command-strip{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important}.apkstrip-seo-copy h1{font-size:28px!important}.apkstrip-app-card .apkstrip-app-link{grid-template-columns:64px minmax(0,1fr)!important;padding:11px!important}.apkstrip-app-card .apkstrip-icon-box,.apkstrip-app-icon{width:60px!important;height:60px!important}.apkstrip-app-facts{position:static!important;transform:none!important;width:auto!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;padding:0 11px 11px!important}.apkstrip-story-hero>.apkstrip-icon-box.apkstrip-row{grid-template-columns:104px minmax(0,1fr)!important;padding:16px!important}.apkstrip-story-hero .apkstrip-app-icon{width:100px!important;height:100px!important}.apkstrip-story-title h1{font-size:24px!important}.apkstrip-score-panel{grid-column:1/-1!important}.apkstrip-spec-grid{grid-template-columns:1fr!important}.apkstrip-spec-item-wide{grid-column:auto!important}.apkstrip-promo-card{grid-template-columns:1fr!important}.apkstrip-related-block .apkstrip-block-body.apkstrip-app-grid{grid-template-columns:1fr!important}}
@media(max-width:520px){.apkstrip-frame{width:min(100% - 12px,1160px)!important}.apkstrip-primary-nav,.apkstrip-command-strip{grid-template-columns:1fr 1fr!important;gap:6px!important}.apkstrip-story-hero>.apkstrip-icon-box.apkstrip-row{grid-template-columns:88px minmax(0,1fr)!important;gap:11px!important}.apkstrip-story-hero .apkstrip-app-icon{width:86px!important;height:86px!important}.apkstrip-story-title h1{font-size:21px!important}.apkstrip-story-lead{font-size:13px!important}.apkstrip-story-body,.apkstrip-gallery-stage,.apkstrip-message,.apkstrip-promo-card,.apkstrip-download-card{margin:10px!important}}

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

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

/* androidus-strip: layout repair 20260719 */
.apkstrip-grid.apkstrip-row {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}
.apkstrip-content.apkstrip-col.apkstrip-grow,
.apkstrip-content {
	display: block !important;
	width: min(100%, 980px) !important;
	max-width: 980px !important;
	margin: 0 auto !important;
	float: none !important;
}
.apkstrip-left-rail,
.apkstrip-right-rail,
.apkstrip-left-rail *,
.apkstrip-right-rail * {
	display: none !important;
}
.apkstrip-seo-panel,
.apkstrip-block,
.apkstrip-page-box {
	width: 100% !important;
	max-width: 100% !important;
}
.apkstrip-block-body.apkstrip-app-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0 !important;
	padding: 0 !important;
}
.apkstrip-app-tile {
	width: 100% !important;
	float: none !important;
	padding: 0 !important;
}
.apkstrip-app-card {
	position: relative !important;
	display: block !important;
	min-height: 96px !important;
	padding: 0 !important;
	background: #fff !important;
	border: 0 !important;
	border-bottom: 1px solid var(--apkstrip-line) !important;
	border-left: 4px solid var(--apkstrip-a) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}
.apkstrip-app-card .apkstrip-app-link {
	display: grid !important;
	grid-template-columns: 76px minmax(0, 1fr) !important;
	gap: 14px !important;
	align-items: center !important;
	min-height: 92px !important;
	padding: 12px 150px 12px 14px !important;
	text-decoration: none !important;
}
.apkstrip-app-card .apkstrip-icon-box {
	display: block !important;
	width: 68px !important;
	height: 68px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	flex: none !important;
}
.apkstrip-app-main {
	display: block !important;
	min-width: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.apkstrip-app-name,
.apkstrip-app-name.apkstrip-nowrap {
	display: block !important;
	max-height: 24px !important;
	min-height: 20px !important;
	color: var(--apkstrip-ink) !important;
	font-size: 17px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.apkstrip-app-excerpt {
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	min-height: 36px !important;
	max-height: 38px !important;
	margin-top: 5px !important;
	color: var(--apkstrip-muted) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	overflow: hidden !important;
	opacity: 1 !important;
	visibility: visible !important;
}
.apkstrip-app-facts {
	position: absolute !important;
	right: 12px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 5px !important;
	width: 122px !important;
	margin: 0 !important;
}
.apkstrip-app-facts span {
	min-height: 24px !important;
	padding: 0 6px !important;
	font-size: 10px !important;
}
.apkstrip-card-meta {
	display: none !important;
}
.apkstrip-related-block .apkstrip-block-body.apkstrip-app-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 10px !important;
	padding: 12px !important;
}
.apkstrip-related-block .apkstrip-app-card {
	border: 1px solid var(--apkstrip-line) !important;
	border-left: 4px solid var(--apkstrip-a) !important;
	border-radius: 6px !important;
}
.apkstrip-related-block .apkstrip-app-card .apkstrip-app-link {
	padding-right: 12px !important;
}
.apkstrip-related-block .apkstrip-app-facts {
	display: none !important;
}
@media (max-width: 1180px) {
	.apkstrip-frame {
		width: min(100% - 24px, 980px) !important;
	}
}
@media (max-width: 860px) {
	.apkstrip-frame {
		width: min(100% - 16px, 980px) !important;
	}
	.apkstrip-topbar-inner {
		min-height: 58px !important;
		gap: 8px !important;
	}
	.apkstrip-brand {
		min-width: 0 !important;
	}
	.apkstrip-brand img {
		width: 30px !important;
		height: 30px !important;
	}
	.apkstrip-brand:after {
		font-size: 13px !important;
	}
	.apkstrip-search-wrap {
		display: none !important;
	}
	.apkstrip-primary-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 6px !important;
	}
	.apkstrip-primary-nav a {
		min-height: 38px !important;
		padding: 0 8px !important;
		font-size: 11px !important;
		justify-content: flex-start !important;
	}
	.apkstrip-command-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 6px !important;
	}
	.apkstrip-command-strip div {
		min-height: 34px !important;
		padding: 7px 9px !important;
		font-size: 10px !important;
	}
	.apkstrip-seo-panel {
		padding: 18px !important;
	}
	.apkstrip-seo-copy h1 {
		font-size: 24px !important;
		line-height: 1.12 !important;
	}
	.apkstrip-seo-copy h2 {
		font-size: 17px !important;
	}
	.apkstrip-app-card {
		min-height: 0 !important;
		border-left-width: 3px !important;
	}
	.apkstrip-app-card .apkstrip-app-link {
		grid-template-columns: 58px minmax(0, 1fr) !important;
		gap: 10px !important;
		min-height: 74px !important;
		padding: 10px !important;
	}
	.apkstrip-app-card .apkstrip-icon-box,
	.apkstrip-app-icon {
		width: 56px !important;
		height: 56px !important;
	}
	.apkstrip-app-name,
	.apkstrip-app-name.apkstrip-nowrap {
		max-height: 38px !important;
		min-height: 18px !important;
		font-size: 14px !important;
		line-height: 1.25 !important;
		white-space: normal !important;
	}
	.apkstrip-app-excerpt {
		min-height: 0 !important;
		max-height: 34px !important;
		font-size: 11px !important;
		line-height: 1.45 !important;
	}
	.apkstrip-app-facts {
		position: static !important;
		transform: none !important;
		width: auto !important;
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 5px !important;
		padding: 0 10px 10px 68px !important;
	}
	.apkstrip-app-facts span {
		min-height: 22px !important;
		font-size: 9px !important;
	}
	.apkstrip-story-hero > .apkstrip-icon-box.apkstrip-row {
		grid-template-columns: 84px minmax(0, 1fr) !important;
		gap: 11px !important;
		padding: 14px !important;
	}
	.apkstrip-story-hero .apkstrip-app-icon {
		width: 82px !important;
		height: 82px !important;
	}
	.apkstrip-story-title h1 {
		font-size: 21px !important;
		line-height: 1.12 !important;
	}
	.apkstrip-story-lead {
		font-size: 13px !important;
	}
	.apkstrip-score-panel {
		grid-column: 1 / -1 !important;
		width: 100% !important;
	}
	.apkstrip-spec-grid {
		grid-template-columns: 1fr !important;
	}
	.apkstrip-spec-item-wide {
		grid-column: auto !important;
	}
	.apkstrip-promo-card {
		grid-template-columns: 1fr !important;
	}
	.apkstrip-related-block .apkstrip-block-body.apkstrip-app-grid {
		grid-template-columns: 1fr !important;
	}
}
@media (max-width: 520px) {
	.apkstrip-frame {
		width: min(100% - 10px, 980px) !important;
	}
	.apkstrip-story-body,
	.apkstrip-gallery-stage,
	.apkstrip-message,
	.apkstrip-promo-card,
	.apkstrip-download-card {
		margin: 10px !important;
	}
}
