/*
Theme Name: APK Theme by HoowTo
Theme URI: https://99apks.store/
Author: 99apks.store
Author URI: https://99apks.store/
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: 99apks.store
*/


/* =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%; 
}
body {
	background: #fff;
}
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;
}

/* Global */
:root {
    --main-color: #f9f9f9; /* Light gray background */
    --primary-color: #007BFF; /* Professional blue */
    --accent-color: #FF5722; /* Vibrant orange */
    --text-color: #333; /* Dark gray text */
    --dim-color: #6c757d; /* Light gray text */
    --hover-bg: rgba(0, 123, 255, 0.1); /* Light blue hover background */
    --border-color: #e0e0e0; /* Light border color */
}

html, body {
	font-size: 15px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	background-color: var(--main-color);
	color: #333;
	height: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0;
	min-height: 100vh;
}

a {
	color: var(--primary-color);
	text-decoration: none;
    transition: color 0.3s ease;
}

a:focus {
    outline: none;
}

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

section {
	position: relative;
	border-bottom: 1px solid #e5e5e5;
	width: 100%;
	padding: 10px 0;
}

h2, h3, h4 {
	font-size: 18px;
	font-weight: 500;
}

li:before {
	content: '›';
	margin-right: 5px;
}

svg {
	cursor: pointer;
}

/* Header */
header {
	background: #fff;
	color: var(--text-color);
	padding: 5px 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	width: 100%;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
}

header a {
	color: #333;
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
}

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

.header-right svg {
    fill: var(--dim-color);
}

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

/* post share */
.post-share {
	display: flex;
	align-items: center;
	gap: 5px;
}

.share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 10%;
	text-decoration: none;
	border: 1px solid #E7E7E7;
	cursor: pointer;
	transition: background 0.3s;
}

.share-btn svg {
	fill: #333;
	width: 20px;
	height: 20px;
}

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

.share-btn svg:hover {
	fill: var(--a-color);
}

.copy-link {
	background: transparent;
}

/* Main Content */
main {
	padding: 5px 20px;
	flex: 1;
}

@media (max-width: 767px) {
	main {
		padding: 5px 10px;
	}
	.header-container {
		padding: 0 10px;;
	}
}


/* Sidebar */
.sidebar {
	width: 80%;
	height: 100%;
	position: fixed;
	top: 0;
	left: -100%;
	color: #333;
	background: var(--low-color);
	transition: left 0.3s ease-in-out;
	z-index: 1002;
	overflow-y: auto;
	padding: 10px;
}

.sidebar a {
    border-bottom: none !important;
}

.sidebar a {
	background: #FFF;
}

.sidebar h2 {
	color: #333;
	font-weight: bold;
}

.searches {
	margin-bottom: 10px;
}

.categories {
	margin-bottom: 20px;
}

/* Sidebar Active */
.sidebar.active {
	left: 0;
}

.search-form form {
	display: flex;
}

.search-form input[type="search"] {
	width: 100%;
	padding: 5px 8px;
	border: 1px solid #a9a9a9;
	box-shadow: inset 0 1px 2px rgba(10, 10, 10, .1);
	margin: 0;
	border-radius: 4px 0 0 4px;
	outline: 0;
}

.search-form button[type="submit"] {
	background-color: var(--button-color);
	color: #fff;
	padding: 5px .75em;
	cursor: pointer;
	justify-content: center;
	text-align: center;
	vertical-align: top;
	border-radius: 0 5px 5px 0;
	transition: box-shadow .15s, background-color .15s, transform .1s, opacity .1s;
	align-items: baseline;
}

.search-form button[type="submit"]:hover {
    background-color: #388E3C; /* Darker green */
}

/* Overlay */
.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 and show more */
.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 */
.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 Links and Buttons */
#app a {
	display: flex;
	flex-direction: row;
	padding: 5px;
	color: black;
	text-decoration: none;
	gap: 10px;
}

/* Homepage Styles */
#apps-for-you {
  max-width: 100%;
  display: grid;
  gap: 20px; /* Apps ke darmiyan space */
}

@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;
	}
}

/* Post Details */
/* Download button */
.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 spinner */
.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;
}

/* Screenshots */
.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;
}

/* File Download Section */
.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); }
}


