:root{
    --primary:#f5c542;
    --secondary:#00c2ff;
    --dark:#050505;
    --dark-2:#101010;
    --dark-3:#181818;
    --white:#ffffff;
    --gray:#b9b9b9;
    --border:#252525;
    --container:1280px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--dark);
    color:var(--white);
    font-family:Inter, Arial, sans-serif;
    line-height:1.7;
}

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

a{
    color:inherit;
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1440px;
    margin:0 auto;
    padding:0 20px;
}

.section{
    padding:72px 0;
}

.grid{
    display:grid;
    gap:24px;
}

.grid-4{grid-template-columns:repeat(4,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}

.card{
    background:var(--dark-2);
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    transition:.3s ease;
}

.card:hover{
    transform:translateY(-5px);
    border-color:rgba(245,197,66,.45);
}

.glass{
    backdrop-filter:blur(15px);
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:12px;
    font-weight:800;
    transition:.3s;
}

.btn-primary{
    background:var(--primary);
    color:#000;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-outline{
    border:1px solid var(--primary);
    color:var(--primary);
}

.btn-outline:hover{
    background:var(--primary);
    color:#000;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p,
.post-card-content p,
.entry-content,
.apk-content-box p{
    color:var(--gray);
}

.section-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:25px;
}

.section-header h2{
    font-size:28px;
}

.section-header a{
    color:var(--primary);
    font-weight:800;
}

/* Header */
.premium-header,
.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(5,5,5,.92);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 40px rgba(0,0,0,.3);
}

.header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:78px;
}

.logo-wrap a,
.site-logo-text{
    font-size:24px;
    font-weight:900;
    letter-spacing:.5px;
    color:var(--primary);
}

.desktop-menu ul{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

.desktop-menu a{
    font-weight:800;
    font-size:14px;
    color:#fff;
    transition:.25s;
}

.desktop-menu a:hover{
    color:var(--primary);
}

.mobile-toggle{
    display:none;
    border:none;
    background:rgba(255,255,255,.06);
    color:#fff;
    width:44px;
    height:44px;
    border-radius:12px;
    font-size:26px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    border-top:1px solid rgba(255,255,255,.08);
    background:#050505;
    padding:18px 20px;
}

.mobile-menu.active{
    display:block;
}

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

.mobile-menu li{
    margin-bottom:10px;
}

.mobile-menu a{
    display:block;
    padding:14px 16px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    font-weight:800;
}

/* Footer */
.premium-footer,
.site-footer{
    margin-top:80px;
    padding:70px 0 25px;
    background:radial-gradient(circle at top left, rgba(245,197,66,.12), transparent 30%), #050505;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:34px;
}

.footer-brand h2{
    color:var(--primary);
    font-size:30px;
    margin-bottom:14px;
}

.footer-brand p{
    color:var(--gray);
    max-width:420px;
}

.footer-col h3{
    color:#fff;
    margin-bottom:16px;
    font-size:18px;
}

.footer-col ul,
.footer-menu ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-col li{
    margin-bottom:10px;
}

.footer-col a,
.footer-menu a{
    color:var(--gray);
    transition:.25s;
}

.footer-col a:hover,
.footer-menu a:hover{
    color:var(--primary);
}

.footer-bottom{
    margin-top:45px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    color:var(--gray);
}

.back-to-top{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:var(--primary);
    color:#000;
    font-weight:900;
}

/* Breadcrumb */
.breadcrumbs,
.coheconsa-breadcrumb{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px;
    margin:24px 0;
    font-size:14px;
    color:var(--gray);
}

.breadcrumbs a,
.coheconsa-breadcrumb a{
    color:var(--primary);
    font-weight:700;
}

.coheconsa-breadcrumb .current{
    color:#fff;
    font-weight:800;
}

/* Homepage banner */
.homepage-banner{
    margin:34px 0 50px;
}

.banner-slide{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:var(--dark-2);
}

.banner-image{
    width:100%;
    height:440px;
    object-fit:cover;
    display:block;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.25));
}

.banner-content{
    max-width:650px;
    padding:90px 0;
}

.banner-content h2{
    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;
}

.banner-content p{
    font-size:18px;
    color:#ddd;
    margin-bottom:25px;
}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

.swiper-pagination-bullet-active{
    background:var(--primary);
}

/* APK sliders */
.apk-slider-section{
    padding-top:54px;
    padding-bottom:54px;
}

