    .custom-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-inner {
        background: #fefaf7;
        padding: 30px;
        border-radius: 16px;
        text-align: center;
        max-width: 450px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        color: #1c2c4c;
        position: relative;
    }

    .popup-inner h3.logo {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .popup-inner h2 {
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .popup-inner .desc {
        font-family: 'Barlow Condensed';
        font-size: 15px;
        color: #1c2c4c;
        margin-bottom: 20px;
    }

    .popup-inner input {
        padding: 12px;
        width: 90%;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
    }

    .btn-main {
        background-color: #1c2c4c;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
        margin-bottom: 10px;
        text-transform: inherit;
        font-family: 'Barlow Condensed';
    }

    .btn-google {
        background: #efefef4f;
        border: 1px solid #ccc;
        padding: 3px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        cursor: pointer;
        display: inline-block;
        font-family: 'Gilroy';
        text-transform: inherit;
    }

    .btn-link {
        color: #1c2c4c;
        font-size: 14px;
        display: block;
        margin-top: 10px;
        text-decoration: underline;
        font-family: 'Barlow Condensed';
        font-weight: bold;
    }

    .popup-inner .terms {
        font-size: 12px;
        line-height: 1.5;
        color: #222;
        text-align: left;
        margin-top: 15px;
        font-family: 'Barlow Condensed';
    }

    .popup-inner .terms a {
        color: #1c2c4c;
        text-decoration: underline;
    }

    @media (max-width: 480px) {
        .popup-inner {
            padding: 20px;
            font-size: 14px;
        }

        .popup-inner h2 {
            font-size: 20px;
        }

        .popup-inner input {
            padding: 10px;
            font-size: 14px;
        }

        .btn-main,
        .btn-google {
            font-size: 14px;
            padding: 10px 16px;
        }

        .popup-inner .terms {
            font-size: 10px;
        }
    }