
    body {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        min-height: 100vh;
    }

    .download-container {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .download-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .download-header .ascii-art-wrapper {
        margin-bottom: 8px;
    }

    .download-header p {
        color: var(--fg-dim);
        font-size: 14px;
    }

    .download-status {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 24px;
        background: var(--bg-light);
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-bottom: 40px;
    }

    .download-status .spinner {
        width: 20px;
        height: 20px;
        border: 2px solid var(--border);
        border-top-color: var(--accent);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    .download-status.complete .spinner {
        display: none;
    }

    .download-status.complete::before {
        content: "✓";
        color: var(--accent);
        font-size: 18px;
    }

    .install-steps {
        background: var(--bg-light);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 24px;
    }

    .install-steps h2 {
        font-size: 16px;
        font-weight: 600;
        color: var(--fg);
        margin: 0 0 16px 0;
    }

    .install-steps ol {
        list-style: none;
        counter-reset: step;
        margin: 0;
        padding: 0;
    }

    .install-steps li {
        counter-increment: step;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 14px;
        color: var(--fg-dim);
    }

    .install-steps li::before {
        content: counter(step);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 24px;
        height: 24px;
        background: var(--accent);
        color: var(--bg);
        font-weight: 700;
        font-size: 12px;
        border-radius: 50%;
    }

    .install-steps code {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 2px 6px;
        font-size: 12px;
        color: var(--accent);
    }

    .manual-download {
        text-align: center;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .manual-download a {
        color: var(--accent);
        text-decoration: none;
    }

    .manual-download a:hover {
        text-decoration: underline;
    }

    .back-link {
        text-align: center;
        margin-top: 32px;
    }

    .back-link a {
        color: var(--fg-dim);
        text-decoration: none;
        font-size: 13px;
    }

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