.editorChoiceSlider,
.featuredApkSlider,
.popularApkSlider,
.latestApkSlider,
.trendingApkSlider,
.latestArticlesSlider,
.apkCategorySlider{
    overflow:hidden;
}

.uptodown-card{
    text-align:center;
}

.uptodown-icon,
.uptodown-icon-fallback{
    width:90px;
    height:90px;
    border-radius:22px;
    margin:auto;
    margin-bottom:12px;
}

.uptodown-icon{
    object-fit:cover;
}

.uptodown-icon-fallback{
    background:var(--dark-2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.uptodown-card h3{
    font-size:14px;
    line-height:1.4;
    margin-bottom:6px;
}

.uptodown-card span{
    display:block;
    color:#999;
    font-size:12px;
    margin-bottom:4px;
}

.rating{
    color:var(--primary);
    font-size:13px;
}

/* Category slider */
.apk-category-mini{
    display:block;
    text-align:center;
    padding:20px 14px;
    border-radius:18px;
    background:var(--dark-2);
    border:1px solid var(--border);
    transition:.3s;
}

.apk-category-mini:hover{
    transform:translateY(-4px);
    border-color:rgba(245,197,66,.45);
}

.apk-category-icon{
    font-size:30px;
    margin-bottom:10px;
}

.apk-category-icon img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.apk-category-mini h3{
    font-size:15px;
    margin-bottom:5px;
}

.apk-category-mini span{
    font-size:12px;
    color:var(--gray);
}

/* Home showcase */
.home-showcase-section{
    padding-top:50px;
    padding-bottom:50px;
}

.home-showcase-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.home-showcase-card{
    padding:26px;
    border-radius:26px;
    background:var(--dark-2);
    border:1px solid var(--border);
}

.showcase-list-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

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

.showcase-thumb{
    width:58px;
    height:58px;
    border-radius:16px;
    background:rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex:0 0 58px;
}

.showcase-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.showcase-info strong{
    display:block;
    font-size:15px;
    line-height:1.35;
}

.showcase-info small{
    color:var(--gray);
    display:block;
    margin-top:4px;
}

/* Articles */
.article-mini-card,
.blog-card-premium,
.post-card{
    background:var(--dark-2);
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
}

.article-mini-card:hover,
.blog-card-premium:hover,
.post-card:hover{
    transform:translateY(-4px);
    border-color:rgba(245,197,66,.45);
}

.article-mini-thumb{
    display:flex;
    width:100%;
    height:150px;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.04);
    overflow:hidden;
}

.article-mini-thumb img,
.blog-card-thumb img,
.post-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.article-mini-thumb span{
    font-size:42px;
}

.article-mini-content,
.blog-card-body,
.post-card-content{
    padding:20px;
}

.article-mini-content h3{
    font-size:17px;
    line-height:1.35;
}

.post-date{
    display:inline-block;
    font-size:13px;
    color:var(--primary);
    margin-bottom:10px;
}

.blog-archive-page,
.search-page,
.apk-archive-page{
    padding:40px 0 90px;
}

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

.blog-card-thumb{
    display:block;
    height:210px;
    overflow:hidden;
}

.blog-card-body h2{
    font-size:24px;
    line-height:1.3;
    margin:10px 0 12px;
}

.blog-card-body p{
    color:var(--gray);
    margin-bottom:20px;
}

/* Archive */
.archive-hero{
    text-align:center;
    margin-bottom:50px;
}

.archive-badge{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(245,197,66,.12);
    color:var(--primary);
    font-weight:800;
    margin-bottom:18px;
}

.archive-hero h1{
    font-size:52px;
    margin-bottom:12px;
}

.archive-hero p{
    max-width:720px;
    margin:auto;
    color:var(--gray);
}

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

.apk-card-premium{
    background:var(--dark-2);
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    transition:.3s;
}

.apk-card-premium:hover{
    transform:translateY(-4px);
    border-color:rgba(245,197,66,.45);
}

.apk-card-thumb{
    display:flex;
    min-height:180px;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.04);
}

.apk-card-thumb img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

.apk-card-body{
    padding:20px;
}

.apk-card-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:10px 0;
    color:var(--primary);
    font-weight:700;
}

.apk-card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    margin-top:18px;
}

.archive-pagination,
.pagination-wrap{
    margin-top:50px;
    text-align:center;
}

