.download-page {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 36%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.download-card {
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 44px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 80px rgba(31, 41, 55, 0.24);
    color: #ffffff;
}

.download-copy {
    text-align: left;
}

.download-copy h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.download-subtitle {
    max-width: 620px;
    margin: 24px 0 28px;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: rgba(255, 255, 255, 0.86);
}

.download-store-buttons {
    margin: 0;
    max-width: none;
    justify-content: flex-start;
}

.download-store-buttons .btn {
    width: 280px;
}

.download-qr-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    color: var(--text-dark);
}

.download-qr {
    width: min(100%, 420px);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-qr canvas,
.download-qr img {
    width: 100% !important;
    max-width: 420px;
    height: auto !important;
    border-radius: 18px;
}

.download-qr-label {
    margin: 18px 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.download-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    word-break: break-all;
}

.download-link:hover {
    text-decoration: underline;
}

@media (max-width: 860px) {
    .download-card {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .download-copy {
        text-align: center;
    }

    .download-store-buttons {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .download-page {
        padding: 18px 14px;
    }

    .download-card {
        padding: 22px;
        border-radius: 24px;
    }

    .download-store-buttons .btn {
        width: 100%;
    }
}
