@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.popup-container{
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Button */
.btn{
    padding: 10px 60px;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    border-radius: 30px;
}

/* Popup */
.popup{
    width: 800px;
    max-width: 90%;
    background: #000;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 20px 30px;
    color: #fff;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}

/* Open popup */
.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

/* Heading */
.popup h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* List */
.popup ul{
    font-size: 16px;
}

.popup ul li{
    list-style: none;
    padding-bottom: 1rem;
}

/* Button inside popup */
.popup button{
    width: 30%;
    margin-top: 15px;
    padding: 10px 0;
    background: #fff;
    color: #000;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* =======================
   📱 MOBILE RESPONSIVE
   ======================= */



   
@media (max-width: 600px){

    .popup{
        width: 90%;
        padding: 20px;
        border-radius: 12px;
    }

    .popup h2{
        font-size: 22px;
    }

    .popup ul{
        font-size: 14px;
    }

    .popup button{
        width: 100%;
        font-size: 16px;
    }

    .btn{
        font-size: 16px;
        padding: 10px 40px;
    }
}