.archive-pagination .page-numbers,
.pagination-wrap .page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    margin:4px;
    padding:0 12px;
    border-radius:10px;
    background:var(--dark-2);
    border:1px solid var(--border);
    color:var(--white);
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover,
.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover{
    background:var(--primary);
    color:#000;
}

.apk-empty{
    text-align:center;
    padding:50px;
    border-radius:24px;
    background:var(--dark-2);
    border:1px solid var(--border);
}

/* Search */
.search-grid{
    display:grid;
    gap:24px;
}

.search-card{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:24px;
    background:var(--dark-2);
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
}

.search-thumb{
    display:flex;
    height:220px;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.04);
}

.search-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.search-body{
    padding:24px;
}

.search-type{
    display:inline-block;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(245,197,66,.12);
    color:var(--primary);
    font-size:12px;
    font-weight:800;
    margin-bottom:10px;
}

.search-body h2{
    margin-bottom:12px;
}

.search-apk-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:12px;
    color:var(--primary);
    font-weight:700;
}

/* 404 */
.error-page{
    padding:50px 0 90px;
}

.error-premium-box{
    text-align:center;
    max-width:820px;
    margin:0 auto 60px;
    padding:80px 30px;
    border-radius:32px;
    background:radial-gradient(circle at top, rgba(245,197,66,.16), transparent 45%), var(--dark-2);
    border:1px solid var(--border);
}

.error-code{
    display:block;
    font-size:120px;
    line-height:1;
    font-weight:900;
    color:var(--primary);
}

.error-premium-box h1{
    font-size:44px;
    margin:20px 0 14px;
}

.error-premium-box p{
    color:var(--gray);
    max-width:560px;
    margin:0 auto 30px;
}

.error-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

/* Single post */
.single-main{
    padding:60px 0 100px;
}

.post-meta{
    display:flex;
    gap:10px;
    align-items:center;
    color:var(--gray);
    font-size:14px;
    margin-bottom:20px;
}

.single-thumbnail{
    margin:30px 0;
    border-radius:22px;
    overflow:hidden;
    border:1px solid var(--border);
}

.single-thumbnail img{
    width:100%;
    display:block;
}

.entry-content h2,
.entry-content h3,
.entry-content h4{
    margin:35px 0 15px;
    line-height:1.3;
}

.entry-content ul,
.entry-content ol{
    margin:20px 0 20px 25px;
}

.entry-content li{
    margin-bottom:10px;
}

.entry-content a{
    color:var(--primary);
    font-weight:700;
}

.entry-content blockquote{
    margin:30px 0;
    padding:25px;
    border-left:4px solid var(--primary);
    background:var(--dark-2);
    border-radius:14px;
    color:var(--gray);
}

.entry-content img{
    border-radius:18px;
}

.author-box{
    display:flex;
    gap:20px;
    margin-top:50px;
    padding:30px;
    background:var(--dark-2);
    border:1px solid var(--border);
    border-radius:20px;
}

.author-avatar img{
    border-radius:50%;
}

.author-content h3{
    margin-bottom:10px;
    color:var(--primary);
}

.author-content p{
    color:var(--gray);
}

.related-posts{
    margin-top:80px;
}

.related-posts h2{
    margin-bottom:30px;
}

/* Single APK */
.single-apk-premium{
    padding:40px 0 90px;
}

.apk-detail-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 330px;
    gap:32px;
    align-items:start;
}

.apk-detail-main,
.apk-detail-sidebar{
    min-width:0;
}

.apk-download-premium-box{
    margin-bottom:30px;
    padding:28px;
    border-radius:28px;
    background:radial-gradient(circle at top right, rgba(245,197,66,.14), transparent 35%), var(--dark-2);
    border:1px solid var(--border);
}

.apk-download-head{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:24px;
}

.apk-download-icon{
    width:82px;
    height:82px;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex:0 0 82px;
}

.apk-download-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.apk-download-head h2{
    font-size:28px;
    margin-bottom:6px;
}

.apk-download-rating{
    color:var(--primary);
    font-weight:800;
}

.apk-download-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:24px;
}

.apk-download-stats div{
    padding:14px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.07);
}

.apk-download-stats strong{
    display:block;
    font-size:16px;
    margin-bottom:4px;
}

.apk-download-stats span{
    color:var(--gray);
    font-size:12px;
}

.apk-download-actions{
    display:grid;
    gap:12px;
}

.apk-download-actions .btn{
    width:100%;
}

