
        /* CSS RESET & BASE STYLES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333333;
            font-size: 14px;
            line-height: 1.5;
        }

        a {
            color: #0076db;
            text-decoration: none;
        }

        /* HEADER */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            border-bottom: 1px solid #e0e0e0;
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .menu-icon {
            font-size: 20px;
            cursor: pointer;
            color: #555;
        }

        .logo-img {
            height: 28px;
            display: flex;
            align-items: center;
        }
        
        .logo-img i {
            color: #00bfa5;
            font-size: 24px;
            margin-right: 4px;
        }

        .logo-img span {
            font-weight: 800;
            font-size: 22px;
            color: #0d1b2a;
        }
        
        .logo-img span .soft-green {
            color: #00bfa5;
        }

        .search-container {
            display: none; 
        }

        .user-icon {
            width: 32px;
            height: 32px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            background: #f9f9f9;
        }

        /* BREADCRUMBS */
        .breadcrumbs {
            padding: 12px 16px;
            font-size: 11px;
            color: #757575;
            background-color: #fafafa;
            border-bottom: 1px solid #f0f0f0;
        }

        /* MAIN CONTAINER */
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 16px;
            display: flex;
            flex-direction: column; 
            gap: 24px;
        }

        /* APP HERO SECTION */
        .app-hero {
            display: flex;
            gap: 16px;
        }

        /* লোগো সাইজ ও স্টাইল */
.app-icon {
    width: 80px;      /* আপনার পছন্দমতো সাইজ এখানে পরিবর্তন করুন */
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 14px; /* কোণাগুলো গোলাকার করার জন্য */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0; /* ইমেজ লোড না হওয়া পর্যন্ত ব্যাকগ্রাউন্ড কালার */
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ইমেজটি যেন বক্সে ফিট থাকে */
}

        .app-details h1 {
            font-size: 20px;
            font-weight: 700;
            color: #111;
            margin-bottom: 4px;
            line-height: 1.2;
        }
        
        .app-details h1 span {
            font-weight: 400;
            color: #666;
            font-size: 16px;
            display: block;
        }

        .app-meta {
            font-size: 12px;
            color: #666;
            margin: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .badge-free {
            color: #2e7d32;
            font-weight: 700;
        }

        .rating-stars {
            color: #fbc02d;
        }

        .trusted-program {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            width: fit-content;
        }

        /* TABS */
        .tabs {
            display: flex;
            border-bottom: 1px solid #e0e0e0;
            margin-top: 16px;
        }

        .tab {
            padding: 12px 16px;
            font-weight: 600;
            color: #666;
            font-size: 13px;
            border-bottom: 3px solid transparent;
            cursor: pointer;
        }

        .tab.active {
            color: #111;
            border-bottom-color: #00bfa5;
        }




     
       
       
/* ডাউনলোড বাটন */


.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00b57a;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
    animation: pulse-animation 2s infinite;
    cursor: pointer;
}

.download-btn:hover {
    background-color: #009c68;
    transform: scale(1.02);
    animation: none;
}

/* অল্টারনেটিভ ডাউনলোড আইকন */
.alt-download-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #00b57a;
    font-size: 18px;
    border: 1px solid #00b57a;
    padding: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.alt-download-icon:hover {
    background: #00b57a;
    color: #fff;
    animation: bounce 0.6s infinite;
}

/* কি-ফ্রেম অ্যানিমেশন */
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(0, 181, 122, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(0, 181, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 181, 122, 0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}




        /* CONTENT */
        .main-content {
            flex: 1;
        }

        .content-heading {
            font-size: 18px;
            font-weight: 700;
            margin: 24px 0 12px 0;
            color: #111;
        }

        .content-p {
            color: #444;
            margin-bottom: 14px;
            font-size: 14px;
            line-height: 1.6;
        }

        /* ALTERNATIVE AD BOX */
        .alternative-box {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 16px 0;
            background: #fafafa;
        }

        .alt-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .alt-logo {
            width: 40px;
            height: 40px;
            background-color: #cc0000;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .alt-meta h4 {
            font-size: 14px;
            font-weight: 600;
        }

        .alt-meta span {
            font-size: 12px;
            color: #757575;
        }

        .alt-download-icon {
            color: #00b57a;
            font-size: 16px;
            border: 1px solid #00b57a;
            padding: 6px 12px;
            border-radius: 4px;
            background: #fff;
        }

        /* APP SPECS */
        .app-specs-box {
            background-color: #f8f9fa;
            border: 1px solid #f0f0f0;
            border-radius: 8px;
            padding: 20px;
        }

        .specs-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 8px;
        }

        .spec-item {
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .spec-label {
            font-size: 11px;
            color: #757575;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .spec-value {
            font-size: 13.5px;
            font-weight: 600;
            color: #222;
            word-break: break-all;
        }

        /* SOCIAL SHARE */
        .share-icons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin: 24px 0;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            transition: all 0.2s;
            background: #fff;
            font-size: 16px;
        }
        
        .share-btn:hover {
            background: #f1f1f1;
            color: #111;
        }

        .add-review-btn {
            display: block;
            width: 100%;
            background-color: #343a40;
            color: #fff;
            text-align: center;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            margin-bottom: 14px;
            transition: background 0.2s;
        }
        
        .add-review-btn:hover {
            background-color: #23272b;
        }

        .report-link {
            display: block;
            text-align: center;
            font-size: 12px;
            color: #dc3545;
            font-weight: 500;
        }

        /* FOOTER */
        footer {
            background: linear-gradient(135deg, #0b5345 0%, #0a3d62 100%);
            color: #fff;
            padding: 40px 16px;
            margin-top: 48px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr; 
            gap: 32px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 15px;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 6px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
            transition: color 0.2s;
        }
        
        .footer-col ul li a:hover {
            color: #fff;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 8px;
            flex-wrap: wrap;
        }

        .social-circle {
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: background 0.2s;
        }
        
        .social-circle:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }

        .languages {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 2.2;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-bottom: 24px;
        }

        .languages span {
            margin-right: 12px;
            display: inline-block;
            cursor: pointer;
        }
        
        .languages span:hover {
            color: #fff;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: flex-start;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-logo {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
        }
        
        .footer-logo span {
            color: rgba(255,255,255,0.5);
            font-weight: 300;
        }

        /* -------------------------------------------
           DESKTOP RESPONSIVE BREAKPOINT (min-width: 768px)
           Mimics exactly the side-by-side view from 1xxx.jpg
        ------------------------------------------- */
        @media (min-width: 768px) {
            header {
                padding: 14px 10%;
            }
            .menu-icon {
                display: none;
            }
            .search-container {
                display: flex;
                flex: 1;
                max-width: 460px;
                margin: 0 40px;
            }
            .search-container input {
                width: 100%;
                padding: 10px 16px;
                border: 1px solid #ccc;
                border-right: none;
                border-radius: 4px 0 0 4px;
                outline: none;
                font-size: 14px;
            }
            .search-container button {
                background-color: #00bfa5;
                border: none;
                padding: 0 18px;
                color: white;
                border-radius: 0 4px 4px 0;
                cursor: pointer;
            }
            .container {
                flex-direction: row; 
                padding: 32px 10%;
            }
            .main-content {
                flex: 2;
            }
            .sidebar {
                flex: 1;
                max-width: 300px;
            }
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
  