.popup2 {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgb(0 0 0 / .9);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:1000;
    color:#fff;
    animation:pulseGlow 1.5s infinite
}
.popup2.hidden2 {
    display:none
}
.popup2-container {
    display:flex;
    flex-direction:column;
    align-items:center
}
.popup2-logo {
    height:65px;
    margin-bottom:45px
}
.popup2-content {
    width:450px;
    background:#202020;
    border-radius:15px;
    padding:40px 20px;
    text-align:center
}
.popup2-title {
    font-family:'Montserrat',sans-serif;
    font-size:24px;
    font-weight:bolder
}
.popup2-text {
    font-family:'Montserrat',sans-serif;
    font-size:18x;
    font-weight:400;
    color:#fff;
    margin-top:20px;
    margin-bottom:20px
}
.popup2-buttons {
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:30px
}
.reloadBtn12 {
    background:#ba8b14;
    color:#fff;
    height:40px;
    width:400px;
    padding:5px;
    font-family:'Montserrat',sans-serif;
    font-size:12px;
    text-transform:uppercase;
    border-radius:30px;
    cursor:pointer;
    border:none;
    font-weight:700
}
.reloadBtn22 {
    background:#141414;
    color:#fff;
    height:40px;
    width:400px;
    padding:5px;
    font-family:'Montserrat',sans-serif;
    font-size:12px;
    text-transform:uppercase;
    border-radius:30px;
    cursor:pointer;
    border:none;
    font-weight:700
}
.reloadBtn12:hover {
    background-color:#886a1e
}
.reloadBtn22:hover {
    background-color:#181818
}