/* ===== INSTALL PAGE ===== */
.install-page {
    padding: 30px 0 60px;
    min-height: 100vh;
    background: var(--light-gray);
}

.install-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Back Link */
.header-top {
    justify-content: space-between;
}

.back-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--white);
}

/* App Header */
.app-header {
    text-align: center;
    margin-bottom: 24px;
}

.app-header .app-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.app-header h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.android-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #3ddc84;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Description */
.install-desc {
    text-align: center;
    margin-bottom: 24px;
}

.install-desc p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Download Button */
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(228, 35, 19, 0.3);
}

.download-btn:hover {
    background: #c41a0d;
    color: var(--white);
    transform: translateY(-2px);
}

.file-info {
    margin-top: 8px;
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
}

/* Instructions */
.install-instructions {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.instructions-text {
    grid-column: 1;
}

.install-instructions h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0;
    padding-left: 12px;
    border-left: 4px solid var(--accent-red);
}

.install-instructions p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.install-instructions ol {
    margin: 14px 0 0;
    padding-left: 20px;
}

.install-instructions ol li {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* Screenshots */
.screenshots {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    grid-column: 1;
}

.screenshots img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .install-instructions {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        padding: 28px 24px;
    }

    .instructions-text {
        grid-column: 1;
    }

    .screenshots {
        grid-column: 2;
        justify-content: flex-start;
        align-self: start;
    }

    .screenshots img {
        max-width: none;
    }
}

/* Install CTA */
.install-cta {
    text-align: center;
    margin-bottom: 40px;
}

.install-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.3);
    width: 100%;
}

.install-btn:hover {
    background: #000;
    color: var(--white);
    transform: translateY(-2px);
}

.android-only-note {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 13px;
}
