/*
Theme Name: 3 Patti Gold
Theme URI: https://3pattigoldapk.com.pk
Author: 3PattiGoldApk.Com.Pk
Author URI: https://3pattigoldapk.com.pk
Description: APK Download & Game Review theme for 3 Patti Gold — Pakistani gaming app review site with single long-form article layout.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 3patti-gold
Tags: gaming, apk, download, single-column, custom-colors
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --color-bg: #f0f4f8;
    --color-content-bg: #ffffff;
    --color-header-bg: #000000;
    --color-footer-bg: #000000;
    --color-green: #39ff14;
    --color-green-btn: #2ecc40;
    --color-green-box: #39ff14;
    --color-text: #1a1a1a;
    --color-text-light: #ffffff;
    --color-section-bar-bg: #111111;
    --color-hr: #cccccc;
    --color-table-border: #cccccc;
    --color-pros: #2ecc40;
    --color-cons: #e74c3c;

    --font-main: 'Poppins', sans-serif;
    --content-max-width: 900px;
    --content-padding: 30px 40px;
    --content-padding-mobile: 15px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-green);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

ul, ol {
    padding-left: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

/* ============================================================
   SKIP LINK (ACCESSIBILITY)
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-green);
    color: #000;
    padding: 8px 16px;
    font-weight: 700;
    z-index: 10000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
#site-header {
    background: var(--color-header-bg);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 3px solid var(--color-green);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    flex-wrap: wrap;
    gap: 8px;
}

/* Logo */
.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-logo:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.nav-list li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 10px;
    display: inline-block;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-list li a:hover {
    color: var(--color-green);
    opacity: 1;
}

.nav-list li.nav-home a {
    background: var(--color-green-box);
    color: #000000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
}

.nav-list li.nav-home a:hover {
    background: var(--color-green);
    color: #000;
    opacity: 1;
}

/* Nav item with dropdown arrow */
.nav-list li.has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.75rem;
}

/* Hamburger */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    flex-shrink: 0;
}

.hamburger-btn:focus {
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    width: 100%;
    background: var(--color-header-bg);
    border-top: 1px solid #222;
    padding: 12px 0;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 24px;
    display: block;
    border-bottom: 1px solid #222;
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav ul li a:hover {
    color: var(--color-green);
    background: #111;
}

.mobile-nav ul li.nav-home a {
    color: #000;
    background: var(--color-green-box);
    font-weight: 700;
}

/* ============================================================
   PAGE WRAPPER / CONTENT AREA
   ============================================================ */
#page-wrapper {
    min-height: calc(100vh - 63px);
}

.content-wrapper {
    max-width: var(--content-max-width);
    margin: 30px auto;
    background: var(--color-content-bg);
    padding: var(--content-padding);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    margin-bottom: 30px;
}

.hero-title-box {
    background: #000000;
    border-radius: 50px;
    padding: 24px 30px;
    margin-bottom: 20px;
}

.hero-title-box h1 {
    color: var(--color-green);
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

.hero-description {
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-description a {
    color: var(--color-green);
    text-decoration: underline;
}

/* Download Button */
.download-btn {
    display: block;
    width: 100%;
    background: var(--color-green-btn);
    border-radius: 50px;
    padding: 16px 0;
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    animation: pulse-green 2s infinite;
    transition: background 0.2s ease;
    margin-bottom: 24px;
}

.download-btn:hover {
    background: #27ae60;
    color: #000;
    opacity: 1;
    text-decoration: none;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 64, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(46, 204, 64, 0);
    }
}

/* App Icon */
.app-icon-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.app-icon-hero img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto;
}

.app-icon-hero .app-icon-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-green), #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
}

/* ============================================================
   APP INFO TABLE
   ============================================================ */
.app-info-section {
    margin-bottom: 30px;
}

.app-icon-table {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.app-icon-table img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
}

.app-icon-table .app-icon-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-green), #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.app-info-table tr {
    border-top: 1px solid var(--color-table-border);
}

.app-info-table tr:last-child {
    border-bottom: 1px solid var(--color-table-border);
}

.app-info-table td {
    padding: 12px 16px;
    text-align: center;
    vertical-align: middle;
}

.app-info-table td:first-child {
    font-weight: 700;
    width: 45%;
    border-right: 1px solid var(--color-table-border);
}

/* ============================================================
   FEATURED BANNER
   ============================================================ */
.featured-banner {
    margin-bottom: 24px;
}

.featured-banner img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.intro-description {
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--color-text);
}

.intro-description a {
    color: var(--color-green);
    text-decoration: underline;
}

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.toc-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.toc-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}

.toc-toggle-arrow {
    font-size: 1rem;
    color: var(--color-text);
    transition: transform 0.3s ease;
    line-height: 1;
}

