/* ── DOWNLOAD SEKARANG MODAL OVERLAY ─────────────────────── */
.download-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 6, 20, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 1060;
}
.download-modal-overlay.is-open {
    display: flex;
}

/* ── MODAL CARD ──────────────────────────────────────────── */
.download-modal {
    background: #fff;
    border-radius: 28px;
    padding: 28px 24px;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(109, 40, 217, .18), 0 8px 32px rgba(0, 0, 0, .12);
    animation: downloadModalPop .38s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
@keyframes downloadModalPop {
    from { opacity: 0; transform: translateY(20px) scale(.95); }
    to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

/* ── CLOSE BUTTON ────────────────────────────────────────── */
.download-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 50%;
    border: 0;
    width: 34px;
    height: 34px;
    background: rgba(148, 163, 184, .15);
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.download-modal-close:hover {
    background: rgba(148, 163, 184, .3);
    color: #1e293b;
}

/* ── HEADER ──────────────────────────────────────────────── */
.download-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.download-modal-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gn-purple) 0%, #4F46E5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(109, 40, 217, .35);
}
.download-modal-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gn-purple);
    margin-bottom: 4px;
}
.download-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    color: rgba(16, 10, 34, .9);
    margin: 0;
}

/* ── DESCRIPTION TEXT ────────────────────────────────────── */
.download-modal-text {
    font-size: .88rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
    text-align: center;
}

/* ── STORE BUTTONS (shared with vr modal) ────────────────── */
.download-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.download-modal-btn {
    width: 100%;
    border-radius: 14px;
    border: 0;
    padding: 13px 20px;
    font-weight: 700;
    font-size: .88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s;
}
.download-modal-btn:hover {
    transform: translateY(-2px);
}