.apk-gallery-section{
    margin:44px 0;
}

.apk-gallery-section h2,
.related-apk-section h2{
    margin-bottom:20px;
}

.apk-gallery-section img{
    width:auto;
    height:230px;
    max-width:100%;
    object-fit:contain;
    border-radius:18px;
    display:block;
    margin:auto;
}

.apk-gallery-section .swiper-slide{
    width:auto;
    overflow:hidden;
}

.apk-content-box{
    padding:30px;
    margin-bottom:28px;
    border-radius:24px;
    background:var(--dark-2);
    border:1px solid var(--border);
}

.apk-content-box h2{
    margin-bottom:18px;
    font-size:26px;
}

.apk-features-grid,
.pros-cons-grid,
.apk-reviews-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.apk-feature-item,
.apk-review-card,
.apk-version-item,
.apk-faq-item{
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid var(--border);
}

.pros-cons-grid h3{
    margin-bottom:14px;
    color:var(--primary);
}

.pros-cons-grid ul,
.apk-info-list{
    list-style:none;
    padding:0;
    margin:0;
}

.pros-cons-grid li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.apk-faq-list,
.apk-version-timeline{
    display:grid;
    gap:14px;
}

.apk-faq-item summary{
    cursor:pointer;
    font-weight:800;
    color:var(--primary);
}

.apk-faq-item p,
.apk-review-card p,
.apk-version-item p{
    margin-top:12px;
    color:var(--gray);
}

.apk-review-top,
.apk-version-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.apk-version-header strong{
    color:var(--primary);
    font-size:18px;
}

.apk-version-header span{
    color:var(--gray);
    font-size:13px;
}

.related-apk-section{
    margin-top:60px;
}

.apk-detail-sidebar{
    position:sticky;
    top:95px;
}

.apk-sidebar-card{
    padding:22px;
    border-radius:22px;
    background:var(--dark-2);
    border:1px solid var(--border);
    margin-bottom:22px;
}

.apk-sidebar-card h3{
    margin-bottom:18px;
    color:var(--primary);
}

