      * {
        box-sizing: border-box;
      }

      html,
      body {
        min-height: 100%;
      }

      body {
        margin: 0;
        background: #000;
        color: #f4f4f4;
        font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      main {
        width: min(1180px, 100%);
        margin: 0 auto;
        padding: clamp(22px, 5vw, 56px);
      }

      nav {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: clamp(44px, 8vw, 90px);
      }

      a {
        color: #aaa;
        text-decoration: none;
      }

      a:hover,
      a:focus-visible {
        color: #fff;
        outline: none;
      }

      h1 {
        margin: 0 0 18px;
        overflow-wrap: normal;
        white-space: nowrap;
        font-size: clamp(1.45rem, 5.6vw, 4.2rem);
        line-height: 1.05;
        letter-spacing: -0.025em;
      }

      .meta {
        margin: 0 0 34px;
        color: #888;
        font-size: 0.95rem;
        line-height: 1.6;
      }

      .code-shell {
        overflow: hidden;
        border: 1px solid #222;
        background: #050505;
      }

      .code-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        min-height: 48px;
        padding: 0 16px;
        border-bottom: 1px solid #222;
        color: #888;
        font-size: 0.85rem;
      }

      button {
        border: 1px solid #292929;
        border-radius: 6px;
        background: #101010;
        color: #ddd;
        cursor: pointer;
        font: inherit;
        min-height: 32px;
        padding: 0 12px;
      }

      button:hover,
      button:focus-visible {
        background: #181818;
        outline: none;
      }

      pre {
        margin: 0;
        overflow-x: auto;
        overflow-y: visible;
        padding: 18px 0;
        line-height: 1.55;
        tab-size: 2;
      }

      code {
        display: block;
        width: max-content;
        min-width: 100%;
        font: inherit;
        font-size: clamp(0.78rem, 1.7vw, 0.95rem);
      }

      .line {
        display: grid;
        grid-template-columns: 84px max-content;
        width: max-content;
        min-width: 100%;
      }

      .line-number,
      .line-code {
        white-space: pre;
      }

      .line-number {
        padding: 0 18px;
        color: #444;
        text-align: right;
        user-select: none;
      }

      .line-code {
        min-width: max-content;
        padding-right: 22px;
        color: #ddd;
      }

      .token-comment {
        color: #6f777d;
      }

      .token-string {
        color: #9ad47a;
      }

      .token-keyword {
        color: #7da8ff;
      }

      .token-command {
        color: #63d5ca;
      }

      .token-variable {
        color: #f5d073;
      }

      .token-number {
        color: #f0a5ff;
      }

      .token-tag,
      .token-selector {
        color: #63d5ca;
      }

      .token-attr,
      .token-property {
        color: #f5d073;
      }

      .token-at-rule {
        color: #c792ea;
      }

      .token-punctuation {
        color: #9aa0a6;
      }

      .token-important {
        color: #ff7b72;
        font-weight: 700;
      }

      .error {
        border: 1px solid #2d2d2d;
        padding: 18px;
        color: #aaa;
        line-height: 1.6;
      }

      .license-note {
        margin: 12px 0 28px;
        color: #777;
        line-height: 1.6;
      }

      @media (max-width: 620px) {
        nav {
          display: grid;
        }

        .line {
          grid-template-columns: 64px max-content;
        }

        .line-number {
          padding: 0 12px;
        }

        h1 {
          overflow-wrap: anywhere;
          white-space: normal;
        }
      }
