.age-popup-overlay{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.age-popup-box{

    width:95%;
    max-width:540px;
    background:#fff;
    border-radius:18px;
    padding:45px;
    text-align:center;
    animation:popup .35s ease;
}

@keyframes popup{

    from{

        transform:scale(.85);
        opacity:0;
    }

    to{

        transform:scale(1);
        opacity:1;
    }

}

.age-icon{

    margin-bottom:20px;
}

.age-icon img{

    width:90px;
}

.age-popup-box h2{

    font-size:38px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
    line-height:1.3;
}

.age-popup-box p{

    color:#555;
    line-height:32px;
    font-size:20px;
    margin-bottom:20px;
}

.age-popup-box a{

    color:#ff3b00;
    text-decoration:none;
    font-weight:bold;
}

#acceptAge{

    background:#ff3b00;
    color:#fff;
    border:none;
    padding:14px 38px;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
}

#acceptAge:hover{

    background:#d93200;
}

.decline-btn{

    display:block;
    margin:18px auto 0;
    border:none;
    background:none;
    color:#ff3b00;
    font-size:18px;
    cursor:pointer;
}

@media(max-width:768px){

.age-popup-box{

padding:30px 20px;

}

.age-popup-box h2{

font-size:28px;

}

.age-popup-box p{

font-size:16px;
line-height:28px;

}

}