
        /* --- OLD STYLES (Base Design) --- */
        :root {
            --bg-body: #f9f8ff;
            --surface-color: #FFFFFF;
            --primary-blue: #5846f9;
            --text-main: #1F2937;
            --text-sub: #6B7280;
            --border-default: #d1d5db;
            --border-hover: #5846f9;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif; }
        body { background-color: var(--bg-body); color: var(--text-main); padding-bottom: 50px; }

        nav { background: var(--surface-color); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #e5e7eb; position: sticky; top: 0; z-index: 50; }
        .logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-blue); display: flex; align-items: center; gap: 10px; }
        
        .hero { text-align: center; padding: 50px 20px; max-width: 800px; margin: 0 auto; }
        .hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; color: #111827; }
        .hero p { color: var(--text-sub); font-size: 1.1rem; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .grid-wrapper { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }

        .app-card { background: var(--surface-color); border-radius: 12px; padding: 25px; border: 2px solid var(--border-default); transition: all 0.25s ease; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; }
        .app-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(88, 70, 249, 0.1); }
        
        .app-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
        .app-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: white; flex-shrink: 0; }
        .app-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
        .app-info span { font-size: 0.8rem; color: var(--primary-blue); background: #efeefe; padding: 3px 8px; border-radius: 4px; font-weight: 600; border: 1px solid #ddd9fb; }
        .app-desc { color: var(--text-sub); font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; }

        .btn-fake { background-color: transparent; color: var(--primary-blue); padding: 10px; border-radius: 8px; text-align: center; font-weight: 600; border: 2px solid #efeefe; transition: all 0.2s; display: flex; justify-content: center; align-items: center; gap: 8px; }
        .app-card:hover .btn-fake { background-color: var(--primary-blue); color: white; border-color: var(--primary-blue); }

        /* Icon Colors */
        .bg-starshare { background: linear-gradient(135deg, #ef4444, #b91c1c); }
        .bg-b1g { background: linear-gradient(135deg, #10b981, #059669); }
        .bg-opplex { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .bg-filex { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .bg-5glive { background: linear-gradient(135deg, #14b8a6, #0d9488); }
        .bg-rolex { background: linear-gradient(135deg, #1f2937, #111827); }
        .bg-plixi { background: linear-gradient(135deg, #ec4899, #db2777); }
        .bg-geo { background: linear-gradient(135deg, #0ea5e9, #0284c7); }

        /* --- NEW MODAL (POPUP PAGE) STYLES --- */
        .modal-overlay {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background: white;
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            animation: slideUp 0.3s ease-out;
            text-align: center;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: #9ca3af;
            cursor: pointer;
            transition: color 0.2s;
        }
        .close-btn:hover { color: #111827; }

        .modal-icon {
            width: 80px; height: 80px;
            border-radius: 20px;
            margin: 0 auto 20px auto;
            display: flex; align-items: center; justify-content: center;
            font-size: 2.5rem; color: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .modal-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 5px; }
        .modal-subtitle { color: var(--text-sub); margin-bottom: 30px; }

        /* Code Box */
        .code-section {
            background: #fff7ed;
            border: 2px dashed #f97316;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .code-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #9a3412; font-weight: 700; display: block; margin-bottom: 5px; }
        .code-number { font-size: 2.5rem; font-weight: 900; color: #ea580c; letter-spacing: 2px; }

         .btn-download {
    background-color: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 2px solid #efeefe;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
        /* Download Button in Modal */
        .modal-download-btn {
            display: block;
            background: var(--primary-blue);
            color: white;
            padding: 15px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px -1px rgba(88, 70, 249, 0.2);
            transition: transform 0.2s;
        }
        .modal-download-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(88, 70, 249, 0.3); }

       /* Multiple Buttons Container */
.buttons-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Buttons ke beech ka faasla */
    margin-top: 20px;
}

/* Updated Button Style */
.modal-download-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    width: 100%;
}

.modal-download-btn:hover {
    background: #4636d6;
    transform: translateY(-2px);
}

/* Agar button "Alternative" ya "Mirror" ho to uska color alag ho (Optional) */
.btn-secondary {
    background: #e5e7eb;
    color: #1f2937;
}
.btn-secondary:hover {
    background: #d1d5db;
}

/* Container for multiple codes */
#m-code-container {
    display: flex;
    flex-direction: column; /* Upar se neeche */
    gap: 10px; /* Beech ka faasla */
}

/* Single Code Style Update */
.code-number {
    font-size: 2.2rem; /* Size thora adjust kia */
    font-weight: 900;
    color: #ea580c;
    letter-spacing: 2px;
    border-bottom: 1px dashed #fdba74; /* Separation line */
    padding-bottom: 5px;
}

/* Aakhri code ke neeche line na aye */
.code-number:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
/* asmediahub theme: heading font */
h1,h2,h3,h4,h5,h6{font-family:'Raleway',sans-serif !important;}