.toc-toggle-arrow.is-open {
    transform: rotate(180deg);
}

.toc-content {
    margin-top: 14px;
    display: none;
}

.toc-content.is-visible {
    display: block;
}

.toc-content ol {
    padding-left: 1.4rem;
    margin: 0;
}

.toc-content ol li {
    margin-bottom: 6px;
}

.toc-content ol li a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.toc-content ol li a:hover {
    color: var(--color-green);
}

/* ============================================================
   SECTION HEADER BAR (reusable)
   ============================================================ */
.section-bar {
    background: var(--color-section-bar-bg);
    border-radius: 50px;
    padding: 12px 30px;
    width: 100%;
    color: var(--color-green);
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    margin: 30px 0 20px 0;
    display: block;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
    line-height: 1.4;
}

/* ============================================================
   H3 SUBHEADING WITH HR (reusable)
   ============================================================ */
.sub-heading-hr {
    margin: 24px 0 16px 0;
}

.sub-heading-hr h3 {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 10px;
}

.sub-heading-hr hr {
    border: none;
    border-top: 1px solid var(--color-hr);
    margin-bottom: 15px;
}

/* ============================================================
   INLINE SCREENSHOT IMAGE
   ============================================================ */
.section-screenshot {
    display: flex;
    justify-content: center;
    margin: 16px 0 20px 0;
}

.section-screenshot img {
    max-width: 80%;
    border-radius: 10px;
    object-fit: cover;
}

.section-screenshot.full-width img {
    max-width: 100%;
}

/* ============================================================
   KEY FEATURES
   ============================================================ */
.key-features-section {
    margin-bottom: 10px;
}

.feature-item {
    margin-bottom: 20px;
}

.feature-item p {
    margin: 0;
}

/* ============================================================
   GAME CATEGORIES
   ============================================================ */
.game-category-item {
    margin-bottom: 20px;
}

.game-category-item ul {
    margin-top: 8px;
}

.game-category-item ul li {
    margin-bottom: 4px;
}

/* ============================================================
   DOWNLOAD STEPS
   ============================================================ */
.download-steps-section p {
    margin-bottom: 16px;
}

.download-step-item {
    margin-bottom: 20px;
}

.download-step-item p {
    margin: 0;
}

/* ============================================================
   SYSTEM REQUIREMENTS
   ============================================================ */
.system-req-item {
    margin-bottom: 20px;
}

.system-req-item h3 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.system-req-item ul {
    margin-top: 4px;
}

.system-req-item ul li {
    margin-bottom: 4px;
}

/* ============================================================
   WITHDRAW MONEY
   ============================================================ */
.withdraw-section {
    margin-bottom: 20px;
}

.withdraw-section ol {
    margin-top: 12px;
}

.withdraw-section ol li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* ============================================================
   EARN REAL MONEY
   ============================================================ */
.earn-method-item {
    margin-bottom: 20px;
}

.earn-method-item h3 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 6px;
}

.earn-method-item p {
    margin: 0;
}

/* ============================================================
   WIN TIPS
   ============================================================ */
.win-tip-item {
    margin-bottom: 20px;
}

.win-tip-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.win-tip-title .tip-check {
    color: var(--color-pros);
    flex-shrink: 0;
}

.win-tip-item p {
    margin: 0;
    padding-left: 1.6rem;
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
.comparison-section {
    margin-bottom: 10px;
}

.comparison-sub-heading {
    margin-bottom: 16px;
}

.comparison-sub-heading h3 {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 10px;
}

.comparison-sub-heading hr {
    border: none;
    border-top: 1px solid var(--color-hr);
    margin-bottom: 14px;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: comp-counter;
}

.comparison-list li {
    counter-increment: comp-counter;
    padding: 6px 0 6px 30px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-list li::before {
    content: counter(comp-counter, decimal-leading-zero) ".";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================================
   PROS AND CONS
   ============================================================ */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 10px;
}

.pros-column,
.cons-column {
    border: 1px solid var(--color-hr);
    border-radius: 8px;
    padding: 20px;
}

.pros-column h3,
.cons-column h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 14px;
    text-align: center;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 6px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid #f5f5f5;
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.pros-icon {
    color: var(--color-pros);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cons-icon {
    color: var(--color-cons);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-question {
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 10px;
}

.faq-divider {
    border: none;
    border-top: 1px solid var(--color-hr);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--color-green);
    text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--color-footer-bg);
    width: 100%;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav li a {
    color: var(--color-green);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.footer-nav li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-divider {
    border: none;
    border-top: 2px solid var(--color-green);
    width: 80%;
    margin: 15px auto;
}

.footer-copyright {
    color: var(--color-text-light);
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.6;
}

.footer-copyright a {
    color: var(--color-green);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* ============================================================
   PAGE TEMPLATES (Privacy, Terms, etc.)
   ============================================================ */
.page-content-wrapper {
    max-width: var(--content-max-width);
    margin: 40px auto;
    background: var(--color-content-bg);
    padding: var(--content-padding);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.page-content-wrapper h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-green);
}

.page-content-wrapper h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 24px 0 12px 0;
}

.page-content-wrapper h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 18px 0 10px 0;
}

.page-content-wrapper p,
.page-content-wrapper li {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
}

.page-content-wrapper ul,
.page-content-wrapper ol {
    margin-bottom: 16px;
}

.page-content-wrapper ul li,
.page-content-wrapper ol li {
    margin-bottom: 6px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-hr);
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--color-text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(57,255,20,0.15);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .submit-btn {
    display: inline-block;
    background: var(--color-green-btn);
    color: #000;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form .submit-btn:hover {
    background: #27ae60;
}

.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    display: none;
}

/* ============================================================
   BLOG / SINGLE POST
   ============================================================ */
.blog-grid {
    max-width: var(--content-max-width);
    margin: 40px auto;
    padding: 0 20px;
}

.blog-grid h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
    text-align: center;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: transform 0.2s ease;
}

