
    :root {
      --bg: #0d1117;
      --surface: #161b22;
      --border: #30363d;
      --text: #c9d1d9;
      --text-muted: #8b949e;
      --text-heading: #f0f6fc;
      --accent: #58a6ff;
      --green: #3fb950;
      --orange: #d29922;
      --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 14px;
      line-height: 1.5;
      padding: 0;
      margin: 0;
    }
    header {
      background-color: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
      color: var(--text-heading);
      font-family: var(--mono);
      font-size: 15px;
    }
    .brand-icon {
      width: 10px;
      height: 10px;
      background-color: var(--green);
      border-radius: 50%;
      box-shadow: 0 0 6px var(--green);
    }
    .header-meta {
      font-family: var(--mono);
      font-size: 12px;
      color: var(--text-muted);
    }
    main {
      max-width: 960px;
      margin: 2rem auto;
      padding: 0 1.5rem;
    }
    .alert-banner {
      background: rgba(88, 166, 255, 0.08);
      border: 1px solid rgba(88, 166, 255, 0.25);
      border-radius: 6px;
      padding: 0.75rem 1rem;
      margin-bottom: 1.5rem;
      font-size: 13px;
      color: #9cd1ff;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .panel {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      margin-bottom: 1.5rem;
      overflow: hidden;
    }
    .panel-header {
      padding: 0.75rem 1rem;
      border-bottom: 1px solid var(--border);
      font-weight: 600;
      color: var(--text-heading);
      font-size: 13px;
      background: rgba(255, 255, 255, 0.02);
      display: flex;
      justify-content: space-between;
    }
    .grid-props {
      display: grid;
      grid-template-columns: 200px 1fr;
      font-family: var(--mono);
      font-size: 13px;
    }
    .grid-props .prop-name {
      padding: 0.6rem 1rem;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
      background: rgba(0, 0, 0, 0.1);
    }
    .grid-props .prop-val {
      padding: 0.6rem 1rem;
      border-bottom: 1px solid var(--border);
      color: var(--text);
    }
    .status-badge {
      display: inline-block;
      padding: 0.15rem 0.5rem;
      font-size: 11px;
      font-weight: 600;
      border-radius: 4px;
      font-family: var(--mono);
    }
    .status-active {
      background: rgba(63, 185, 80, 0.15);
      color: var(--green);
      border: 1px solid rgba(63, 185, 80, 0.4);
    }
    .status-protected {
      background: rgba(210, 153, 34, 0.15);
      color: var(--orange);
      border: 1px solid rgba(210, 153, 34, 0.4);
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--mono);
      font-size: 13px;
    }
    th {
      text-align: left;
      padding: 0.6rem 1rem;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
      font-weight: 600;
      background: rgba(0, 0, 0, 0.1);
    }
    td {
      padding: 0.6rem 1rem;
      border-bottom: 1px solid var(--border);
    }
    tr:last-child td {
      border-bottom: none;
    }
    .method {
      font-weight: 600;
      color: var(--accent);
    }
    footer {
      max-width: 960px;
      margin: 2rem auto;
      padding: 1.5rem;
      text-align: center;
      color: var(--text-muted);
      font-size: 12px;
      font-family: var(--mono);
      border-top: 1px solid var(--border);
    }
  
