.popup {
    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
}

.popup.hidden {
    display: none
}

.popup-container {
    display: flex;
    flex-direction: column;
    align-items: center
}

.popup-logo {
    height: 65px;
    margin-bottom: 45px
}

.popup-content {
    width: 450px;
    background: #202020;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center
}

.popup-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 24px;
    font-weight: bolder
}

.popup-text {
    font-family: 'Montserrat',sans-serif;
    font-size: 18x;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px
}

.reloadBtn1 {
    background-image: linear-gradient(to right, #956A0B, #FEE19E, #956A0B) !important;
    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
}

.reloadBtn2 {
    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
}

.reloadBtn1:hover {
    background-color: #c63106
}

.reloadBtn2:hover {
    background-color: #181818
}

@media (max-width: 768px) {
    .popup-content {
        width:300px
    }
}
