
    @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

    :root {
        --bg: #080a12;
        --bg-light: #0d1019;
        --fg: #ebeeff;
        --fg-dim: #788097;
        --accent: #00ffc8;
        --accent2: #ff00c8;
        --red: #ff5555;
        --yellow: #f0c674;
        --border: #1a1e2e;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
        background: var(--bg);
        color: var(--fg);
        font-family: 'JetBrains Mono', 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Consolas', monospace;
        font-size: 14px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

    body {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .terminal {
        max-width: 520px;
        width: 100%;
        background: var(--bg-light);
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .terminal-header {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
    }

    .terminal-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .terminal-dot.red { background: #ff5f56; }
    .terminal-dot.yellow { background: #ffbd2e; }
    .terminal-dot.green { background: #27c93f; }

    .terminal-title {
        flex: 1;
        text-align: center;
        color: var(--fg-dim);
        font-size: 12px;
        margin-right: 52px;
    }

    .terminal-body {
        padding: 24px;
    }

    .modal-box {
        border: 2px solid var(--accent);
        border-radius: 2px;
        padding: 0;
    }

    .modal-box.error {
        border-color: var(--red);
    }

    .modal-title {
        background: var(--bg);
        color: var(--accent);
        font-weight: 700;
        padding: 8px 16px;
        border-bottom: 1px solid var(--accent);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .modal-title.error {
        color: var(--red);
        border-bottom-color: var(--red);
    }

    .modal-content {
        padding: 20px;
        background: var(--bg);
    }

    .icon {
        font-size: 18px;
    }

    .success-icon { color: var(--accent); }
    .error-icon { color: var(--red); }

    h1 {
        color: var(--fg);
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 12px;
    }

    p {
        color: var(--fg-dim);
        font-size: 13px;
        margin-bottom: 8px;
    }

    .email {
        color: var(--accent);
        font-weight: 500;
    }

    .hint {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        color: var(--fg-dim);
        font-size: 12px;
    }

    .hint kbd {
        display: inline-block;
        background: var(--bg-light);
        border: 1px solid var(--border);
        border-radius: 3px;
        padding: 2px 6px;
        font-size: 11px;
        color: var(--fg);
    }

    .status-line {
        margin-top: 20px;
        padding: 8px 12px;
        background: var(--accent);
        color: var(--bg);
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .status-line.error {
        background: var(--red);
    }

    .blink {
        animation: blink 1s step-end infinite;
    }

    @keyframes blink {
        50% { opacity: 0; }
    }

    .cursor {
        display: inline-block;
        width: 8px;
        height: 16px;
        background: var(--accent);
        margin-left: 4px;
        vertical-align: middle;
    }

    .ascii-art-wrapper {
        text-align: center;
        margin-bottom: 32px;
    }

    .ascii-art {
        display: inline-block;
        color: var(--accent);
        font-size: 11px;
        line-height: 1.2;
        white-space: pre;
        text-align: left;
    }

    .prompt {
        color: var(--accent2);
    }

    .command {
        color: var(--fg);
    }

    .output {
        color: var(--fg-dim);
    }

    .copyright {
        text-align: center;
        color: var(--fg-dim);
        font-size: 11px;
        margin-top: 20px;
        opacity: 0.6;
    }

    .demo-container {
        margin-bottom: 20px;
        border: 1px solid var(--border);
        border-radius: 4px;
        overflow: hidden;
    }

    .demo-gif {
        display: block;
        width: 100%;
        height: auto;
    }

    .install-section {
        margin-bottom: 24px;
    }

    .install-label {
        color: var(--fg-dim);
        font-size: 12px;
        margin-bottom: 8px;
    }

    .install-box {
        display: flex;
        align-items: stretch;
        background: var(--bg);
        border: 1px solid var(--accent);
        border-radius: 4px;
        overflow: hidden;
    }

    .install-command {
        flex: 1;
        padding: 14px 16px;
        font-size: 12px;
        color: var(--fg);
        white-space: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .install-command::-webkit-scrollbar {
        display: none;
    }

    .install-command .prompt {
        color: var(--accent2);
        user-select: none;
    }

    .copy-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        background: var(--accent);
        color: var(--bg);
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: 12px;
        font-weight: 500;
        transition: opacity 0.2s;
        gap: 6px;
    }

    .copy-btn:hover {
        opacity: 0.85;
    }

    .copy-btn.copied {
        background: var(--accent);
    }

    .copy-icon {
        width: 14px;
        height: 14px;
    }
