.download-dialog {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100vw;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.55);
    height: 100vh;
    backdrop-filter: blur(4px);

}
.download-dialog-main {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.download-dialog-content {
    padding: 24px;
    background-color: #fff;
    text-align: center;
    min-width: 300px;
    width: min(92vw, 420px);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .25);
}

.download-dialog-content ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.download-dialog-content li {
    list-style: none;
}

.download-dialog-content li + li {
    margin-top: 0;
}

.download-dialog-content .btn {
    width: 100%;
    min-height: 46px;
    border: 1px solid #155eef;
    border-radius: 12px;
    color: #155eef;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.download-dialog-content .btn:hover {
    background: #155eef;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(21, 94, 239, .18);
}

.download-dialog-close {
    display: block;
    min-width: 108px;
    font-size: 16px;
    font-weight: 800;
    margin: 24px auto 0;
    border: 1px solid #155eef;
    border-radius: 999px;
    color: #155eef;
    background: #fff;
    padding: 8px 18px;
    cursor: pointer;
    transition: .2s ease;
}

.download-dialog-close:hover {
    background: #155eef;
    color: #fff;
}

@media (max-width: 768px) {
    .download-dialog-content {
        padding: 20px;
        border-radius: 18px;
    }

    .download-dialog-content .btn {
        font-size: 14px;
        border-radius: 12px;
        min-height: 44px;

    }

    .download-dialog-close {
        font-size: 14px;
    }
}