:root { color-scheme: dark; font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif; background: #0b0b10; color: #f6f3ff; }
    * { box-sizing: border-box; }
    body { margin: 0; padding: 14px; background: radial-gradient(circle at top, #251238 0, #0b0b10 48%); }
    h1 { font-size: 22px; margin: 0; }
    h2 { font-size: 18px; margin: 18px 0 10px; }
    h3 { font-size: 15px; margin: 0 0 8px; }
    .muted { color: #a9a1b8; font-size: 13px; }
    .top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 14px; }
    .pill { border: 1px solid #3b3150; color: #c8b8ff; padding: 5px 9px; border-radius: 999px; font-size: 12px; }
    .tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 12px 0; position: sticky; top: 0; background: rgba(11,11,16,.92); padding: 8px 0; backdrop-filter: blur(8px); z-index: 3; }
    button { border: 0; border-radius: 12px; padding: 10px 12px; background: #7c3aed; color: white; font-weight: 750; cursor: pointer; }
    button.secondary { background: #262132; color: #e7defd; border: 1px solid #40374f; }
    button.danger { background: #9f1239; }
    button.small { padding: 6px 9px; border-radius: 9px; font-size: 12px; }
    button.active { background: #a855f7; box-shadow: 0 0 0 2px rgba(168,85,247,.25); }
    .grid { display: grid; gap: 12px; }
    .card { border: 1px solid #2d2638; background: rgba(19,18,26,.94); border-radius: 18px; padding: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
    .row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 10px; }
    label { display: grid; gap: 5px; color: #cfc6de; font-size: 12px; font-weight: 650; }
    input, select, textarea { width: 100%; border: 1px solid #3b3446; border-radius: 12px; padding: 10px; background: #111018; color: #fff; }
    textarea { min-height: 74px; resize: vertical; }
    .list { display: grid; gap: 8px; }
    .item { border: 1px solid #332b42; background: #14121d; border-radius: 14px; padding: 10px; }
    .item-head { display: flex; justify-content: space-between; gap: 8px; align-items: start; }
    .tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
    .tag { background: #251b35; color: #d8c6ff; border: 1px solid #43315f; border-radius: 999px; padding: 3px 7px; font-size: 11px; }
    .metric-value { font-size: 24px; }
    .hidden { display: none; }
    .check { width: auto; }
    .ok { color: #86efac; } .warn { color: #fde68a; } .bad { color: #fda4af; }
    .toast { position: fixed; left: 12px; right: 12px; bottom: 12px; padding: 12px; border-radius: 14px; background: #20172c; border: 1px solid #6d28d9; display: none; z-index: 10; }
    .advanced { margin-top: 18px; }
    pre { white-space: pre-wrap; overflow-wrap: anywhere; background: #0f0d14; border-radius: 12px; padding: 10px; color: #cabdf0; max-height: 360px; overflow: auto; }
    @media (max-width: 620px) { .tabs { grid-template-columns: repeat(2, 1fr); } .row { grid-template-columns: 1fr; } }