/* Center the pagination */
.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 */
footer {
	background: var(--main-color);
	text-align: center;
	padding: 20px;
    color: var(--dim-color);
    border-top: 1px solid var(--border-color);
}


/* extra css */
.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)
}

/* Overlay (Background) */
.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 box */
/* Popup box */
.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;
}

/* Show popup with animation */
.popoverlay.active {
	display: block;
	opacity: 1;
}

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

/* Popup header */
.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 */
.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;
}

/* persons */
/* person single */
.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;
}

/* post checked by */
.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 */
.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 */
.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 messages */
.chat-box {
	height: 100%;
	overflow-y: auto;
	padding: 10px;
	background: var(--low-color);
	font-size: 14px;
}

/* Predefined messages */
.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;
}

/* User & AI messages */
.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 */
.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 post */
.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 archive */
.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;
}

/* APP INFO */
.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 */
.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; /* Light green background */
}

.faq-question:hover {
	background-color: var(--hover-bg);
}
/* --- Professional Footer Styles --- */

/* Main Footer Container */
.site-footer {
    background-color: #1c1d21; /* Dark background color */
    color: #a9a9a9; /* Light grey text color */
    font-size: 15px;
    padding-top: 60px;
    line-height: 1.6;
}

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

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 40px; /* Space between columns */
    padding-bottom: 40px;
}

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

/* Underline effect for headings */
.footer-column .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #007bff; /* Accent color, aap isse change kar sakte hain */
}

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

/* Social Media Icons */
.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; /* Accent color on hover */
    transform: translateY(-2px);
}

/* Footer Links Styling */
.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 */
.footer-bottom-bar {
    background-color: #111111; /* Even darker for separation */
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        text-align: center;
    }

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

    .social-icons {
        justify-content: center;
    }
}
/* --- MUKAMMAL HEADER, POPUP SEARCH AUR MOBILE STYLING --- */

/* Header ka Main Container */
.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; /* Site ka naam tootne se bachayega */
}

/* Right Side Icon (Sirf Search) */
.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.search-toggle {
    cursor: pointer;
}

/* Desktop & Mobile Navigation Menu */
.main-nav {
    display: flex; /* Ab menu mobile par bhi nazar aayega */
    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 "More" Menu */
.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 ko Desktop par hover aur Mobile par click par show karein */
.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);
}

/* Popup Search Box Styling */
.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;
}

/* --- Mobile Responsive Design --- */
@media (max-width: 767px) {
    .header-container {
        gap: 10px; /* Mobile par gap kam kar dein */
    }
    .site-title a {
        font-size: 18px; /* Mobile par title chota karein */
    }
    .main-nav {
        gap: 12px; /* Menu items ka gap kam karein */
    }
    .main-nav a, .dropdown-toggle {
        font-size: 14px; /* Menu font chota karein */
    }
    .search-popup-content input[type="search"] {
        font-size: 1.5rem; /* Mobile par search font chota karein */
    }
}
/* --- Single Post Professional & Attractive Layout v2.0 --- */

/* Poore page ko halka sa background color aur naya font dena */
body {
    background-color: #f7f8fa; /* Thora sa behtar grey */
    font-family: 'Inter', sans-serif; /* Professional Font */
}

/* Main container jo ab ek single white card banega */
.main-content-container {
    max-width: 1100px; 
    margin: 40px auto; 
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px; /* Zyada rounded corners */
    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; /* Padding for desktop */
}

/* Ab sections ke apne box nahi honge, sirf neeche margin hoga */
.main-content-container > section {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 30px 0; /* Uper neeche padding */
    margin: 0;
}

/* Sections ko alag karne ke liye subtle line */
.main-content-container > section:not(:last-of-type) {
    border-bottom: 1px solid #f0f2f5;
}

/* Headings ka naya style */
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; /* Purani line hata di */
    display: block;
}

/* App Information ka naya polished look */
.package-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.package-details .item {
    background-color: #f8f9fa; /* Thora sa background color */
    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; /* Thora halka color */
    margin-bottom: 8px; /* Neeche fasla */
    text-transform: uppercase; /* Sab harf bare */
}

.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; /* Lambe text ko a_s_l wrap karega */
}

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

