* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.fg-pop{
        position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.pop-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.pop-con{
        position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 90%;
    max-width: 600px;
}
.pop-btn{
       background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}