.cli-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Hero */
.cli-hero {
    text-align: center;
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2.5rem;
}
.cli-hero h1 {
    font-size: 2.8rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.5rem;
}
.cli-accent { color: #f97316; }
.cli-sub {
    font-size: 1.15rem;
    color: #999;
    margin: 0 0 1.5rem;
}
.cli-install-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}
.cli-install-box code {
    color: #f97316;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Copy button */
.cli-copy {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s;
}
.cli-copy:hover { color: #f97316; }

/* Sections */
.cli-section {
    margin-bottom: 3rem;
}
.cli-section h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Command blocks */
.cli-cmd {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}
.cli-cmd h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 0.75rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
.cli-prompt {
    color: #f97316;
    margin-right: 0.25rem;
}
.cli-cmd > p {
    color: #999;
    margin: 0 0 1rem;
    line-height: 1.5;
}

/* Code blocks */
.cli-code-block {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.cli-code-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: #666;
}
.cli-code-block pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
    font-size: 0.85rem;
    line-height: 1.6;
}
.cli-code-block code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    color: #e0e0e0;
}

/* Syntax highlights */
.t-g { color: #555; }            /* comments */
.t-s { color: #a5d6a7; }        /* strings */
.t-k { color: #82b1ff; }        /* keywords */

/* Options tables */
.cli-opts {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}
.cli-opts th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    color: #999;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cli-opts td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #ccc;
}
.cli-opts code {
    background: rgba(249,115,22,0.1);
    color: #f97316;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Footer */
.cli-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #666;
    font-size: 0.9rem;
}
.cli-footer a {
    color: #f97316;
    text-decoration: none;
}
.cli-footer a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .cli-hero h1 { font-size: 2rem; }
    .cli-install-box { font-size: 0.8rem; padding: 0.5rem 0.75rem; }
    .cli-cmd { padding: 1rem; }
    .cli-opts { font-size: 0.78rem; }
}