/* App Information ka Final "Face-to-Face" Classic View */
.package-details {
    display: grid;
    /* --- YEH SAB SE AHEM TABDEELI HAI --- */
    /* 2 columns: pehla column (1fr) flexible space lega, doosra (auto) sirf value jitni jagah lega. */
    grid-template-columns: 1fr auto;
    
    align-items: center;
    row-gap: 20px;
    column-gap: 20px; /* Thora fasla rakhenge */
}

/* Yeh .item div ko layout se hata dega taake uske children grid mein fit ho sakein */
.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; /* Value hamesha right-aligned rahegi */
    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;
}

/* Mobile par behtar view ke liye */
@media (max-width: 540px) {
    .package-details .item .label,
    .package-details .item .value {
        font-size: 14px; /* Font size thora chota kar dein */
    }
}
/* Screenshots section */
.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);
}

/* Keywords/Tags ka behtar style */
.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;
}

/* Mobile ke liye thori adjustments */
@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;
    }
}
/*
Theme Name: My Custom App Theme (Ya Aapki Theme Ka Naam)
Description: A custom stylesheet for Android app and game review website.
Version: 1.0
Author: Your Name
*/

/* --- Basic Reset & Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif; /* Google Fonts Inter, agar use kar rahe hain */
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6; /* Light background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below images */
}

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

/* --- Section Styling --- */
section {
    margin-bottom: 40px; /* Space between sections */
    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;
}

/* --- Typography: Headings, Paragraphs, Lists --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    line-height: 1.3;
    margin-top: 1.5em; /* Space above headings */
    margin-bottom: 0.8em; /* Space below headings */
}

h1 { font-size: 2.8em; font-weight: 800; text-align: center; margin-top: 0.5em; margin-bottom: 0.5em;} /* Main Post Title */
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;
}

/* Bold and Italic text */
strong, b { font-weight: 700; color: #333; }
em, i { font-style: italic; color: #666; }

/* Lists */
ul, ol {
    margin-bottom: 1.5em;
    padding-left: 25px; /* Indentation for list items */
}

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

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

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

/* Blockquotes */
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;
}

/* Preformatted text and Code */
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 Section --- */
.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; /* Takes more space */
    min-width: 300px;
}

.app-details .icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 20%; /* Rounded corners for app icon */
    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; /* Override global H1 text-align */
}

.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; /* Takes remaining space */
    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; /* Green download button */
    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; /* Grey when disabled */
    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; /* Light blue background */
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

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

/* --- Description Section --- */
.app-description {
    position: relative;
    /* Agar Read More/Less functionality add karni hai, to isko adjust karein */
}

.app-description p { /* Specific styling for description paragraphs */
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 1.2em;
}

/* --- Keywords/Tags --- */
.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; /* Light green for safe */
    color: #155724;
}

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

/* --- Screenshots Section --- */
.screenshotsbox {
    overflow-x: auto; /* Enable horizontal scrolling if images overflow */
    padding-bottom: 15px; /* Space for scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    margin-bottom: 20px;
}

.screenshots {
    display: flex;
    gap: 15px; /* Space between screenshots */
    padding: 10px 0;
}

.screenshot-image {
    width: 200px; /* Fixed width for screenshots in the gallery */
    height: auto; /* Maintain aspect ratio */
    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 for Screenshots --- */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
    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 Section --- */
.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'; /* Right-pointing triangle */
    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); /* Rotate to down-pointing triangle */
}

.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; /* Adjust as needed for content */
    padding: 15px 25px;
}

.faq-answer p {
    margin-bottom: 0; /* No extra margin for last paragraph in answer */
    color: #666;
    font-size: 0.95em;
}

/* --- App Information / Package Details --- */
.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 { /* Placeholder for SVG icons in package details */
    width: 18px;
    height: 18px;
    fill: #007bff;
}

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

/* --- Popup for Security Info --- */
.popoverlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.popup {
    display: none; /* Hidden by default */
    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;
}

/* --- Responsive Adjustments --- */
@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; /* Stack items vertically on small screens */
    }

    .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;
    }
}
/* Paragraphs ke darmiyan munasib space ke liye code */
.entry-content p {
  margin-bottom: 1.2em; /* Aap is value ko apni marzi se kam ya zyada kar sakte hain */
  line-height: 1.6;   /* Lines ke darmiyan behtar fasla ke liye */
}
/* Show More Button ke liye CSS */

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

