.custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
}
.custom-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}
.custom-popup h3 {
    margin-top: 0;
}
.custom-popup-button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    cursor: pointer;
    color: white;
    border-radius: 4px;
}
.custom-android-btn {
    background-color: #3DDC84;
}
.custom-pc-btn {
    background-color: #008dfc;
}

.download-desc{
    display: block;
}

.download-mob{
    display: none;
}

@media(max-width: 700px){
    .download-desc{
        display: none;
    }

    .download-mob{
        display: block;
    }
}