
    /* Center the popup on screen */
    .popupBoxWrapperX1 {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 320px;
        background: #ffffff;
        border-radius: 16px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 18px rgba(0,0,0,0.1);
        display: none;
        animation: fadeZoom 0.6s ease forwards;
        z-index: 9999;
    }

    .closeBtnX1 {
        position: absolute;
        top: -7px;
        right: 7px;
        font-size: 32px;
        cursor: pointer;
        font-weight: bold;
    }

    .qrBoxX1 {
        background: #e9f7f1;
        padding: 15px;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .qrBoxX1 img {
        width: 230px;
        height: 230px;
        border-radius: 12px;
    }

    .titleTextX1 {
        margin-top: 20px;
        font-size: 20px;
        font-weight: bold;
        color: #1f3a5f;
    }

    .storeBtnsX1 {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .storeBtnsX1 img {
        width: 150px;
        cursor: pointer;
    }

    /* Download Button */
    /* .androidBtnX1 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #28a745;
        color: #fff;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    } */

    /* .androidBtnX1:hover {
        transform: scale(1.07);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    } */

    .playIconX1 {
        width: 35px;
        height: 35px;
    }

    .mobileTextX1 {
        display: none;
        align-items: center;
        gap: 5px;
        font-size: 18px;
    }
/* 
    @media (max-width: 600px) {
        body {
            padding-top: 20px;
        }

        .fullTextX1 {
            display: none;
        }

        .mobileTextX1 {
            display: inline-flex;
        }

        .popupBoxWrapperX1 {
            width: 280px;
        }
    }

    .downloadLabelX1 {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
    } */