.post-card:hover {
    transform: translateY(-3px);
}

.post-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.post-card-body {
    padding: 16px;
}

.post-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-card-title a {
    color: var(--color-text);
    text-decoration: none;
}

.post-card-title a:hover {
    color: var(--color-green);
}

.post-card-excerpt {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.post-card-meta {
    font-size: 0.8rem;
    color: #888;
}

.single-post-wrapper {
    max-width: var(--content-max-width);
    margin: 40px auto;
    background: var(--color-content-bg);
    padding: var(--content-padding);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.single-post-wrapper .post-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 14px;
    line-height: 1.3;
}

.single-post-wrapper .post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-hr);
}

.single-post-wrapper .post-content {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
}

.single-post-wrapper .post-content h2,
.single-post-wrapper .post-content h3,
.single-post-wrapper .post-content h4 {
    margin: 24px 0 12px 0;
    font-weight: 700;
}

.single-post-wrapper .post-content h2 {
    font-size: 1.5rem;
}

.single-post-wrapper .post-content h3 {
    font-size: 1.2rem;
}

.single-post-wrapper .post-content p {
    margin-bottom: 16px;
}

.single-post-wrapper .post-content img {
    border-radius: 8px;
    margin: 16px 0;
}

.single-post-wrapper .post-content a {
    color: var(--color-green);
    text-decoration: underline;
}

.single-post-wrapper .post-content ul,
.single-post-wrapper .post-content ol {
    margin-bottom: 16px;
}

.single-post-wrapper .post-content ul li,
.single-post-wrapper .post-content ol li {
    margin-bottom: 6px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-green { color: var(--color-green); }
.font-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }

/* ============================================================
   RESPONSIVE STYLES — TABLET & MOBILE
   ============================================================ */
@media (max-width: 960px) {
    .content-wrapper {
        margin: 20px 16px;
        padding: 24px 28px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .header-inner {
        padding: 0 16px;
        min-height: 52px;
    }

    /* Content */
    .content-wrapper {
        margin: 12px 8px;
        padding: var(--content-padding-mobile);
        border-radius: 4px;
    }

    /* Hero */
    .hero-title-box {
        border-radius: 24px;
        padding: 18px 20px;
    }

    .hero-title-box h1 {
        font-size: 1.4rem;
    }

    /* Section bar */
    .section-bar {
        font-size: 1rem;
        border-radius: 30px;
        padding: 10px 20px;
    }

    /* Pros & Cons grid */
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    /* App info table */
    .app-info-table td {
        padding: 9px 10px;
        font-size: 13px;
    }

    /* Section screenshot */
    .section-screenshot img {
        max-width: 100%;
    }

    /* Page templates */
    .page-content-wrapper {
        margin: 16px 8px;
        padding: var(--content-padding-mobile);
    }

    .page-content-wrapper h1 {
        font-size: 1.5rem;
    }

    .single-post-wrapper {
        margin: 16px 8px;
        padding: var(--content-padding-mobile);
    }

    .single-post-wrapper .post-title {
        font-size: 1.5rem;
    }

    .blog-grid {
        margin: 20px 8px;
        padding: 0 8px;
    }

    .footer-nav {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title-box h1 {
        font-size: 1.2rem;
    }

    .download-btn {
        font-size: 1rem;
        padding: 14px 0;
    }

    .app-info-table td {
        font-size: 12px;
        padding: 8px 6px;
    }

    .section-bar {
        font-size: 0.9rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }
}