.apk-info-list li{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.apk-info-list li:last-child{
    border-bottom:none;
}

.apk-info-list strong{
    color:var(--gray);
    font-weight:600;
}

.apk-info-list span{
    text-align:right;
    font-weight:800;
}

.sidebar-apk-item{
    display:flex;
    gap:12px;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

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

.sidebar-apk-thumb{
    width:52px;
    height:52px;
    border-radius:14px;
    background:rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex:0 0 52px;
}

.sidebar-apk-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.sidebar-apk-item strong{
    display:block;
    font-size:14px;
    line-height:1.3;
}

.sidebar-apk-item small{
    display:block;
    color:var(--gray);
    margin-top:4px;
}

/* Forms */
.coheconsa-search-form,
.search-box-page form{
    display:flex;
    gap:10px;
}

.coheconsa-search-form .search-field,
.search-box-page input[type="search"]{
    width:100%;
    padding:14px 16px;
    border-radius:12px;
    border:1px solid var(--border);
    background:var(--dark-2);
    color:var(--white);
}

.coheconsa-search-form .search-submit,
.search-box-page input[type="submit"],
.search-box-page button{
    padding:14px 22px;
    border:none;
    border-radius:12px;
    background:var(--primary);
    color:#000;
    font-weight:800;
    cursor:pointer;
}

.search-box-page{
    max-width:600px;
    margin:0 auto 50px;
}

/* Utilities */
#reading-progress{
    position:fixed;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:var(--primary);
    z-index:99999;
}

.floating-wa{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:#25d366;
    color:#fff;
    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

#backToTop{
    position:fixed;
    right:25px;
    bottom:100px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:var(--primary);
    color:#000;
    font-size:20px;
    display:none;
    z-index:9999;
}

/* Responsive */
@media(max-width:992px){
    .grid-4,
    .grid-3{
        grid-template-columns:repeat(2,1fr);
    }

    .desktop-menu{
        display:none;
    }

    .mobile-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .footer-grid,
    .apk-detail-layout{
        grid-template-columns:1fr 1fr;
    }

    .apk-detail-layout{
        grid-template-columns:1fr;
    }

    .apk-detail-sidebar{
        position:static;
    }
}

@media(max-width:768px){

    .section{
        padding:50px 0;
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .footer-grid,
    .home-showcase-grid,
    .apk-features-grid,
    .pros-cons-grid,
    .apk-reviews-grid{
        grid-template-columns:1fr;
    }

    .header-wrap{
        min-height:70px;
    }

    .site-logo-text,
    .logo-wrap a{
        font-size:22px;
    }

    .banner-image{
        height:320px;
    }

    .banner-content{
        padding:50px 18px;
    }

    .banner-content h2,
    .archive-hero h1{
        font-size:32px;
    }

    .section-title h2,
    .error-premium-box h1{
        font-size:30px;
    }

    .section-header h2{
        font-size:24px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .apk-download-head{
        align-items:flex-start;
    }

    .apk-download-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .apk-gallery-section img{
        height:210px;
    }

    .search-card{
        grid-template-columns:1fr;
    }

    .search-thumb{
        height:200px;
    }

    .search-box-page form,
    .coheconsa-search-form{
        flex-direction:column;
    }

    .error-code{
        font-size:82px;
    }

    .author-box{
        flex-direction:column;
        text-align:center;
    }
}

/* ABOUT PAGE */

.page-hero{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
}

.page-hero h1{
    font-size:56px;
    margin:20px 0;
}

.page-hero p{
    color:var(--gray);
}

.glass-card{
    background:var(--dark-2);
    border:1px solid var(--border);
    border-radius:28px;
    padding:30px;
    margin-bottom:25px;
}

.glass-card h2{
    margin-bottom:15px;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:30px;
}

.stat-box{
    background:var(--dark-2);
    border:1px solid var(--border);
    border-radius:24px;
    text-align:center;
    padding:25px;
}

.stat-box strong{
    display:block;
    font-size:34px;
    color:var(--primary);
}

.stat-box span{
    color:var(--gray);
}

.about-list{
    padding-left:20px;
}

.about-list li{
    margin-bottom:10px;
}

@media(max-width:768px){

    .page-hero h1{
        font-size:34px;
    }

    .about-stats{
        grid-template-columns:1fr 1fr;
    }

}

/* CONTACT PAGE */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-bottom:25px;
}

.contact-list p{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.contact-list p:last-child{
    border-bottom:none;
}

.contact-form-placeholder{
    margin-top:20px;
    padding:24px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px dashed rgba(255,255,255,.18);
}

.contact-form-placeholder code{
    display:inline-block;
    margin-top:12px;
    color:var(--primary);
}

@media(max-width:768px){
    .contact-grid{
        grid-template-columns:1fr;
    }
}

/* LEGAL CONTENT */

.legal-content h2{
    margin:28px 0 12px;
    color:var(--primary);
}

.legal-content h2:first-child{
    margin-top:0;
}

.legal-content p{
    color:var(--gray);
    margin-bottom:16px;
}

.footer-top{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:34px;
}

.footer-brand .btn{
    margin-top:20px;
}

.footer-middle{
    margin-top:45px;
    padding-top:35px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-post-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.footer-post-item{
    display:flex;
    gap:14px;
    align-items:center;
    padding:14px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.footer-post-item span{
    width:58px;
    height:58px;
    border-radius:14px;
    overflow:hidden;
    flex:0 0 58px;
}

.footer-post-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.footer-post-item strong{
    font-size:14px;
    line-height:1.35;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:14px;
}

@media(max-width:992px){
    .footer-top{
        grid-template-columns:1fr 1fr;
    }

    .footer-post-list{
        grid-template-columns:1fr;
    }
}

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

    .footer-bottom-links{
        flex-direction:column;
        align-items:flex-start;
    }
}

.blog-featured-card{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:28px;
    align-items:center;
    padding:28px;
    margin-bottom:55px;
    border-radius:30px;
    background:
        radial-gradient(circle at top right, rgba(245,197,66,.14), transparent 35%),
        var(--dark-2);
    border:1px solid var(--border);
}

.blog-featured-thumb{
    display:block;
    height:360px;
    border-radius:24px;
    overflow:hidden;
}

.blog-featured-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-featured-content h2{
    font-size:38px;
    line-height:1.25;
    margin:16px 0;
}

.blog-featured-content p{
    color:var(--gray);
    margin-bottom:24px;
}

.blog-list-section{
    margin-top:40px;
}

@media(max-width:992px){
    .blog-featured-card{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .blog-featured-card{
        padding:22px;
    }

    .blog-featured-thumb{
        height:230px;
    }

    .blog-featured-content h2{
        font-size:28px;
    }
}

/* =========================
   SINGLE POST PREMIUM FIXED
========================= */

.single-post-premium{
    padding:40px 0 90px;
}

.single-post-premium .container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

.single-post-wrap{
    width:100%;
}

.single-post-hero{
    max-width:900px;
    margin:0 auto 40px;
    text-align:center;
}

.single-post-hero .archive-badge{
    margin-bottom:18px;
}

.single-post-hero h1{
    max-width:900px;
    margin:18px auto;
    font-size:48px;
    line-height:1.15;
}

.single-post-meta{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    color:var(--gray);
    margin-bottom:30px;
}

.single-post-meta span{
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.single-post-thumb{
    max-width:1000px;
    margin:30px auto 0;
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--border);
}

.single-post-thumb img{
    width:100%;
    display:block;
}

.single-post-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 330px;
    gap:32px;
    align-items:start;
}

.single-post-content{
    min-width:0;
}

.single-post-content .apk-content-box{
    padding:34px;
}

.single-post-sidebar{
    position:sticky;
    top:95px;
    min-width:0;
}

.post-cta-box{
    padding:35px;
    border-radius:28px;
    margin-bottom:28px;
    background:
        radial-gradient(circle at top right, rgba(245,197,66,.14), transparent 35%),
        var(--dark-2);
    border:1px solid var(--border);
    text-align:center;
}

.post-cta-box h2{
    font-size:30px;
    margin-bottom:12px;
}

.post-cta-box p{
    color:var(--gray);
    margin-bottom:24px;
}

.author-box-premium{
    display:flex;
    gap:18px;
    align-items:center;
    padding:26px;
    margin-bottom:34px;
    border-radius:24px;
    background:var(--dark-2);
    border:1px solid var(--border);
}

.author-avatar-premium{
    flex:0 0 auto;
}

.author-avatar-premium img{
    border-radius:50%;
}

.author-box-premium span{
    color:var(--primary);
    font-weight:800;
    font-size:13px;
}

.author-box-premium h3{
    margin:4px 0 8px;
}

.author-box-premium p{
    color:var(--gray);
}

.related-posts-premium{
    margin-top:45px;
}

@media(max-width:992px){
    .single-post-layout{
        grid-template-columns:1fr;
    }

    .single-post-sidebar{
        position:static;
    }
}

@media(max-width:768px){
    .single-post-premium{
        padding:28px 0 70px;
    }

    .single-post-hero{
        text-align:left;
        margin-bottom:28px;
    }

    .single-post-hero h1{
        font-size:34px;
        margin:14px 0;
    }

    .single-post-meta{
        justify-content:flex-start;
        gap:10px;
    }

    .single-post-content .apk-content-box{
        padding:24px;
    }

    .author-box-premium{
        flex-direction:column;
        align-items:flex-start;
    }
}

.single-post-premium{
    padding-top:0 !important;
}

.single-post-hero{
    padding-top:0 !important;
}

html{
    margin:0 !important;
    padding:0 !important;
}

.site-header{
    margin-top:0 !important;
    top:0 !important;
}

.post-meta-premium{
    gap:12px;
}

.post-meta-premium span{
    text-align:left;
    min-width:150px;
    line-height:1.35;
}

.post-meta-premium strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:13px;
}

@media(max-width:768px){
    .post-meta-premium span{
        min-width:calc(50% - 8px);
    }
}

/* PREMIUM TOC */

.coheconsa-toc{
    margin:0 0 28px;
    padding:22px;
    border-radius:22px;
    background:
        radial-gradient(circle at top right, rgba(245,197,66,.12), transparent 35%),
        rgba(255,255,255,.04);
    border:1px solid var(--border);
}

.coheconsa-toc-toggle{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:0;
    background:transparent;
    color:var(--primary);
    font-size:20px;
    font-weight:900;
    cursor:pointer;
    padding:0;
}

.coheconsa-toc-content{
    margin-top:18px;
}

.coheconsa-toc ol{
    margin:0;
    padding-left:22px;
}

.coheconsa-toc li{
    margin-bottom:10px;
    color:var(--gray);
}

.coheconsa-toc a{
    color:#fff;
    font-weight:700;
}

.coheconsa-toc a:hover,
.coheconsa-toc a.active{
    color:var(--primary);
}

.coheconsa-toc.is-collapsed .coheconsa-toc-content{
    display:none;
}

.entry-content h2{
    scroll-margin-top:110px;
}