.show-more-container .entry-content {
    /* Shuru mein content ki height, aap isay kam ya zyada kar sakte hain */
    max-height: 120px; 
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-in-out;
}

/* Content ke akhir mein halka sa fade effect */
.show-more-container .entry-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #ffffff); /* Apni website ke background color se #ffffff ko change karein */
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Jab content expand ho jaye */
.show-more-container.is-expanded .entry-content {
    max-height: 50000px; /* Ek bari value taake poora content show ho */
}

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

/* Button ki styling */
.show-more-button {
    display: block;
    margin: 15px auto 0;
    padding: 10px 25px;
    background-color: #0073aa; /* Button ka rang */
    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; /* Hover par button ka rang */
}
/* ===================================================
   NEW PROFESSIONAL TRUSTED BADGE DESIGN (GREEN THEME)
   =================================================== */

#security-report-btn {
    /* --- Layout aur Space --- */
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Icon aur text ke beech fasla */
    padding: 8px 15px; /* Andar ka space thora barha diya hai */
    margin-top: 15px; /* Upar se fasla */
    
    /* --- Professional Green Color Theme --- */
    background-color: #eaf7ec;  /* Halka hara (mint green) background */
    color: #28a745;             /* Gehra hara text aur icon ka rang */
    border: 1px solid #cce8d0;  /* Background se milta julta border */

    /* --- Shape aur Font --- */
    font-size: 14px;
    font-weight: 600;           /* Text thora aur bold */
    border-radius: 8px;         /* Konay thore zyada gol */
    text-decoration: none;
    cursor: pointer;

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

/* --- Hover (Mouse Le Jaane Par) Effect --- */
#security-report-btn:hover {
    transform: translateY(-2px); /* Hover par halka sa upar uthega */
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2); /* Hare rang ka khoobsurat saya */
    color: #218c3a; /* Text aur icon ka rang thora aur gehra hojayega */
}

/* --- Icon ki Styling --- */
#security-report-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;      /* Icon ki line thori moti kar di hai */
  stroke: currentColor;   /* Icon ka rang hamesha text jaisa rahega */
  fill: none;             /* Yeh line pehle se mojood thi, isay rehne dein */
}
/* Popup Overlay Style */
.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;
}

/* Popup Content Box */
#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;
}
/* Hash Info Styling */
#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 STYLING
   ================================= */

.popup-app-header {
    display: flex;
    align-items: center;
    gap: 15px; /* Icon aur text ke beech fasla */
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.popup-app-icon img {
    width: 64px; /* Icon ka size */
    height: 64px;
    border-radius: 12px; /* Gol corners */
    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; /* Yeh line add ki hai */
    top: 10px; /* Yeh line add ki hai (upar move karne ke liye) */
}

.popup-app-info .popup-app-version {
    font-size: 14px;
    color: #666;
	 position: relative; /* Yeh line add ki hai */
    top: -25px; /* Yeh line add ki hai (upar move karne ke liye) */
	left: 4px; /* Nayi line: Dayen/bayen move karne ke liye */
}

.security-report-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
/* Download aur Trusted button ko vertical stack karne ke liye */
.right-side .buttons {
    display: flex;
    flex-direction: column; /* Sab se zaroori: Items ko vertical line mein rakhta hai */
    align-items: center;   /* Dono buttons ko center mein align karta hai */
    gap: 10px;             /* Dono buttons ke darmiyan thori si space daalta hai */
}
/* --- Professional Security Modal Styles --- */

/* Modal Background */
.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 Box */
.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 */
.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 */
.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; /* Icon ko shrink hone se bachata hai */
}

/* Hash Section */
.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 */
.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;
}

/* Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}
/* Disabled Trusted Button ke liye style */
#security-report-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* Neeche wali sticky menu patti ko hide karne ke liye */
.bottom-sticky-menu {
    display: none !important;
}
/* Style 3: Minimalist Transparent Look */
.custom-breadcrumbs {
    background-color: transparent; /* Koi background nahi */
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 15px;
    border-bottom: 1px solid #e9ecef; /* Sirf neechay ek halki line */
    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;
}
/* Footer ke tamam paragraph text ka color theek karne ke liye */
.site-footer p {
    color: #E0E0E0 !important;
}