/*
Theme Name: APK Theme by APKZia
Theme URI: https://apkzia.com/
Author: Muhammad Ali
Author URI: https://apkzia.com/
Description: A custom WordPress theme For Android Apps And Games Websites.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: APKZia
*/


/* =Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, button {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:hover, a:active {
	outline: 0;
}
a img {
	border: 0;
}

:root {
	--main-bg-color: #f7f8fa;     
	--card-bg-color: #ffffff;      
	--primary-color: #007BFF;      
	--accent-color: #FF5722;       
	--text-color: #1f2937;         
	--dim-color: #6b7280;         
	--border-color: #e5e7eb;      
	--hover-bg: rgba(0, 123, 255, 0.08);
}

html, body {
	font-size: 16px; 
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.7;
	background-color: var(--main-bg-color);
	color: var(--text-color);
	margin: 0;
}
a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover {
	color: var(--accent-color);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 15px;
}
svg {
	cursor: pointer;
}

header {
	background: var(--card-bg-color);
	padding: 5px 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	width: 100%;
	border-bottom: 1px solid var(--border-color);
}
.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	max-width: 1200px;
	margin: 0 auto;
}
header a {
	color: #333;
	font-size: 18px;
	font-weight: 500;
}
.header-right {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header-right svg {
	fill: var(--dim-color);
}

main {
	padding: 20px; 
	flex: 1;
}

.single-post-container {
	max-width: 1100px;
	margin: 0 auto;
	background-color: var(--card-bg-color);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
	overflow: hidden; 
}

.single-post-container > section {
	background-color: transparent;
	border: none;
	box-shadow: none;
	padding: 20px 30px; 
	margin: 0;
}

.single-post-container > section:not(:last-of-type) {
	border-bottom: 1px solid #f0f2f5;
}

@media (max-width: 767px) {
	main {
		padding: 10px;
	}
	.header-container {
		padding: 0 10px;
	}
	.single-post-container > section {
		padding: 15px;
	}
}

#apps-for-you {
	display: grid;
	gap: 20px; 
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 600px) {
	#apps-for-you { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
	#apps-for-you { grid-template-columns: repeat(3, 1fr); }
}

#app {
	background-color: var(--card-bg-color);
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#app a {
	display: flex;
	flex-direction: row;
	color: var(--text-color);
	gap: 15px;
}
#app:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.app-icon img {
	width: 75px;
	height: 75px;
	border-radius: 15px;
	box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	object-fit: cover;
}
.app-meta {
	display: flex;
	flex-direction: column;
	font-size: 14px;
}
.app-meta .title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-color);
}
.app-meta span {
	color: var(--dim-color);
}


.app-details {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	gap: 20px;
}
.left-side {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-grow: 1;
}
.icon img {
	width: 100px;
	height: 100px;
	border-radius: 20px;
	box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
}
.single-app-meta h1.title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
}
.right-side {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.download-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--primary-color);
	color: #FFF;
	padding: 12px 20px;
	border-radius: 8px;
	cursor: pointer;
	width: 100%;
	min-width: 220px;
	gap: 10px;
	transition: background-color 0.3s ease, transform 0.2s ease;
}
.download-btn:hover:not(.disabled) {
	background-color: var(--accent-color);
	transform: translateY(-2px);
}
.download-btn.disabled {
	background-color: #72b596 !important;
	cursor: not-allowed;
	pointer-events: none;
}
.button-left {
	display: flex;
	flex-direction: column;
}
.button-right svg {
	width: 30px;
	height: 30px;
}
.button-top {
	font-size: 18px;
	font-weight: 600;
}
.button-bottom span {
	font-size: 14px;
	opacity: 0.9;
}


section.app-info .section-title {
	font-size: 22px;
	margin-bottom: 20px;
}
.package-details {
	display: grid;
	grid-template-columns: 1fr auto; 
	align-items: center;
	row-gap: 18px;
	column-gap: 20px;
}
.package-details .item {
	display: contents;
}
.package-details .item .label {
	font-size: 15px;
	font-weight: 500;
	color: var(--dim-color);
	display: flex;
	align-items: center;
	gap: 10px;
}
.package-details .item .label svg {
	width: 20px;
	height: 20px;
	fill: #9ca3af;
	flex-shrink: 0;
}
.package-details .item .value {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-color);
	text-align: right; 
	word-break: break-all;
}
.package-details .item .value a {
	color: var(--primary-color);
	font-weight: 600;
}

.screenshotsbox {
	overflow-x: auto;
	white-space: nowrap;
}
.screenshots {
	display: flex;
	gap: 15px;
	padding: 10px 0;
}
.screenshots img {
	height: 220px; 
	width: auto;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	cursor: pointer;
	transition: transform 0.2s ease;
}
.screenshots img:hover {
	transform: scale(1.05);
}

.app-description {
	line-height: 1.8;
}
.app-description p, .app-description ul, .app-description ol {
	margin-bottom: 1em;
}
.app-description h2, .app-description h3 {
	font-size: 1.3em;
	font-weight: 600;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}

.keys {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}
.keys span {
	background-color: #eef2ff;
	color: #4338ca;
	font-size: 12px;
	font-weight: 500;
	padding: 6px 12px;
	border-radius: 20px;
	cursor: pointer;
	border: 1px solid transparent;
}
.keys span:hover {
	background-color: #e0e7ff;
	color: #3730a3;
}


.faq-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq-item {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background-color: var(--card-bg-color);
	transition: border-color 0.3s ease;
}
.faq-question {
	width: 100%;
	text-align: left;
	background-color: transparent;
	border: none;
	font-size: 16px;
	font-weight: 500;
	padding: 16px;
	cursor: pointer;
	outline: none;
}
.faq-answer {
	display: none;
	padding: 0 16px 16px 16px; 
	background-color: transparent;
	color: var(--dim-color);
	line-height: 1.6;
}
.faq-item.open {
	border-color: var(--primary-color);
}
.faq-item.open .faq-answer {
	display: block;
}
.faq-question:hover {
	background-color: var(--hover-bg);
}



.site-footer {
	background-color: #1c1d21;
	color: #a9a9a9;
	font-size: 15px;
	padding: 60px 20px 0 20px;
	line-height: 1.6;
	margin-top: 40px;
}
.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	padding-bottom: 40px;
}
.footer-column .footer-heading {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
	text-transform: uppercase;
}
.footer-column .footer-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: var(--primary-color);
}
.footer-column.about-column p {
	margin-bottom: 25px;
	color: #E0E0E0;
}
.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #2a2b2f;
	color: #ffffff;
	font-size: 16px;
	margin-right: 8px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
	background-color: var(--primary-color);
	transform: translateY(-2px);
}
.footer-column.links-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-column.links-column ul li {
	margin-bottom: 12px;
}
.footer-column.links-column ul li a {
	color: #E0E0E0;
	transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-column.links-column ul li a:hover {
	color: #ffffff;
	padding-left: 5px;
}
.footer-bottom-bar {
	background-color: #111111;
	padding: 20px 0;
	text-align: center;
	border-top: 1px solid #333;
}
.footer-bottom-bar p {
	margin: 0;
	color: #CCCCCC;
	font-size: 14px;
}


.custom-pagination {
	text-align: center;
	margin: 40px 0;
}
.custom-pagination .page-numbers {
	display: inline-block;
	margin: 0 5px;
	background-color: var(--card-bg-color);
	border: 1px solid var(--border-color);
	padding: 8px 14px;
	border-radius: 5px;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.custom-pagination a.page-numbers:hover,
.custom-pagination .current {
	background-color: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}


.sidebar {
	width: 80%;
	height: 100%;
	position: fixed;
	top: 0;
	left: -100%;
	color: #333;
	background: var(--card-bg-color);
	transition: left 0.3s ease-in-out;
	z-index: 1002;
	overflow-y: auto;
	padding: 20px;
}
.sidebar.active {
	left: 0;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1000;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1000;
}

ads {
	margin: 20px 0;
	padding: 10px;
	background-color: #fff;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	text-align: center;
}



.keys {
	padding: 10px 0;
}

.keys span {
	display: inline-block;
	color: #6f6f6f;
	font-size: 12px;
	border: 1px solid #eee;
	padding: 4px 10px;
	background: #f8f9fa;
	border-radius: 4px;
	margin-right: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
}

.keys span:hover {
	background: rgba(64,135,247,0.1);
	border-color: transparent;
}

.fade-effect {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(to top, #fff, rgba(255,255,255,0));
}

#show-more-btn {
	display: block;
	margin: 10px auto;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	background: transparent;
	color: var(--button-color);
}

#show-more-btn:after {
	content: "";
	border: solid #00875f;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin-left: 6px;
	top: -3px;
	position: relative;
}

code {
	font-style: italic;
	color: var(--a-color)
}

li {
	padding: 0 10px;
}

h2 {
	display: flex;
}

.ultabs {
	align-items: stretch;
	display: block;
	font-size: 1rem;
	overflow: hidden;
	overflow-x: auto;
	white-space: nowrap;
}

.ultabs ul {
	align-items: center;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	flex-grow: 1;
	flex-shrink: 0;
	justify-content: flex-start;
	padding-left: 0;
	margin: 0;
	color: #6f6f6f;
}

.ultabs li {
	display: inline-block;
	cursor: pointer;
}

.ultabs li:before {
	display: none;
}

.ultabs a {
	display: block;
	align-items: center;
	color: #6f6f6f;
	padding: .5em .6em;
}

.active a {
		border-bottom: .1875rem solid #1a73d6;
}

.inline-flex {
	display: inline-flex;
	align-items: center;
}

.ultabs svg {
	padding: 2px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.breadcrumb a,
.breadcrumb span {
	text-decoration: none;
	color: var(--primary-color);
	position: relative;
	margin-left: 5px;
}

.breadcrumb a + a::before,
.breadcrumb span::before {
	content: "›";
	color: #555;
	margin-right: 5px;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

#app a {
	display: flex;
	flex-direction: row;
	padding: 5px;
	color: black;
	text-decoration: none;
	gap: 10px;
}

#apps-for-you {
  max-width: 100%;
  display: grid;
  gap: 20px; 
}

@media (min-width: 600px) {
  #apps-for-you { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  #apps-for-you { grid-template-columns: repeat(3, 1fr); }
}

#app {
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
	border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

#app:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.app-icon img {
	width: 75px;
	height: 75px;
	border-radius: 10px;
	box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
	fit: cover;
}

.app-meta {
	display: flex;
	flex-direction: column;
	color: var(--dim-color);
	font-size: 14px;
}

@media (max-width: 600px) {
	.app-details {
		flex-direction: column;
	}
	.left-side {
		margin-bottom: 20px;
	}
	.right-side {
		width: 100%;
		gap: 5px;
	}
}


.buttons {
	display: flex;
	width: 100%;
}

.download-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: var(--primary-color); 
	color: #FFF;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	max-width: 100%;
	gap: 10px;
	justify-content: space-between;
	transition: background-color 0.3s ease;
}

.download-btn.disabled {
	background-color: #72b596 !important;
	cursor: not-allowed;
	pointer-events: none;
}

.button-left {
	display: flex;
	flex-direction: column;
}

.button-right svg {
	width: 30px;
	height: 30px;
}

.button-top {
	display: inline-flex;
	align-content: center;
	font-size: 18px;
}

.button-top span {
	margin: 0 5px;
}

.button-bottom span {
	font-size: 14px;
}

.download-btn:hover:not(.disabled) {
	background: var(--accent-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
	.download-btn {
		width: 100%;
		padding: 8px 12px; 
	}
}


.loader {
	border: 3px solid var(--border-color); 
	border-top: 3px solid var(--primary-color);
	border-radius: 50%;
	width: 25px;
	height: 25px;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.app-details {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 10px;
}

.icon img {
	width: 100px;
	height: 100px;
	margin-right: 10px;
	border-radius: 15px;
  box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
}

.left-side {
	display: flex;
	flex-direction: row;
}

.right-side {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-right: 10px;
}

.last-update {
	color: var(--dim-color);
	text-decoration: none;
}

.app-description {
	margin-bottom: 10px;
}

.app-description p, h2 {
	padding: 5px 0;
}


.screenshotsbox {
	padding: 10px;
}

.screenshots {
	white-space: nowrap;
	overflow-x: auto;
}

.screenshots img {
	height: 200px;
	border-radius: 15px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}


.files-area {
	display: flex;
	flex-direction: column;
}

.file-download {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

.files-area a {
	text-decoration: none;
}

.file-icon img {
	width: 50px;
	height: 50px;
	border-radius: 5px;
}

.show-left {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.good-title{
	color: #0073aa;
	font-size: 16px;
	display: flex;
	gap: 5px;
}

.file-meta {
	display: flex;
	color: var(--dim-color);
	gap: 5px;
}

.show-right {
	color: var(--dim-color);
}

.file-download:hover {
	background: var(--low-color);
}

.files-loading {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
	color: var(--a-color);
	margin: 10px 0;
}

.files-loading::after {
    content: "";
    width: 24px;
    height: 24px;
    border: 3px solid #0073aa;
    border-top: 3px solid transparent;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.custom-pagination {
	text-align: center;
	margin: 20px 0;
}

.custom-pagination a {
	text-decoration: none;
}

.custom-pagination .page-numbers {
	display: inline-block;
	margin: 0 5px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-pagination .prev, .custom-pagination .next {
	font-weight: bold;
}

.custom-pagination .page-numbers:hover {
    background-color: var(--primary-color);
    color: #fff;
}


footer {
	background: var(--main-color);
	text-align: center;
	padding: 20px;
    color: var(--dim-color);
    border-top: 1px solid var(--border-color);
}


.site-pages {
	font-size: 16px;
}

.site-pages h2 {
	font-size: 18px;
}

.site-pages h1 {
	font-size: 20px;
}

.site-pages p {
	padding: 5px
}

.contact-form form {
	display: flex;
	flex-direction: column;
	margin: 20px auto;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #f9f9f9;
}
.contact-form input, textarea {
	padding: 8px;
	margin: 5px 0;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.contact-form input[type="submit"] {
	background-color: var(--a-color);
	color: #FFF;
}

.title{
	font-size: 18px;
}

.metas {
	display: flex;
	flex-direction: column;
}

.metas span {
	color: var(--dim-color)
}

#post-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.cloud-item {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	box-shadow: rgb(0 0 0 / 8%) 0 0 0 1px
}

.cloud-item:hover {
	background-color: var(--low-color)
}

.popoverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	width: 350px;
	background: transparent;
	border-radius: 15px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.popoverlay.active {
	display: block;
	opacity: 1;
}

.popup.active {
	display: block;
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--button-color);
	color: white;
	padding: 10px 10px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.popup-title {
	font-size: 18px;
}

.close-btn {
	background: transparent;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
}

.popup-content {
	padding: 10px;
	font-size: 16px;
	color: #333;
	background: var(--low-color);
	border-radius: 0 0 15px 15px;
}

.popup-content p {
	padding: 10px 0;
}

.popup-content a {
	border-bottom: none;
}

.profile {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.person-bio {
	text-align: center;
	align-items: center;
	width: 100%;
}

.photo {
	background: rgb(2,0,36);
	background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(24,24,170,1) 100%, rgba(0,212,255,1) 100%);
	background-attachment: fixed;
	color: #ffffff;
	width: 100%;
	border-radius: 20px;
	margin-bottom: 10px;
	padding: 20px 0;
}


.photo img {
	border-radius: 100px;
	width: 150px;
	height: 150px;
	border: 2px solid white;
	padding: 5px;
}

.name {
	display: inline-flex;
    align-items: center;
    gap: 5px;
}

.name svg {
    fill: #1877F2; 
}


.name {
	font-size: 20px;
	font-weight: bold;
}

.bio {
	color: var(--dim-color);
}

.p-details {
	padding: 0 20px;
}

.social {
	display: flex;
	gap: 10px;
	padding: 10px;
}

.social span {
	background: var(--low-color);
	border-radius: 5px;
	padding: 2px 8px;
	border: 1px solid var(--dim-color);
	cursor: pointer;
}

.social a {
	color: #333;
}

.social span:hover {
	background: lightblue;
	border-color: transparent;
	color: #FFF;
}

.person-profile {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 10px;
}

@media (max-width: 768px) {
	.person-profile {
		flex-direction: column;
	}
}

.p-box {
	display: flex;
	color: #333;
}

.p-info {
	display: flex;
	flex-direction: column;
}

.p-name {
	font-size: 18px;
}

.p-bio {
	color: var(--dim-color);
}

.chat-container {
	position: fixed;
	bottom: 50px;
	right: 10px;
	background: #fff;
	border-radius: 12px;
	width: 80%;
	height: 70%;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	display: none;
	flex-direction: column;
}

.chat-header {
	display: flex;
	background: var(--button-color);
	color: white;
	padding: 5px 10px;
	display: flex;
	font-size: 16px;
	justify-content: space-between;
}

.chatbtns svg {
	fill: #FFF;
}

.chat-box {
	height: 100%;
	overflow-y: auto;
	padding: 10px;
	background: var(--low-color);
	font-size: 14px;
}

.pre-message-container {
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center; 
	justify-content: center; 
	height: 100%; 
	background: var(--low-color)
}

.howto {
	font-size: 18px;
}

.pre-message {
	color: #28a745;
	cursor: pointer;
}

.chat-box p {
	padding: 8px 12px;
	border-radius: 8px;
	margin: 5px 0;
	max-width: 100%;
	line-height: 1.4;
}

.user-msg {
	align-self: flex-end;
	text-align: right;
	margin: 10px;
}

.ai-msg {
	background: #e9ecef;
	color: black;
	align-self: flex-start;
	border-radius: 5px;
}

.input-area {
	display: flex;
	border-top: 1px solid #ddd;
	background: #f8f9fa;
}

.input-area input {
	flex: 1;
	border: none;
	padding: 10px;
	font-size: 14px;
	border-radius: 8px;
	outline: none;
	background: #f8f9fa;
}

.input-area button {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	margin-left: 5px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.input-area button:hover {
	background: #258a3d;
}


.typing .dots::after {
    content: " ";
    animation: dots 1.2s steps(4, end) infinite;
}

@keyframes dots {
    0%, 100% { content: "Typing"; }
    25% { content: "Typing."; }
    50% { content: "Typing.."; }
    75% { content: "Typing..."; }
}

.blog {
	font-size: 16px;
}

.blog-content img {
	width: 100%;
	height: auto; 
	object-fit: cover;
	border-radius: 20px;
	margin: 10px 0;
}

.blog h1 {
	font-size: 20px;
	padding: 10px 0;
}

.blog-content p {
	padding: 10px 0;
}

.blog span {
	color: var(--dim-color);
}

.blog-list {
	list-style: none;
	padding: 10px 0;
}

.blogst {
	font-size: 18px;
}

.blog-meta span {
	color: #333 !important;
}

.ablog {
	display: flex;
	padding: 10px;
	gap: 10px;
	border-radius: 20px;
	border: 1px solid transparent;
}

.ablog:hover {
	border-color: var(--button-color);
	background: var(--low-color);
}

.thumb img {
	width: 200px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
}

.blog-meta {
	display: flex;
	flex-direction: column;
}

.blog-info {
	color: #666;
}

.blog-date {
	color: var(--dim-color);
}

.noapk {
	display: flex;
	flex-direction: column;
	color: var(--dim-color);
	margin: 20px 0;
	text-align: center;
}

.editor {
	display: flex;
	gap: 10px;
	margin-top: 17px;
}

.editor-img img {
	width: 50px;
	height: 50px;
	border-radius: 50px;
	border: 2px solid var(--a-color);
	padding: 2px;
	transition: border 0.3s ease;
	cursor: pointer;
}

.editor-img img:hover {
	border: 2px dotted var(--a-color);
}


.editor-details {
	display: flex;
	flex-direction: column;
}

.editor-name a {
	font-size: 16px;
	color: #333 !important;
}

.editor-name:hover a {
	color: var(--a-color) !important;
}

.editor-details span, .bio span {
	margin: 5px;
	font-size: 12px;
	background: var(--low-color);
	padding: 4px 6px;
	border-radius: 5px;
	color: var(--a-color);
}

.editor-tag {
	font-size: 12px;
	color: var(--dim-color);
}

.editor-bio {
	font-size: 12px;
	color: var(--dim-color);
}

.editor-tag {
	display: inline-flex;
}

.editor-tag svg {
	width: 14px;
	fill: var(--dim-color);
	margin-right: 3px;
}

.badge {
	display: inline-flex;
	background: var(--low-color);
	fill: var(--button-color);
	border-radius: 5px;
	color: var(--button-color);
	font-size: 12px;
	align-items: center;
	padding: 2px 5px;
	align-content: center;
	cursor: pointer;
	border: 1px solid var(--button-color);
}

.badge svg {
	width: 16px;
}

.badge:hover {
    background: var(--button-color);
    color: #FFF;
}

.label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.label svg {
	fill: var(--dim-color);
	width: 18px;
}

.package-details {
  display: flex;
	flex-direction: column;
	gap: 10px;
	padding-right: 10px;
}

.item {
	display: flex;
	justify-content: space-between;
}

.app-meta span {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.app-meta svg {
	width: 16px;
	fill: var(--dim-color);
}

body {
	margin-bottom: 40px;
}


header {
  background: #f2f8fc;
}

.header-right svg {
	width: 24px;
	height: 24px;
	fill: #333;
}

.header-right span {
	display: inline-flex;
	align-items: center;
}

.header-right {
	gap: 10px;
}

.bottom-sticky-menu{
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #f2f8fc;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 10px 0;
	box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
	z-index: 9999;
}

.bottom-sticky-menu span {
	display: flex;
	flex: inline-flex;
	color: var(--button-color);
	font-size: 16px;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
}

.bottom-sticky-menu svg {
	fill: var(--button-color);
}

.title span {
	color: var(--dim-color);
	padding: 0 6px;
	font-size: 12px;
}

.single-app-meta h2 {
	padding: 0;
	display: inline-flex;
	align-items: baseline;
}

.important-note {
	display: inline-block; 
	padding: 3px 8px; 
	border: 1px solid #f5c2c7; 
	background-color :#f8d7da; 
	color: #842029; 
	border-radius: 4px; 
	margin: 10px 0;
}

.footerx {
	background: var(--low-color);
    color: var(--dim-color);
	margin-bottom: 60px;
}

.app-description h2, h3, b, strong {
	font-weight: normal;
}

.faq-container {
	display: flex;
	flex-direction: column;
	padding: 10px;
}

.faq-item {
	margin-bottom: 12px;
	border: 1px solid var(--border-color); 
	border-radius: 5px;
	overflow: hidden; 
	background-color: #fff; 
	transition: border-color 0.3s ease; 
}

.faq-question {
	width: 100%;
	text-align: left;
	background-color: #fff;
	border: none;
	font-size: 16px;
	padding: 16px;
	cursor: pointer;
	outline: none;
	display: block;
	transition: background-color 0.3s ease;
}

.faq-answer {
	display: none;
	padding: 16px;
	background-color: var(--main-color);
	border-top: 1px solid #e0e0e0; 
	color: #333; 
	line-height: 1.6;
}

.faq-item.open .faq-answer {
	display: block;
}

.faq-item.open {
	border-color: var(--primary-color);
}

.faq-item.open .faq-question {
	background-color: #e8f5e9; 
}

.faq-question:hover {
	background-color: var(--hover-bg);
}

.site-footer {
    background-color: #1c1d21; 
    color: #a9a9a9; 
    font-size: 15px;
    padding-top: 60px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; 
    padding-bottom: 40px;
}

.footer-column .footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-column .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #007bff; 
}

.footer-column.about-column p {
    margin-bottom: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2b2f;
    color: #ffffff;
    font-size: 16px;
    margin-right: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: #007bff; 
    transform: translateY(-2px);
}

.footer-column.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column.links-column ul li {
    margin-bottom: 12px;
}

.footer-column.links-column ul li a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column.links-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom-bar {
    background-color: #111111; 
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom-bar p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; 
        text-align: center;
    }

    .footer-column .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}

.header-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.site-title a {
    text-decoration: none;
    color: #202124;
    font-size: 22px;
    white-space: nowrap; 
}

.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.search-toggle {
    cursor: pointer;
}

.main-nav {
    display: flex; 
    align-items: center;
    gap: 20px;
}
.main-nav a, .dropdown-toggle {
    text-decoration: none;
    color: #5f6368;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.main-nav a:hover, .dropdown-toggle:hover {
    color: #007bff;
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
}
.dropdown-toggle .fa-caret-down {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.dropdown-content {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    right: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 15px;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}
.dropdown:hover .dropdown-toggle .fa-caret-down,
.dropdown.active .dropdown-toggle .fa-caret-down {
    transform: rotate(180deg);
}

.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}
.search-popup-content {
    width: 80%;
    max-width: 700px;
}
.search-popup-content input[type="search"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-size: 2.5rem;
    padding: 15px 0;
    text-align: center;
    outline: none;
}
.search-popup-content input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.search-close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .header-container {
        gap: 10px; 
    }
    .site-title a {
        font-size: 18px;
    }
    .main-nav {
        gap: 12px; 
    }
    .main-nav a, .dropdown-toggle {
        font-size: 14px;
    }
    .search-popup-content input[type="search"] {
        font-size: 1.5rem; 
    }
}

body {
    background-color: #f7f8fa; 
    font-family: 'Inter', sans-serif; 
}

.main-content-container {
    max-width: 1100px; 
    margin: 40px auto; 
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px; 
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 20px 40px; 
}

.main-content-container > section {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 30px 0; 
    margin: 0;
}

.main-content-container > section:not(:last-of-type) {
    border-bottom: 1px solid #f0f2f5;
}

h1.title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    border-bottom: none; 
    display: block;
}

.package-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.package-details .item {
    background-color: #f8f9fa; 
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
}

.package-details .item .label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280; 
    margin-bottom: 8px; 
    text-transform: uppercase; 
}

.package-details .item .label svg {
    width: 18px;
    height: 18px;
    fill: #6b7280;
}

.package-details .item .value {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    word-wrap: break-word; 
}

.package-details .item .value a {
    color: #3b82f6;
    text-decoration: none;
}
.package-details .item .value a:hover {
    text-decoration: underline;
}

.package-details {
    display: grid;
    grid-template-columns: 1fr auto;
    
    align-items: center;
    row-gap: 20px;
    column-gap: 20px; 
}

.package-details .item {
    display: contents; 
}

.package-details .item .label {
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-details .item .label svg {
    width: 20px;
    height: 20px;
    fill: #9ca3af;
    flex-shrink: 0;
}

.package-details .item .value {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    text-align: right; 
    word-break: break-all;
}

.package-details .item .value a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.package-details .item .value a:hover {
    text-decoration: underline;
}

@media (max-width: 540px) {
    .package-details .item .label,
    .package-details .item .value {
        font-size: 14px; 
    }
}
.screenshots {
    gap: 20px;
}
.screenshot-image {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}
.screenshot-image:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.keys {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.keys span {
    background-color: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .main-content-container {
        margin: 20px auto;
        padding: 10px 15px;
        border-radius: 10px;
    }
    h1.title {
        font-size: 24px;
    }
    .section-title {
        font-size: 20px;
    }
    .main-content-container > section {
        padding: 20px 0;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif; 
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #007bff; 
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block; 
}

.main-content-container {
    max-width: 1000px; 
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

section {
    margin-bottom: 40px; 
    padding: 20px 0;
}

.section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    line-height: 1.3;
    margin-top: 1.5em; 
    margin-bottom: 0.8em; 
}

h1 { font-size: 2.8em; font-weight: 800; text-align: center; margin-top: 0.5em; margin-bottom: 0.5em;} 
h2 { font-size: 2.2em; font-weight: 700; }
h3 { font-size: 1.8em; font-weight: 600; }
h4 { font-size: 1.5em; font-weight: 600; }
h5 { font-size: 1.2em; font-weight: 500; }
h6 { font-size: 1em; font-weight: 500; }

p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1em;
}

strong, b { font-weight: 700; color: #333; }
em, i { font-style: italic; color: #666; }

ul, ol {
    margin-bottom: 1.5em;
    padding-left: 25px; 
}

ul li {
    list-style: disc; 
    margin-bottom: 0.5em;
    color: #555;
}

ol li {
    list-style: decimal; 
    margin-bottom: 0.5em;
    color: #555;
}

ul ul, ol ol, ul ol, ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

blockquote {
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    margin: 1.5em 0;
    background-color: #f8f8f8;
    font-style: italic;
    color: #666;
    border-radius: 4px;
}

blockquote p:last-child {
    margin-bottom: 0;
}

pre {
    background-color: #eee;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.5em;
}

code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #e0e0e0;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 0.9em;
}

pre code {
    background-color: transparent;
    padding: 0;
    font-size: 1em;
}

.app-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.app-details .left-side {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 2; 
    min-width: 300px;
}

.app-details .icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 20%; 
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.app-details .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-details .single-app-meta {
    flex-grow: 1;
}

.app-details .title {
    font-size: 2.2em;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #2c3e50;
    text-align: left; 
}

.app-details .apktype {
    background-color: #28a745;
    color: #fff;
    font-size: 0.6em;
    padding: 4px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 10px;
}

.app-details .app-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9em;
    color: #777;
}

.app-details .app-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-details .app-meta svg {
    width: 18px;
    height: 18px;
    fill: #777;
}

.app-details .category-link {
    font-weight: 600;
    color: #007bff;
}

.app-details .right-side {
    flex: 1; 
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-details .buttons {
    width: 100%;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 15px 25px;
    background-color: #28a745; 
    color: #fff;
    border-radius: 10px;
    text-align: left;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.download-btn:hover:not(.disabled) {
    background-color: #218838;
    transform: translateY(-2px);
    text-decoration: none;
}

.download-btn.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #6c757d; 
    box-shadow: none;
}

.download-btn .button-left {
    flex-grow: 1;
}

.download-btn .button-top {
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-btn .filesize {
    font-size: 0.8em;
    opacity: 0.8;
}

.download-btn .button-bottom {
    font-size: 0.8em;
    opacity: 0.9;
}

.download-btn .button-right svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.download-btn .button-right .loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.short-info {
    font-size: 1.1em;
    color: #444;
    background-color: #e9f7ff; 
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.important-note {
    background-color: #ffe0b2; 
    color: #e65100;
    padding: 15px 20px;
    border-left: 5px solid #ff9800;
    border-radius: 5px;
    margin-bottom: 30px;
    font-weight: 500;
}

.app-description {
    position: relative;
}

.app-description p { 
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 1.2em;
}

.keys {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}

.keys span {
    background-color: #e0e0e0;
    color: #555;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.keys span:hover {
    background-color: #d0d0d0;
}

.keys .is-safe {
    background-color: #d4edda; 
    color: #155724;
}

.keys .is-safe:hover {
    background-color: #c3e6cb;
}

.screenshotsbox {
    overflow-x: auto; 
    padding-bottom: 15px; 
    -webkit-overflow-scrolling: touch; 
    margin-bottom: 20px;
}

.screenshots {
    display: flex;
    gap: 15px; 
    padding: 10px 0;
}

.screenshot-image {
    width: 200px; 
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.screenshot-image:hover {
    transform: translateY(-3px);
}

.lightbox {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.faq-container {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background-color: #f7f7f7;
    color: #333;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '\25B6'; 
    font-size: 0.8em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question {
    background-color: #e0e0e0;
}

.faq-item.open .faq-question::after {
    transform: rotate(90deg); 
}

.faq-answer {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 200px; 
    padding: 15px 25px;
}

.faq-answer p {
    margin-bottom: 0; 
    color: #666;
    font-size: 0.95em;
}


.package-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.package-details .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.package-details .label {
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-details .label svg { 
    width: 18px;
    height: 18px;
    fill: #007bff;
}

.package-details .value {
    color: #333;
    font-weight: 500;
    text-align: right;
}

.popoverlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.popup {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    max-width: 450px;
    width: 90%;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.popup-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    font-weight: bold;
    color: #777;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #333;
}

.popup-content p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 10px;
}

.popup-content code {
    background-color: #f0f0f0;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.popup-content a {
    color: #007bff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .main-content-container {
        margin: 15px auto;
        padding: 15px;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.5em; }

    .app-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 15px;
    }

    .app-details .left-side {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        min-width: unset;
    }

    .app-details .icon {
        width: 80px;
        height: 80px;
    }

    .app-details .title {
        font-size: 1.8em;
        text-align: center;
        width: 100%;
    }

    .app-details .app-meta {
        justify-content: center;
        width: 100%;
    }

    .app-details .right-side {
        width: 100%;
        min-width: unset;
    }

    .download-btn {
        padding: 12px 20px;
    }

    .package-details {
        grid-template-columns: 1fr; 
    }

    .popup {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .app-details .title {
        font-size: 1.6em;
    }

    .short-info, .important-note {
        font-size: 1em;
        padding: 10px 15px;
    }

    .keys span {
        padding: 6px 12px;
        font-size: 0.85em;
    }

    .faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .faq-item.open .faq-answer {
        padding: 10px 20px;
    }
}
.entry-content p {
  margin-bottom: 1.2em; 
  line-height: 1.6;   
}

.show-more-container {
    position: relative;
    margin-bottom: 20px;
}

.show-more-container .entry-content {
    max-height: 120px; 
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-in-out;
}

.show-more-container .entry-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #ffffff); 
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.show-more-container.is-expanded .entry-content {
    max-height: 50000px; 
}

.show-more-container.is-expanded .entry-content::after {
    opacity: 0;
}

.show-more-button {
    display: block;
    margin: 15px auto 0;
    padding: 10px 25px;
    background-color: #0073aa; 
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.show-more-button:hover {
    background-color: #005f8a; 
}


#security-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px; 
    padding: 8px 15px; 
    margin-top: 15px; 
    
    background-color: #eaf7ec;  
    color: #28a745;            
    border: 1px solid #cce8d0;  

    font-size: 14px;
    font-weight: 600;           
    border-radius: 8px;         
    text-decoration: none;
    cursor: pointer;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease-in-out;
}

#security-report-btn:hover {
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2); 
    color: #218c3a; 
}

#security-report-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;      
  stroke: currentColor;   
  fill: none;             
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 15px;
}

#security-popup .popup-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-family: sans-serif;
    color: #333;
}
#security-popup .popup-content h3{
  margin-top:0;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#security-popup .popup-close {
    position: absolute;
    top: 5px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}
#security-popup .popup-close:hover{
    color: #000;
}
#security-popup .hash-info {
    margin-top: 15px;
}
#security-popup .hash-info strong {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}
#security-popup .hash-info code {
    display: block;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 4px;
    word-wrap: break-word;
    font-family: monospace;
    color: #333;
    font-size: 13px;
    line-height: 1.5;
}



.popup-app-header {
    display: flex;
    align-items: center;
    gap: 15px; 
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.popup-app-icon img {
    width: 64px; 
    height: 64px;
    border-radius: 12px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.popup-app-info .popup-app-title {
    margin: 0 0 4px 0;
    padding: 0;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: #222;
	position: relative; 
    top: 10px; 
}

.popup-app-info .popup-app-version {
    font-size: 14px;
    color: #666;
	 position: relative; 
    top: -25px; 
	left: 4px; 
}

.security-report-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.right-side .buttons {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    gap: 10px;            
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-animation: fadeIn 0.3s;
    animation: fadeIn 0.3s;
}

.modal-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    margin: 10% auto;
    padding: 0;
    border: 0;
    width: 90%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
}
.modal-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-right: 15px;
}
.modal-app-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #212529;
}
.modal-app-version {
    font-size: 14px;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

.verified-message {
    display: flex;
    align-items: center;
    background-color: #e6f9f0;
    color: #00874e;
    padding: 15px 25px;
    font-size: 15px;
    line-height: 1.5;
}
.verified-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0; 
}

.hash-section {
    padding: 20px 25px;
}
.hash-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #343a40;
}
.hash-info {
    margin-bottom: 15px;
}
.hash-info strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #495057;
}
.hash-info input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    background-color: #f1f3f5;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
}

.close-button {
    color: #adb5bd;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
    line-height: 1;
    font-weight: 300;
    transition: color 0.2s ease-in-out;
}
.close-button:hover,
.close-button:focus {
    color: #212529;
    text-decoration: none;
    cursor: pointer;
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}
#security-report-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.bottom-sticky-menu {
    display: none !important;
}
.custom-breadcrumbs {
    background-color: transparent; 
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 15px;
    border-bottom: 1px solid #e9ecef; 
    font-family: "Roboto", sans-serif;
}

.custom-breadcrumbs a {
    color: #5f6368;
    text-decoration: none;
    font-weight: 500;
}

.custom-breadcrumbs a:hover {
    color: #000000;
    text-decoration: none;
}

.custom-breadcrumbs .breadcrumb-separator {
    color: #9aa0a6;
    margin: 0 8px;
}

.custom-breadcrumbs .breadcrumb-item-current {
    color: #202124;
    font-weight: bold;
}


.site-footer .footer-heading {
    color: #FFFFFF; 
}

.site-footer .about-column p {
    color: #E0E0E0; 
    line-height: 1.6; 
}

.site-footer .links-column ul li a {
    color: #E0E0E0;
}

.site-footer .links-column ul li a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-bottom-bar p {
    color: #CCCCCC; 
}
<style>
  .twitter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 50px; 
    background-color: #1DA1F2; 
    color: #ffffff; 
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .twitter-button:hover {
    background-color: #0c85d0; 
    transform: translateY(-2px); 
  }

  .twitter-button i {
    margin-right: 10px; 
    font-size: 18px;
  }
</style>



.single-post-container {
    background-color: transparent !important; 
    border: none !important;                 
    box-shadow: none !important;            
    padding: 0 !important;                  
}

.single-app-meta h1.title {
    font-size: 28px;    
    line-height: 1.3;    
    font-weight: 700;
    display: block;     
    margin-bottom: 5px;  
}

.single-app-meta h1.title span {
    display: none !important; 

.left-side .icon img {
    width: 90px;  
    height: 90px; 
    object-fit: cover !important; 
    border-radius: 20px;
}

@media (max-width: 767px) {
    .single-app-meta h1.title {
        font-size: 24px; 
    }

    .left-side {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

.comments-area .comments-title {
    display: none !important;
}

.comments-area #reply-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
    color: #212529 !important;
    text-align: left;
}

#commentform.comment-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 10px;
}

#commentform {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
}

#commentform p {
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
}

#commentform .comment-form-comment { width: 100%; }
#commentform .comment-form-author,
#commentform .comment-form-email { width: 48.5%; }
#commentform .comment-form-url,
#commentform .comment-notes { display: none; } 

#commentform input[type="text"],
#commentform input[type="email"],
#commentform textarea#comment {
    width: 100% !important;
    height: auto !important;
    padding: 12px 18px !important;
    border: 1px solid #ced4da !important;
    border-radius: 6px !important;
    background-color: #ffffff !important;
    font-size: 15px !important;
    color: #495057 !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
}

#commentform textarea#comment {
    min-height: 120px !important; /
}

#commentform input:focus, #commentform textarea:focus {
    border-color: #8bc34a !important;
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.25) !important;
}

#commentform .form-submit {
    width: 100% !important;
    text-align: right !important;
    margin: 0 !important;
}

#commentform #submit {
    background-color: #8bc34a !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
    -webkit-appearance: none;
    float: none !important; 
    width: auto !important; 
    display: inline-block !important;
}

#commentform #submit:hover {
    background-color: #7cb342 !important;
}

.site-header {
    background-color: #FFFFFF; 
    border-bottom: 1px solid #e9e9e9; 
    padding: 10px 0;
}

.site-header .main-navigation a {
    color: #333333; 
    font-weight: 500;
}

.site-header .main-navigation a:hover,
.site-header .main-navigation .current-menu-item > a {
    color: #2596be; 
}



.site-footer {
    background-color: #2596be; 
    color: #f0f0f0; 
    padding-top: 45px;
    font-size: 15px;
}

.site-footer .footer-heading {
    color: #FFFFFF; 
    font-weight: bold;
    font-size: 18px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5); 
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.site-footer .footer-column ul {
    list-style: none;
    padding-left: 0;
}

.site-footer .footer-column ul li a {
    color: #dcdcdc; 
    transition: all 0.3s ease;
    padding: 5px 0;
}

.site-footer .footer-column ul li a:hover {
    color: #FFFFFF; 
}

.site-footer .social-icons a {
    color: #FFFFFF; 
    border: 1px solid #FFFFFF;
    background-color: transparent;
    transition: all 0.3s ease;
}

.site-footer .social-icons a:hover {
    background-color: #FFFFFF;
    color: #2596be;
    transform: scale(1.1);
}

.footer-bottom-bar {
    background-color: #1E789A; 
    color: #e0e0e0; 
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

.app-header-section {
    display: flex;
    flex-direction: column; 
    gap: 20px; 
    margin-bottom: 20px; 
}


.app-details-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-meta {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 5px; 
}

.single-app-meta {
    min-width: 0; 
}

h1.title {
    overflow-wrap: break-word; 
    word-break: break-word;   
}


.apk-text-normal {
    background-color: transparent;
    color: inherit; 
    font-size: 1rem; 
    font-weight: bold;
    padding: 0;
    margin-left: 5px;
    border-radius: 0;
    vertical-align: middle;
}

.app-download-area .buttons {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
    width: 100%;
}

.app-download-area .download-btn,
.app-download-area #security-report-btn {
    width: 100% !important; 
    max-width: none !important;
    box-sizing: border-box;
}
h1.title .apk-text-normal {
    font-size: inherit;

    font-weight: normal;
}

.lightbox {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  padding-top: 60px; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.9); 
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 85vh;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.screenshot-image {
    cursor: pointer;
}

h1.title {
   
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    
    line-height: 1.3;
}



h1.title .apk-text-normal {
    font-size: inherit; 
    font-weight: normal;
}

.page-centered-wrapper {
    max-width: 1400px;
    margin: 25px auto;
    padding: 0 15px;
}
.main-plus-sidebar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; 
}
.main-content-column {
    flex: 1; 
    min-width: 65%; 
}
 {
    flex-basis: 280px; 
    flex-grow: 0;
    flex-shrink: 0;
}

h1.title {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    line-height: 1.3;
}
h1.title .apk-text-normal {
    font-size: inherit;
    font-weight: normal;
}

#my-custom-sidebar .recent-apps-widget .widget-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
#my-custom-sidebar .recent-apps-widget ul {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
#my-custom-sidebar .recent-apps-widget ul li {
    list-style: none !important;
    background-image: none !important;
    padding: 0 !important;
    margin-bottom: 12px !important;
    position: relative;
}
#my-custom-sidebar .recent-apps-widget ul li::before,
#my-custom-sidebar .recent-apps-widget ul li::after {
    display: none !important;
    content: "" !important;
}
#my-custom-sidebar .recent-apps-widget ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
#my-custom-sidebar .recent-apps-widget ul li a:hover {
    background-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
}
#my-custom-sidebar .recent-apps-widget li img {
    border-radius: 8px;
    object-fit: cover;
}
#my-custom-sidebar .sidebar-app-details {
    display: flex;
    flex-direction: column;
}
#my-custom-sidebar .app-title-sidebar {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}
#my-custom-sidebar .sidebar-app-meta {
    font-size: 12px;
    color: #888;
}
#my-custom-sidebar .sidebar-app-meta .sidebar-version {
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid #e0e0e0;
}

.lightbox {
  display: none;
  position: fixed; 
  z-index: 9999;
  padding-top: 60px; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.9); 
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 85vh;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}
.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.screenshot-image {
    cursor: pointer;
}

@media (max-width: 900px) {
    .main-plus-sidebar-container {
        flex-direction: column;
    }
     {
        margin-top: 30px; 
        flex-basis: 100% !important;
    }
}


.single-post h1.title {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: nowrap !important; 
}

.single-post h1.title .apk-text-normal {
    white-space: nowrap !important;
    margin-left: 0.5em !important;
}

@media (max-width: 420px) {
    .single-post h1.title {
        font-size: 16px !important; 
    }
}
@media (max-width: 380px) {
    .single-post h1.title {
        font-size: 14px !important; 
    }
}
#app a .size{
	display:none;
}

.site-title a strong{
	font-family:Arial,'Helvetica Neue',Helvetica,sans-serif;
	color:#2c3e50;
}

footer{
	background-color:#2c3e50 !important;
}

.site-footer .footer-bottom-bar{
	background-color:#2c3e50;
}

.page-centered-wrapper main h2.section-title{
	
}

@media (min-width:769px){

	.page-centered-wrapper main h4.section-title{
		font-size:20px;
	}
	
	.page-centered-wrapper main h2.section-title{
		font-size:20px;
	}
	
}

@media (max-width: 992px) {
    
    .main-plus-sidebar-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    
    
    .single-app-meta h1.title {
        font-size: 24px; 
    }

    .footer-grid {
        grid-template-columns: 1fr; 
        text-align: center;
    }

    .header-container {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    
    .app-details {
		flex-direction: column;
        align-items: center;
        text-align: center;
	}

    .download-btn {
        padding: 10px 15px;
    }

    .app-icon img {
        width: 80px;
        height: 80px;
    }
}

body.single .single-post-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.single .main-content-column {
    padding: 0 !important;
}

.app-details {
    align-items: flex-start; 
}

.left-side .icon img {
    width: 85px !important;
    height: 85px !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .right-side {
        width: 100%;
        margin-top: 20px;
    }
}
