      :root {
        --bg: #0c0808;
        --bg-2: #110a0a;
        --surface: #1a0f0f;
        --surface-2: #201414;
        --surface-3: #2a1a1a;
        --border: rgba(255, 255, 255, 0.07);
        --border-bright: rgba(255, 255, 255, 0.12);
        --text: #f8f0f0;
        --text-2: #aa8888;
        --text-3: #664444;
        --accent: #ff3333;
        --accent-dim: rgba(255, 51, 51, 0.12);
        --accent-glow: rgba(255, 51, 51, 0.3);
        --red: #ff6b6b;
        --red-dim: rgba(255, 107, 107, 0.15);
        --amber: #ffb347;
        --amber-dim: rgba(255, 179, 71, 0.15);
        --green: #4cff91;
        --green-dim: rgba(76, 255, 145, 0.12);
        --blue: #5b9cf6;
        --blue-dim: rgba(91, 156, 246, 0.12);
        --sidebar-w: 240px;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Inter", sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
        overflow-x: hidden;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
      }
      ::-webkit-scrollbar {
        width: 5px;
      }
      ::-webkit-scrollbar-track {
        background: var(--bg);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--surface-3);
        border-radius: 3px;
      }

      
      .sidebar {
        width: var(--sidebar-w);
        min-height: 100vh;
        background: var(--bg-2);
        border-right: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 50;
        overflow-y: auto;
      }
      .sidebar-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 22px 20px 18px;
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        color: var(--text);
        font-family: "Cabinet Grotesk", sans-serif;
        font-weight: 900;
        font-size: 1.05rem;
        letter-spacing: -0.02em;
      }
      .sidebar-section-label {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-3);
        padding: 14px 20px 6px;
      }
      .sidebar-nav {
        padding: 0 10px;
        flex: 1;
      }
      .nav-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        border-radius: 8px;
        font-size: 0.83rem;
        font-weight: 500;
        color: var(--text-2);
        cursor: pointer;
        transition: all 0.15s;
        margin-bottom: 2px;
        border: 1px solid transparent;
        user-select: none;
      }
      .nav-item svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
      }
      .nav-item:hover {
        background: var(--surface);
        color: var(--text);
      }
      .nav-item.active {
        background: var(--accent-dim);
        color: var(--accent);
        border-color: rgba(255, 51, 51, 0.18);
        font-weight: 600;
      }
      .sidebar-footer {
        padding: 14px 10px;
        border-top: 1px solid var(--border);
      }
      .sidebar-user {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 8px;
        cursor: default;
        transition: background 0.15s;
      }
      .sidebar-user:hover {
        background: var(--surface);
      }
      .user-avatar-wrap {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        border: 1px solid var(--border-bright);
      }
      .user-avatar-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .user-name {
        font-size: 0.8rem;
        font-weight: 600;
      }
      .user-role {
        font-size: 0.68rem;
        color: var(--text-3);
      }
      .plan-badge {
        display: inline-block;
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        padding: 2px 7px;
        border-radius: 4px;
        text-transform: uppercase;
      }
      .plan-MAX {
        background: var(--accent-dim);
        color: var(--accent);
        border: 1px solid rgba(255, 51, 51, 0.2);
      }
      .plan-PRO {
        background: var(--blue-dim);
        color: var(--blue);
        border: 1px solid rgba(91, 156, 246, 0.2);
      }
      .plan-BASE {
        background: var(--surface-2);
        color: var(--text-2);
        border: 1px solid var(--border);
      }
      .plan-FREE {
        background: var(--surface-2);
        color: var(--text-3);
        border: 1px solid var(--border);
      }

      
      .main {
        position: fixed;
        left: var(--sidebar-w);
        right: 0;
        top: 0;
        bottom: 0;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
      }
      .topbar {
        height: 58px;
        background: rgba(12, 8, 8, 0.9);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 28px;
        position: sticky;
        top: 0;
        z-index: 40;
      }
      .topbar-title {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.05rem;
        font-weight: 900;
        letter-spacing: -0.02em;
      }
      .topbar-right {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .status-dot {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.72rem;
        color: var(--green);
        font-weight: 600;
      }
      .status-dot::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--green);
        animation: pulse-green 2s infinite;
      }
      @keyframes pulse-green {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(76, 255, 145, 0.5);
        }
        50% {
          box-shadow: 0 0 0 4px rgba(76, 255, 145, 0);
        }
      }

      
      .gv-pl-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 10px 14px;
      }
      .gv-pl-row + .gv-pl-row {
        border-top: 1px solid var(--border);
      }
      .gv-pl-row.is-banned {
        background: rgba(255, 51, 51, 0.04);
      }
      .gv-pl-left {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
      }
      .gv-pl-avatar-wrap {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 51, 51, 0.95), rgba(91, 156, 246, 0.55));
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 22px rgba(0, 0, 0, 0.35);
        flex-shrink: 0;
      }
      .gv-pl-avatar {
        width: 100%;
        height: 100%;
        border-radius: 999px;
        display: block;
        object-fit: cover;
        background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
      }
      .gv-pl-meta {
        min-width: 0;
      }
      .gv-pl-name {
        font-weight: 800;
        font-size: 0.84rem;
        color: var(--text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        letter-spacing: -0.01em;
      }
      .gv-pl-id {
        margin-top: 2px;
        font-size: 0.68rem;
        color: var(--text-3);
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
          "Courier New", monospace;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .gv-pl-sub {
        margin-top: 3px;
        font-size: 0.68rem;
        color: var(--text-3);
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
      }
      .gv-pl-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-left: 8px;
        padding: 2px 7px;
        border-radius: 999px;
        font-size: 0.6rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        vertical-align: middle;
      }
      .gv-pl-badge.banned {
        background: rgba(255, 51, 51, 0.14);
        border: 1px solid rgba(255, 51, 51, 0.28);
        color: var(--accent);
      }
      .gv-pl-right {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
      }
      .gv-pl-stats {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      .gv-pl-chip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 8px;
        border-radius: 999px;
        font-size: 0.64rem;
        font-weight: 800;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-2);
        white-space: nowrap;
      }
      .gv-pl-chip strong {
        color: var(--text);
        font-weight: 900;
      }
      .gv-pl-loading {
        padding: 22px 18px;
        text-align: center;
      }
      .gv-pl-loading-title {
        font-family: "Cabinet Grotesk", sans-serif;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--text);
        font-size: 0.9rem;
      }
      .gv-pl-loading-sub {
        margin-top: 6px;
        font-size: 0.76rem;
        color: var(--text-3);
        line-height: 1.35;
      }
      .gv-pl-loading-dots {
        margin-top: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
      }
      .gv-pl-loading-dots span {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.06);
        animation: gvPlayersDot 0.92s infinite ease-in-out;
      }
      .gv-pl-loading-dots span:nth-child(2) {
        animation-delay: 0.12s;
      }
      .gv-pl-loading-dots span:nth-child(3) {
        animation-delay: 0.24s;
      }
      @keyframes gvPlayersDot {
        0%,
        100% {
          transform: translateY(0);
          background: rgba(255, 255, 255, 0.18);
        }
        50% {
          transform: translateY(-4px);
          background: rgba(255, 51, 51, 0.42);
        }
      }
      .gv-pl-actions {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .gv-pl-manage {
        position: relative;
      }

      
      .gv-mgr-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.58);
        backdrop-filter: blur(10px);
        z-index: 200;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 18px;
      }
      .gv-mgr-overlay.open {
        display: flex;
      }
      .gv-mgr-modal {
        width: min(520px, 100%);
        background: rgba(14, 10, 10, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 26px 90px rgba(0, 0, 0, 0.65);
        overflow: hidden;
        animation: panelIn 0.16s ease both;
      }
      .gv-mgr-hd {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        background: linear-gradient(180deg, rgba(255, 51, 51, 0.12), rgba(0, 0, 0, 0));
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .gv-mgr-title {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
      }
      .gv-mgr-avwrap {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 51, 51, 0.95), rgba(91, 156, 246, 0.55));
        flex-shrink: 0;
      }
      .gv-mgr-av {
        width: 100%;
        height: 100%;
        border-radius: 999px;
        display: block;
        object-fit: cover;
        background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
      }
      .gv-mgr-ttltext {
        min-width: 0;
      }
      .gv-mgr-ttltext .k {
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-3);
      }
      .gv-mgr-ttltext .u {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 0.98rem;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .gv-mgr-ttltext .id {
        margin-top: 1px;
        font-size: 0.7rem;
        color: var(--text-3);
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
          "Courier New", monospace;
      }
      .gv-mgr-body {
        padding: 14px 16px 16px;
      }
      .gv-mgr-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 12px;
      }
      .gv-mgr-actions .act {
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        color: var(--text);
        font-size: 0.8rem;
        font-weight: 900;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
      }
      .gv-mgr-actions .act:hover {
        background: rgba(255, 255, 255, 0.05);
      }
      .gv-mgr-actions .act small {
        font-size: 0.68rem;
        font-weight: 800;
        color: var(--text-3);
      }
      .gv-mgr-actions .act.warn {
        border-color: rgba(255, 179, 71, 0.22);
      }
      .gv-mgr-actions .act.kick {
        border-color: rgba(255, 107, 107, 0.22);
      }
      .gv-mgr-actions .act.ban {
        border-color: rgba(255, 51, 51, 0.28);
      }
      .gv-mgr-note {
        display: grid;
        gap: 8px;
      }
      .gv-mgr-note label {
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-3);
      }
      .gv-mgr-note textarea {
        width: 100%;
        min-height: 84px;
        resize: vertical;
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: rgba(0, 0, 0, 0.18);
        color: var(--text);
        outline: none;
        font-family: "Inter", sans-serif;
        font-size: 0.82rem;
        line-height: 1.45;
      }
      .gv-mgr-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: 12px;
      }
      .gv-mgr-status {
        font-size: 0.74rem;
        color: var(--text-3);
      }
      @media (max-width: 520px) {
        .gv-mgr-actions {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 900px) {
        .gv-pl-row {
          align-items: flex-start;
          flex-direction: column;
        }
        .gv-pl-right {
          width: 100%;
          justify-content: space-between;
        }
      }
      .topbar-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        border-radius: 7px;
        font-size: 0.78rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: all 0.15s;
        font-family: "Inter", sans-serif;
      }
      .topbar-btn-ghost {
        background: transparent;
        color: var(--text-2);
        border: 1px solid var(--border-bright);
      }
      .topbar-btn-ghost:hover {
        background: var(--surface-2);
        color: var(--text);
      }
      .content {
        padding: 28px 32px;
        flex: 1;
        width: 100%;
      }

      
      .panel {
        display: none;
        animation: panelIn 0.18s ease both;
      }
      .panel.active {
        display: block;
      }
      #panel-support.active {
        display: flex;
      }
      #panel-support {
        margin: 0 -32px -28px -32px;
        height: calc(100vh - 86px);
      }
      @keyframes panelIn {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      
      #gw-error-stack {
        position: fixed;
        top: 14px;
        right: 14px;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        gap: 8px;
        max-width: min(420px, calc(100vw - 28px));
        pointer-events: none;
      }
      .gw-error-toast {
        pointer-events: auto;
        padding: 12px 14px 12px 12px;
        border-radius: 10px;
        border: 1px solid rgba(255, 51, 51, 0.45);
        background: linear-gradient(
          135deg,
          rgba(24, 10, 10, 0.97),
          rgba(12, 8, 8, 0.98)
        );
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
        color: var(--text);
        font-size: 0.78rem;
        line-height: 1.45;
        animation: gwErrIn 0.22s ease both;
      }
      .gw-error-toast.is-warn {
        border-color: rgba(255, 179, 71, 0.45);
        background: linear-gradient(
          135deg,
          rgba(28, 20, 8, 0.97),
          rgba(14, 10, 6, 0.98)
        );
      }
      .gw-error-toast-title {
        font-weight: 700;
        color: var(--accent);
        font-size: 0.8rem;
        margin-bottom: 3px;
      }
      .gw-error-toast.is-warn .gw-error-toast-title {
        color: var(--amber);
      }
      .gw-error-toast-detail {
        color: var(--text-2);
        word-break: break-word;
      }
      .gw-error-toast-dismiss {
        float: right;
        margin: -2px 0 0 8px;
        border: none;
        background: transparent;
        color: var(--text-3);
        cursor: pointer;
        font-size: 1rem;
        line-height: 1;
        padding: 0 2px;
      }
      .gw-error-toast-dismiss:hover {
        color: var(--text);
      }
      @keyframes gwErrIn {
        from {
          opacity: 0;
          transform: translateX(12px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      
      .stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        margin-bottom: 24px;
      }
      .stat-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 18px 20px;
        transition: border-color 0.2s;
      }
      .stat-card:hover {
        border-color: var(--border-bright);
      }
      .stat-card-label {
        font-size: 0.7rem;
        color: var(--text-3);
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 8px;
      }
      .stat-card-val {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        line-height: 1;
      }
      .stat-card-val.red {
        color: var(--red);
      }
      .stat-card-val.green {
        color: var(--green);
      }
      .stat-card-val.amber {
        color: var(--amber);
      }
      .stat-card-val.blue {
        color: var(--blue);
      }
      .stat-card-val.white {
        color: var(--text);
      }
      .stat-card-sub {
        font-size: 0.72rem;
        color: var(--text-3);
        margin-top: 4px;
      }

      
      .table-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
      }
      .table-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
      }
      .table-title {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 0.9rem;
        font-weight: 800;
        letter-spacing: -0.02em;
      }
      table {
        width: 100%;
        border-collapse: collapse;
      }
      thead th {
        padding: 10px 20px;
        text-align: left;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--text-3);
        border-bottom: 1px solid var(--border);
      }
      tbody tr {
        border-bottom: 1px solid var(--border);
        transition: background 0.15s;
      }
      tbody tr:last-child {
        border-bottom: none;
      }
      tbody tr:hover {
        background: var(--surface-2);
      }
      tbody td {
        padding: 12px 20px;
        font-size: 0.82rem;
        color: var(--text-2);
      }
      tbody td.bold {
        color: var(--text);
        font-weight: 600;
      }

      .tag {
        display: inline-flex;
        align-items: center;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 0.67rem;
        font-weight: 700;
        letter-spacing: 0.04em;
      }
      .tag-active {
        background: var(--green-dim);
        color: var(--green);
      }
      .tag-expired {
        background: var(--surface-3);
        color: var(--text-3);
      }
      .tag-revoked {
        background: var(--red-dim);
        color: var(--red);
      }
      .tag-base {
        background: var(--blue-dim);
        color: var(--blue);
      }
      .tag-pro {
        background: var(--accent-dim);
        color: var(--accent);
      }
      .tag-max {
        background: rgba(255, 179, 71, 0.12);
        color: var(--amber);
      }
      .tag-live {
        background: var(--green-dim);
        color: var(--green);
      }

      .mini-btn {
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 0.74rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: all 0.15s;
        font-family: "Inter", sans-serif;
      }
      .mini-btn-ghost {
        background: transparent;
        color: var(--text-2);
        border: 1px solid var(--border-bright);
      }
      .mini-btn-ghost:hover {
        background: var(--surface-2);
        color: var(--text);
      }
      .generate-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--accent);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-family: "Inter", sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 0 16px var(--accent-glow);
        transition: all 0.2s;
      }
      .generate-btn:hover {
        background: #ff5555;
        transform: translateY(-1px);
      }
      .generate-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
      }
      .mini-btn-red {
        background: var(--red-dim);
        color: var(--red);
        border: 1px solid rgba(255, 107, 107, 0.2);
      }
      .mini-btn-red:hover {
        background: rgba(255, 107, 107, 0.25);
      }
      .mini-btn-green {
        background: var(--green-dim);
        color: var(--green);
        border: 1px solid rgba(76, 255, 145, 0.2);
      }
      .mini-btn-green:hover {
        background: rgba(76, 255, 145, 0.2);
      }
      .mini-btn-amber {
        background: rgba(255, 179, 71, 0.1);
        color: var(--amber);
        border: 1px solid rgba(255, 179, 71, 0.28);
      }
      .mini-btn-amber:hover {
        background: rgba(255, 179, 71, 0.18);
      }
      .mini-btn-accent {
        background: var(--accent-dim);
        color: var(--accent);
        border: 1px solid rgba(255, 51, 51, 0.35);
      }
      .mini-btn-accent:hover {
        background: rgba(255, 51, 51, 0.2);
        color: #fff;
      }
      .mini-btn-primary {
        background: var(--accent);
        color: #fff;
      }
      .mini-btn-primary:hover {
        background: #ff5555;
      }

      .overview-user-settings-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 8px;
        border: 1px solid var(--border-bright);
        background: var(--surface-2);
        color: var(--text-2);
        cursor: pointer;
        transition:
          background 0.15s,
          color 0.15s,
          border-color 0.15s;
      }
      .overview-user-settings-btn:hover {
        background: var(--surface-3);
        color: var(--text);
        border-color: var(--border);
      }

      
      .two-col {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
        margin-bottom: 20px;
        align-items: start;
      }

      
      .account-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
      }
      .account-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 28px 20px 20px;
        border-bottom: 1px solid var(--border);
        text-align: center;
      }
      .account-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 2px solid var(--border-bright);
        object-fit: cover;
        background: var(--surface-2);
        margin-bottom: 12px;
      }
      .account-name {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.1rem;
        font-weight: 900;
        letter-spacing: -0.02em;
        margin-bottom: 4px;
      }
      .account-id {
        font-size: 0.65rem;
        color: var(--text-2);
        margin-bottom: 10px;
      }
      .account-rows {
        padding: 0;
      }
      .account-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 11px 18px;
        border-bottom: 1px solid var(--border);
        font-size: 0.78rem;
      }
      .account-row:last-child {
        border-bottom: none;
      }
      .account-row-label {
        color: var(--text-2);
      }
      .account-row-val {
        color: var(--text);
        font-weight: 500;
      }
      .account-row-val.accent {
        color: var(--accent);
      }
      .account-row-val.green {
        color: var(--green);
      }

      .acc-quick-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 14px 16px;
      }
      .acc-quick-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid var(--border-bright);
        background: var(--surface-2);
        color: var(--text-2);
        font-size: 0.74rem;
        font-weight: 600;
        cursor: pointer;
        transition:
          background 0.15s,
          color 0.15s,
          border-color 0.15s;
      }
      .acc-quick-link:hover {
        background: var(--surface-3);
        color: var(--text);
        border-color: var(--border);
      }
      .acc-mini-btn {
        padding: 4px 8px;
        font-size: 0.68rem;
        font-weight: 600;
        border-radius: 6px;
        border: 1px solid var(--border-bright);
        background: var(--surface-2);
        color: var(--text-2);
        cursor: pointer;
        white-space: nowrap;
      }
      .acc-mini-btn:hover {
        color: var(--text);
        border-color: var(--border);
      }
      .acc-staff-banner {
        padding: 14px 16px;
        border-radius: 10px;
        border: 1px solid rgba(255, 51, 51, 0.25);
        background: linear-gradient(
          135deg,
          rgba(255, 51, 51, 0.08),
          rgba(255, 51, 51, 0.02)
        );
        margin-bottom: 16px;
      }
      .acc-game-row-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
      }

      #panel-account .acc-scroll-body {
        max-height: 280px;
        overflow-y: auto;
        overscroll-behavior: contain;
      }
      .acc-quick-link svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
      }

      
      .key-mono {
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.75rem;
        color: var(--text-3);
      }
      .copy-btn {
        padding: 4px 10px;
        background: var(--green-dim);
        color: var(--green);
        border: 1px solid rgba(76, 255, 145, 0.2);
        border-radius: 5px;
        font-size: 0.7rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.15s;
        font-family: "Inter", sans-serif;
      }
      .copy-btn:hover {
        background: rgba(76, 255, 145, 0.2);
      }
      .copy-btn.copied {
        background: var(--accent-dim);
        color: var(--accent);
        border-color: rgba(255, 51, 51, 0.2);
      }

      
      .loading-screen {
        position: fixed;
        inset: 0;
        background: var(--bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        overflow: hidden;
        transition:
          opacity 0.45s ease,
          visibility 0.45s ease;
      }
      .loading-screen.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }
      .loading-vignette {
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 55% 42% at 50% 44%,
          rgba(255, 51, 51, 0.07) 0%,
          transparent 72%
        );
        pointer-events: none;
      }
      .loading-shell {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 28px 32px 24px;
        border-radius: 18px;
        background: rgba(18, 10, 10, 0.82);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow:
          0 24px 48px rgba(0, 0, 0, 0.35),
          0 0 0 1px rgba(255, 51, 51, 0.04) inset;
        animation: loadingShellIn 0.5s ease forwards;
      }
      @keyframes loadingShellIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      .loading-mark {
        position: relative;
        width: 58px;
        height: 58px;
      }
      .loading-mark-orbit {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.06);
        border-top-color: rgba(255, 68, 68, 0.95);
        border-right-color: rgba(255, 68, 68, 0.3);
        animation: loadingOrbitSpin 0.95s linear infinite;
        transform-origin: 50% 50%;
        will-change: transform;
        pointer-events: none;
        z-index: 2;
      }
      @keyframes loadingOrbitSpin {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }
      .loading-mark-media {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        border-radius: 50%;
        background: #0c0808;
        overflow: hidden;
      }
      .loading-mark-gif {
        max-width: 40px;
        max-height: 40px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        border-radius: 0;
        mix-blend-mode: screen;
        filter: drop-shadow(0 0 8px rgba(255, 51, 51, 0.35));
        pointer-events: none;
        user-select: none;
      }
      .loading-mark-fallback {
        display: none;
      }
      .loading-mark-media.use-fallback .loading-mark-gif {
        display: none;
      }
      .loading-mark-media.use-fallback .loading-mark-fallback {
        display: block;
        position: static;
        transform: none;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
      }
      .loading-mark-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
      }
      .loading-brand {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.28rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: var(--text);
        line-height: 1;
      }
      #loadingScreen .loading-brand-g,
      #loadingScreen .loading-brand-w {
        font-size: 1.12em;
      }
      .loading-progress {
        width: 100%;
        padding-top: 2px;
      }
      .loading-bar-row {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
      }
      .loading-bar-track {
        flex: 1;
        width: 200px;
        height: 2px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        overflow: hidden;
      }
      .loading-pct {
        font-size: 0.68rem;
        font-weight: 700;
        color: var(--accent);
        font-variant-numeric: tabular-nums;
        letter-spacing: 0.02em;
        min-width: 2.5em;
        text-align: right;
        flex-shrink: 0;
      }
      .loading-bar-fill {
        height: 100%;
        width: 8%;
        background: linear-gradient(90deg, #c42a2a, var(--accent));
        border-radius: 100px;
        transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: 0 0 10px rgba(255, 51, 51, 0.22);
      }
      .loading-label {
        font-size: 0.68rem;
        color: var(--text-3);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        min-height: 1em;
        transition: color 0.25s ease;
      }
      @media (prefers-reduced-motion: reduce) {
        .loading-shell {
          animation: none !important;
        }
        .loading-mark-orbit {
          animation-duration: 2.4s !important;
        }
        .loading-bar-fill {
          transition-duration: 0.01ms !important;
        }
      }
      .loading-hint {
        position: relative;
        z-index: 1;
        width: 520px;
        max-width: calc(100vw - 36px);
        margin-top: 18px;
        font-size: 0.74rem;
        color: var(--text-3);
        text-align: center;
        line-height: 1.45;
        display: none;
      }
      .loading-hint--slow {
        color: var(--text-2);
        font-size: 0.8rem;
        margin-top: 14px;
      }

      
      .toast {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: var(--surface);
        border: 1px solid var(--border-bright);
        border-radius: 8px;
        padding: 10px 16px;
        font-size: 0.75rem;
        color: var(--text);
        z-index: 999;
        transform: translateY(60px);
        opacity: 0;
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        pointer-events: none;
      }
      .toast.show {
        transform: translateY(0);
        opacity: 1;
      }

      
      .gw-busy {
        position: fixed;
        bottom: 58px;
        right: 20px;
        z-index: 1200;
        display: none;
        align-items: flex-end;
        justify-content: flex-end;
        background: transparent;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        opacity: 0;
        transform: translateY(6px);
      }
      .gw-busy.visible {
        display: flex;
        opacity: 1;
        transform: translateY(0);
      }
      .gw-busy-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 5px 10px 5px 5px;
        border-radius: 10px;
        background: linear-gradient(
          135deg,
          rgba(26, 15, 15, 0.96),
          rgba(14, 10, 10, 0.98)
        );
        border: 1px solid rgba(255, 51, 51, 0.28);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
        position: relative;
        overflow: visible;
      }
      .gw-busy-caption {
        margin: 0;
        padding: 0;
        font-family: "Inter", sans-serif;
        font-size: 0.72rem;
        line-height: 1;
        font-weight: 600;
        color: var(--text-2);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        white-space: nowrap;
      }
      @media (prefers-reduced-motion: reduce) {
        .gw-busy-gif-clip {
          animation: none;
          box-shadow: 0 0 0 1px rgba(255, 51, 51, 0.35), 0 0 12px rgba(255, 51, 51, 0.2);
        }
      }
      .gw-busy-gif-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        min-height: 36px;
        flex-shrink: 0;
      }
      .gw-busy-gif-wrap .gw-busy-fallback {
        display: none;
      }
      .gw-busy-gif-wrap.use-fallback .gw-busy-gif-clip {
        display: none;
      }
      .gw-busy-gif-wrap.use-fallback .gw-busy-fallback {
        display: block;
      }
      .gw-busy-gif-clip {
        position: relative;
        padding: 2px;
        max-width: 44px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow:
          0 0 0 1px rgba(255, 51, 51, 0.35),
          0 0 0 0 rgba(255, 100, 100, 0.2),
          0 0 16px rgba(255, 51, 51, 0.22);
        animation: gwBusyBezel 2.2s ease-in-out infinite;
      }
      @keyframes gwBusyBezel {
        0%,
        100% {
          box-shadow:
            0 0 0 1px rgba(255, 51, 51, 0.4),
            0 0 0 0 rgba(255, 200, 200, 0),
            0 0 22px rgba(255, 51, 51, 0.25);
        }
        50% {
          box-shadow:
            0 0 0 2px rgba(255, 160, 160, 0.5),
            0 0 0 2px rgba(255, 51, 51, 0.15),
            0 0 40px rgba(255, 80, 80, 0.45);
        }
      }
      .gw-busy-gif {
        max-width: 40px;
        max-height: 40px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        border-radius: 8px;
        mix-blend-mode: screen;
        image-rendering: auto;
        -webkit-user-select: none;
        user-select: none;
        pointer-events: none;
        filter: drop-shadow(0 0 6px rgba(255, 51, 51, 0.35));
      }
      .gw-busy-spin {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        border: 3px solid rgba(255, 255, 255, 0.18);
        border-top-color: rgba(255, 51, 51, 0.95);
        animation: gwBusySpin 0.7s linear infinite;
        box-shadow:
          0 0 24px rgba(255, 51, 51, 0.34),
          0 0 0 1px rgba(255, 255, 255, 0.05) inset;
      }
      @keyframes gwBusySpin {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      
      .game-name-cell {
        font-weight: 600;
        color: var(--text);
      }
      .game-id-sub {
        font-size: 0.62rem;
        color: var(--text-3);
        margin-top: 1px;
      }
      .val-green {
        color: var(--green);
        font-weight: 700;
      }
      .val-blue {
        color: var(--blue);
        font-weight: 700;
      }
      .val-amber {
        color: var(--amber);
        font-weight: 700;
      }

      
      .refresh-btn {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 0.74rem;
        font-weight: 600;
        cursor: pointer;
        background: transparent;
        color: var(--text-2);
        border: 1px solid var(--border-bright);
        transition: all 0.15s;
        font-family: "Inter", sans-serif;
      }
      .refresh-btn:hover {
        background: var(--surface-2);
        color: var(--text);
      }
      .refresh-btn svg {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .refresh-btn.spin svg {
        animation: spin 0.8s linear infinite;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      
      #panel-activekey.ak-root {
        flex-direction: column;
        gap: 20px;
      }
      #panel-activekey.panel.active {
        display: flex;
      }
      #panel-activekey .ak-hero {
        margin-bottom: 0;
      }
      #panel-activekey .ak-hero-cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: 11px;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
        background: linear-gradient(160deg, var(--accent) 0%, #c42a2a 100%);
        color: #fff !important;
        font-family: "Inter", sans-serif;
        font-size: 0.84rem;
        font-weight: 700;
        box-shadow:
          0 4px 22px rgba(255, 51, 51, 0.45),
          0 0 0 1px rgba(0, 0, 0, 0.12) inset;
        transition:
          transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.2s,
          filter 0.2s;
      }
      #panel-activekey .ak-hero-cta:hover {
        transform: translateY(-2px);
        filter: brightness(1.06);
        box-shadow:
          0 8px 28px rgba(255, 51, 51, 0.5),
          0 0 0 1px rgba(255, 255, 255, 0.08) inset;
      }
      #panel-activekey .ak-hero-cta svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
      }
      #panel-activekey .ak-picker-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 18px 22px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      #panel-activekey .ak-picker-card:hover {
        border-color: var(--border-bright);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
      }
      #panel-activekey .ak-picker-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
        background: rgba(255, 51, 51, 0.12);
        border: 1px solid rgba(255, 51, 51, 0.22);
      }
      #panel-activekey .ak-picker-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--accent);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      #panel-activekey .ak-picker-field {
        flex: 1;
        min-width: 220px;
      }
      #panel-activekey .ak-picker-field label {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--text-3);
        display: block;
        margin-bottom: 6px;
      }
      #panel-activekey .ak-picker-field select {
        width: 100%;
        padding: 11px 14px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 10px;
        color: var(--text);
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.8rem;
        outline: none;
        cursor: pointer;
        transition: border-color 0.2s;
      }
      #panel-activekey .ak-picker-field select:focus {
        border-color: rgba(255, 51, 51, 0.4);
      }
      #panel-activekey .ak-stat-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
      }
      @media (max-width: 960px) {
        #panel-activekey .ak-stat-grid {
          grid-template-columns: 1fr;
        }
      }
      #panel-activekey .ak-stat-tile {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        transition: border-color 0.2s;
      }
      #panel-activekey .ak-stat-tile:hover {
        border-color: var(--border-bright);
      }
      #panel-activekey .ak-stat-ic {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
      }
      #panel-activekey .ak-stat-ic svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      #panel-activekey .ak-stat-lbl {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--text-3);
        margin-bottom: 3px;
      }
      #panel-activekey .ak-stat-val {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.45rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        line-height: 1;
      }
      #panel-activekey .ak-stat-sub {
        font-size: 0.7rem;
        color: var(--text-3);
        margin-top: 4px;
        line-height: 1.35;
      }
      #panel-activekey .ak-place-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }
      @media (max-width: 800px) {
        #panel-activekey .ak-place-grid {
          grid-template-columns: 1fr;
        }
      }
      #panel-activekey .ak-place-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 18px 20px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      #panel-activekey .ak-place-card:hover {
        border-color: var(--border-bright);
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
      }
      #panel-activekey .ak-place-ic {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
      }
      #panel-activekey .ak-place-ic svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      #panel-activekey .ak-place-body {
        min-width: 0;
        flex: 1;
      }
      #panel-activekey .ak-place-k {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-3);
        margin-bottom: 6px;
      }
      #panel-activekey .ak-place-v {
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.88rem;
        color: var(--text);
        word-break: break-all;
        line-height: 1.45;
      }
      #panel-activekey .ak-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 12px;
      }
      #panel-activekey .ak-section-title {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1rem;
        font-weight: 900;
        letter-spacing: -0.02em;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text);
      }
      #panel-activekey .ak-section-title svg {
        width: 20px;
        height: 20px;
        stroke: var(--blue);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
      }
      #panel-activekey .ak-tip {
        padding: 12px 16px;
        border-radius: 10px;
        margin-bottom: 14px;
        font-size: 0.76rem;
        line-height: 1.5;
        color: var(--text-2);
        background: rgba(91, 156, 246, 0.08);
        border: 1px solid rgba(91, 156, 246, 0.22);
        display: flex;
        gap: 12px;
        align-items: flex-start;
      }
      #panel-activekey .ak-tip svg {
        width: 18px;
        height: 18px;
        stroke: var(--blue);
        flex-shrink: 0;
        margin-top: 2px;
        fill: none;
        stroke-width: 2;
      }
      #panel-activekey .ak-add-card {
        background: var(--surface);
        border: 1px solid var(--border-bright);
        border-radius: 14px;
        padding: 18px 20px;
        margin-top: 6px;
        box-shadow: 0 0 0 1px rgba(255, 51, 51, 0.06) inset;
      }
      #panel-activekey .ak-child-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      #panel-activekey .ak-child-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        flex-wrap: wrap;
        padding: 14px 18px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      #panel-activekey .ak-child-row:hover {
        border-color: rgba(91, 156, 246, 0.35);
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
      }
      #panel-activekey .ak-child-row .ak-pid {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.84rem;
        font-weight: 600;
        color: var(--text);
      }
      #panel-activekey .ak-child-row .ak-pid-ic {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: rgba(76, 255, 145, 0.1);
        border: 1px solid rgba(76, 255, 145, 0.22);
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }
      #panel-activekey .ak-child-row .ak-pid-ic svg {
        width: 17px;
        height: 17px;
        stroke: var(--green);
        fill: none;
        stroke-width: 2;
      }
      #panel-activekey .ak-btn-remove {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.74rem;
        font-weight: 700;
        font-family: "Inter", sans-serif;
        background: rgba(255, 107, 107, 0.1);
        color: var(--red);
        border: 1px solid rgba(255, 107, 107, 0.28);
        transition:
          background 0.15s,
          border-color 0.15s;
      }
      #panel-activekey .ak-btn-remove:hover {
        background: rgba(255, 107, 107, 0.18);
        border-color: rgba(255, 107, 107, 0.45);
      }
      #panel-activekey .ak-btn-remove svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
      }
      #panel-activekey .ak-btn-add {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 22px;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        background: var(--accent);
        color: #fff;
        font-size: 0.82rem;
        font-weight: 700;
        font-family: "Inter", sans-serif;
        box-shadow: 0 0 16px var(--accent-glow);
        transition:
          filter 0.15s,
          transform 0.15s;
      }
      #panel-activekey .ak-btn-add:hover {
        filter: brightness(1.08);
        transform: translateY(-1px);
      }
      #panel-activekey .ak-btn-add svg {
        width: 17px;
        height: 17px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      #panel-activekey .ak-child-empty {
        text-align: center;
        padding: 28px 20px;
        border-radius: 12px;
        border: 1px dashed var(--border-bright);
        background: var(--surface-2);
        color: var(--text-3);
        font-size: 0.82rem;
        line-height: 1.55;
      }
      #panel-activekey .ak-child-empty svg {
        width: 40px;
        height: 40px;
        stroke: var(--text-3);
        margin: 0 auto 12px;
        display: block;
        fill: none;
        stroke-width: 1.5;
        opacity: 0.7;
      }
      #panel-activekey .ak-empty-state {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 36px 28px;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      }
      #panel-activekey .ak-empty-state svg.ak-empty-illu {
        width: 56px;
        height: 56px;
        margin: 0 auto 18px;
        stroke: var(--accent);
        opacity: 0.9;
        fill: none;
        stroke-width: 1.5;
      }
      #panel-activekey .ak-msg-bar {
        display: none;
        font-size: 0.8rem;
        padding: 12px 16px;
        border-radius: 10px;
        align-items: center;
        gap: 10px;
      }
      #panel-activekey .ak-msg-bar svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      #panel-activekey #ak-plan.tag {
        font-size: 0.78rem;
        padding: 4px 10px;
      }
      #panel-activekey .ak-stat-plan-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        min-height: 1.45rem;
      }
      #panel-activekey .ak-upgrade-btn {
        padding: 6px 14px;
        border-radius: 8px;
        cursor: pointer;
        flex-shrink: 0;
        border: 1px solid rgba(255, 51, 51, 0.42);
        background: rgba(255, 51, 51, 0.14);
        color: #fff;
        font-family: "Inter", sans-serif;
        font-size: 0.74rem;
        font-weight: 700;
        transition:
          filter 0.15s,
          opacity 0.15s,
          border-color 0.15s,
          background 0.15s;
      }
      #panel-activekey .ak-upgrade-btn:hover:not(:disabled) {
        filter: brightness(1.1);
        border-color: rgba(255, 51, 51, 0.65);
        background: rgba(255, 51, 51, 0.22);
      }
      #panel-activekey .ak-upgrade-btn:disabled {
        opacity: 0.42;
        cursor: not-allowed;
        border-color: var(--border);
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-3);
      }

      @media (max-width: 1100px) {
        .stats-row {
          grid-template-columns: repeat(2, 1fr);
        }
        .two-col {
          grid-template-columns: 1fr;
        }
      }

      
      .gw-overview-split {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
        margin-bottom: 24px;
        align-items: start;
      }
      @media (max-width: 900px) {
        .gw-overview-split {
          grid-template-columns: 1fr;
        }
      }

      
      .gw-menu-btn {
        display: none;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 10px;
        border: 1px solid var(--border-bright);
        background: var(--surface-2);
        color: var(--text-2);
        cursor: pointer;
        flex-shrink: 0;
        transition:
          border-color 0.15s,
          color 0.15s,
          background 0.15s;
      }
      .gw-menu-btn svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .gw-menu-btn:hover {
        color: var(--text);
        border-color: rgba(255, 51, 51, 0.35);
        background: var(--surface-3);
      }
      .gw-nav-backdrop {
        display: none;
      }

      
      @media (max-width: 900px) {
        .gw-menu-btn {
          display: inline-flex;
          min-width: 44px;
          min-height: 44px;
        }
        .main {
          left: 0;
          right: 0;
          width: 100%;
          top: 0;
          bottom: 0;
          min-height: 100dvh;
        }
        .sidebar {
          display: flex;
          width: min(300px, 88vw);
          transform: translateX(-102%);
          transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
          box-shadow: none;
          z-index: 200;
          padding-bottom: env(safe-area-inset-bottom, 0px);
        }
        body.gw-mobile-nav-open .sidebar {
          transform: translateX(0);
          box-shadow: 12px 0 40px rgba(0, 0, 0, 0.55);
        }
        .gw-nav-backdrop {
          display: block;
          position: fixed;
          inset: 0;
          z-index: 150;
          background: rgba(0, 0, 0, 0.55);
          backdrop-filter: blur(2px);
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.22s ease;
        }
        body.gw-mobile-nav-open .gw-nav-backdrop {
          opacity: 1;
          pointer-events: auto;
        }
        html.gw-mobile-nav-open,
        body.gw-mobile-nav-open {
          overflow: hidden;
        }
        .topbar {
          padding: max(0px, env(safe-area-inset-top, 0px)) 12px 0 10px;
          min-height: calc(58px + env(safe-area-inset-top, 0px));
          z-index: 220;
          gap: 8px;
          align-items: center;
        }
        .topbar-right {
          flex-shrink: 0;
          gap: 8px;
        }
        .topbar-title {
          min-width: 0;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          max-width: min(46vw, 200px);
        }
        .status-dot {
          display: none;
        }
        .content {
          padding: 16px max(14px, env(safe-area-inset-right, 0px)) 24px
            max(14px, env(safe-area-inset-left, 0px));
          max-width: 100vw;
          padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
        }
        .table-header {
          flex-wrap: wrap;
          gap: 10px;
          align-items: flex-start;
        }
        .table-card {
          overflow-x: auto;
          overflow-y: visible;
          -webkit-overflow-scrolling: touch;
        }
        .table-card > table {
          min-width: 560px;
        }
        .nav-item {
          min-height: 44px;
          padding: 10px 14px;
          -webkit-tap-highlight-color: rgba(255, 51, 51, 0.12);
        }
        .sidebar-logo {
          padding-top: max(22px, env(safe-area-inset-top, 0px));
        }
        .mini-btn,
        .topbar-btn,
        .refresh-btn,
        button.rec-viewmore-btn,
        button.rec-search-btn,
        button.rec-add-ban-btn {
          min-height: 44px;
          touch-action: manipulation;
        }
        #statsRow {
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        }
        #gv-cards {
          grid-template-columns: minmax(0, 1fr) !important;
        }
        #panel-support {
          margin: 0 -14px -24px -14px;
          width: calc(100% + 28px);
          max-width: 100vw;
          height: calc(
            100dvh - 58px - env(safe-area-inset-top, 0px) -
              env(safe-area-inset-bottom, 0px)
          );
          min-height: 280px;
        }
        .lookup-input-row {
          flex-direction: column;
          align-items: stretch;
        }
        .ax-command-list {
          grid-template-columns: 1fr;
        }
        .ax-cmd-doc-modal {
          align-items: stretch;
          justify-content: stretch;
          padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px)
            env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
        }
        .ax-cmd-doc-modal .ax-cmd-doc-panel {
          width: 100% !important;
          max-width: none !important;
          max-height: none !important;
          height: 100%;
          min-height: 0;
          border-radius: 0;
          border-left: none;
          border-right: none;
        }
        #recDetailModal .ax-cmd-doc-panel {
          width: 100% !important;
          max-height: none !important;
        }
        input[type="text"],
        input[type="search"],
        input[type="number"],
        input[type="email"],
        input[type="password"],
        input[type="tel"],
        input[type="url"],
        select,
        textarea,
        .lookup-input,
        #activateKeyInput {
          font-size: 16px !important;
        }
        .stat-card-val {
          font-size: 1.45rem;
        }
        .sp-tab {
          min-height: 44px;
          flex: 1 1 auto;
          justify-content: center;
          padding-left: 10px;
          padding-right: 10px;
        }
        .gw-support-tab-bar {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          flex-wrap: nowrap;
        }
        .toast {
          bottom: max(16px, env(safe-area-inset-bottom, 0px));
          right: max(12px, env(safe-area-inset-right, 0px));
          max-width: calc(100vw - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
        }
        .gw-busy {
          bottom: max(54px, calc(16px + env(safe-area-inset-bottom, 0px) + 38px));
          right: max(12px, env(safe-area-inset-right, 0px));
        }
        .loading-hint {
          width: 100%;
          max-width: 100%;
        }
        .sidebar-footer .topbar-btn {
          min-height: 44px;
        }
      }

      @media (max-width: 520px) {
        .stats-row {
          grid-template-columns: 1fr;
        }
        #statsRow {
          grid-template-columns: minmax(0, 1fr) !important;
        }
        .content {
          padding: 12px max(12px, env(safe-area-inset-right, 0px)) 20px
            max(12px, env(safe-area-inset-left, 0px));
          padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
        }
        #panel-support {
          margin: 0 -12px -20px -12px;
          width: calc(100% + 24px);
        }
      }

      @media (max-width: 480px) {
        .refresh-btn .gw-refresh-label {
          display: none;
        }
        .refresh-btn {
          padding: 7px 10px;
        }
      }

      
      .lookup-input-row {
        display: flex;
        gap: 10px;
        margin-bottom: 18px;
      }
      .lookup-input {
        flex: 1;
        padding: 10px 14px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 9px;
        color: var(--text);
        font-family: "Inter", sans-serif;
        font-size: 0.84rem;
        outline: none;
        transition: border-color 0.2s;
      }
      .lookup-input:focus {
        border-color: rgba(255, 51, 51, 0.4);
      }
      .lookup-input::placeholder {
        color: var(--text-3);
      }
      .ban-result-card {
        background: var(--surface);
        border: 1px solid var(--border-bright);
        border-radius: 12px;
        overflow: hidden;
      }
      .ban-result-header {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
      }
      .ban-result-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--surface-3);
        flex-shrink: 0;
        overflow: hidden;
      }
      .ban-result-rows {
        padding: 4px 0;
      }
      .ban-result-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        border-bottom: 1px solid var(--border);
        font-size: 0.82rem;
      }
      .ban-result-row:last-child {
        border-bottom: none;
      }
      .ban-result-label {
        color: var(--text-3);
      }
      .ban-result-val {
        font-weight: 600;
        color: var(--text);
      }

      
      .feature-locked {
        position: relative;
        user-select: none;
      }
      .lock-overlay {
        display: none;
      }
      .lock-overlay.is-locked,
      .feature-locked .lock-overlay.is-locked {
        position: absolute;
        inset: 0;
        z-index: 10;
        background: rgba(12, 8, 8, 0.82);
        backdrop-filter: blur(4px);
        border-radius: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: default;
      }
      .lock-overlay svg {
        width: 28px;
        height: 28px;
        stroke: var(--text-3);
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .lock-overlay-text {
        font-size: 0.82rem;
        color: var(--text-3);
        text-align: center;
        line-height: 1.6;
      }
      .lock-overlay-text a {
        color: var(--accent);
        text-decoration: none;
      }
      .lock-overlay-text a:hover {
        text-decoration: underline;
      }
      .lock-overlay-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        margin-top: 10px;
      }
      .lock-overlay-cta .lock-or {
        font-size: 0.72rem;
        color: var(--text-3);
        margin: 4px 0 2px;
      }

      
      .webhook-event-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        border-radius: 8px;
        cursor: pointer;
        border: 1px solid var(--border);
        background: var(--surface-2);
        transition: all 0.15s;
        margin-bottom: 5px;
      }
      .webhook-event-row:last-child {
        margin-bottom: 0;
      }
      .webhook-event-row:hover {
        border-color: var(--border-bright);
      }
      .webhook-event-row.active {
        border-color: rgba(255, 51, 51, 0.4);
        background: var(--accent-dim);
      }
      .webhook-event-label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text);
      }
      .webhook-event-sub {
        font-size: 0.69rem;
        color: var(--text-3);
        margin-top: 2px;
      }
      .webhook-toggle {
        width: 34px;
        height: 18px;
        border-radius: 9px;
        background: var(--surface-3);
        position: relative;
        flex-shrink: 0;
        transition: background 0.2s;
      }
      .webhook-toggle.on {
        background: var(--accent);
      }
      .webhook-toggle::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #fff;
        transition: transform 0.2s;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
      }
      .webhook-toggle.on::after {
        transform: translateX(16px);
      }
      .dc-message {
        background: #313338;
        border-radius: 8px;
        padding: 14px 16px;
        font-size: 0.875rem;
      }
      .dc-msg-row {
        display: flex;
        gap: 12px;
        align-items: flex-start;
      }
      .dc-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        flex-shrink: 0;
        object-fit: cover;
      }
      .dc-username {
        font-size: 0.95rem;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 2px;
      }
      .dc-bot-tag {
        font-size: 0.58rem;
        font-weight: 800;
        background: #5865f2;
        color: #fff;
        padding: 1px 4px;
        border-radius: 3px;
        letter-spacing: 0.02em;
      }
      .dc-timestamp {
        font-size: 0.68rem;
        color: #949ba4;
      }
      .dc-embed {
        background: #2b2d31;
        border-left: 4px solid #ff3333;
        border-radius: 0 4px 4px 0;
        padding: 12px 14px;
        margin-top: 6px;
        max-width: 100%;
      }
      .dc-embed-author {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 6px;
      }
      .dc-embed-author-icon {
        width: 16px;
        height: 16px;
        border-radius: 50%;
      }
      .dc-embed-author-name {
        font-size: 0.75rem;
        font-weight: 600;
        color: #dbdee1;
      }
      .dc-embed-title {
        font-size: 0.92rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
      }
      .dc-embed-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 6px;
      }
      .dc-embed-field-name {
        font-size: 0.68rem;
        font-weight: 700;
        color: #dbdee1;
        margin-bottom: 2px;
        letter-spacing: 0.03em;
      }
      .dc-embed-field-val {
        font-size: 0.8rem;
        color: #b5bac1;
      }
      .dc-embed-footer {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }
      .dc-embed-footer-text {
        font-size: 0.68rem;
        color: #949ba4;
      }

      
      .gw-tab-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        border-bottom: 1px solid var(--border);
        margin-bottom: 20px;
      }
      .gw-tab-bar--controls {
        flex-shrink: 0;
      }

      
      .gw-tab-btn {
        padding: 8px 16px;
        background: none;
        border: none;
        border-bottom: 2px solid transparent;
        color: var(--text-2);
        font-family: "Inter", sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.15s;
        margin-bottom: -1px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
      }
      .gw-tab-btn:hover {
        color: var(--text);
      }
      .gw-tab-active {
        color: var(--accent);
        border-bottom-color: var(--accent);
      }
      .ax-hero-stats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 18px;
      }
      .ax-hero-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px 18px;
        min-height: 96px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: border-color 0.2s;
      }
      .ax-hero-card:hover {
        border-color: var(--border-bright);
      }
      .ax-hero-label {
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-3);
        margin-bottom: 9px;
      }
      .ax-hero-value {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.7rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        color: var(--text);
        line-height: 1;
      }
      .ax-hero-sub {
        font-size: 0.72rem;
        color: var(--text-3);
        margin-top: 6px;
      }
      .ax-shell {
        display: grid;
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 18px;
        align-items: stretch;
        width: 100%;
      }
      .ax-shell-sidebar {
        display: flex;
        flex-direction: column;
        gap: 18px;
        height: 100%;
      }
      .ax-command-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 18px;
      }
      .ax-mini-panel {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
      }
      .ax-mini-body {
        padding: 16px 18px;
      }
      .ax-command-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }
      .ax-command-pill {
        padding: 8px 10px;
        border-radius: 8px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        color: var(--text-2);
        font-size: 0.76rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
      }
      .ax-command-pill code {
        color: var(--text);
        font-size: 0.75rem;
      }
      .ax-activity-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .ax-activity-item {
        padding: 11px 12px;
        border-radius: 10px;
        background: var(--surface-2);
        border: 1px solid var(--border);
      }
      .ax-echo-status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 9px;
        border-radius: 999px;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        background: rgba(76, 255, 145, 0.08);
        border: 1px solid rgba(76, 255, 145, 0.18);
        color: var(--green);
      }
      .ax-echo-status.offline {
        background: rgba(255, 107, 107, 0.08);
        border-color: rgba(255, 107, 107, 0.18);
        color: var(--red);
      }
      .ax-server-card {
        width: 100%;
        text-align: left;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
      }
      .ax-chip-row {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
      }
      .ax-chip {
        padding: 4px 10px;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: transparent;
        color: var(--text-2);
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.67rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.13s;
      }
      .ax-chip:hover {
        color: var(--text);
        border-color: rgba(255, 51, 51, 0.35);
        background: rgba(255, 51, 51, 0.07);
      }
      .ax-console {
        background: #0a0606;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      .ax-console-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 10px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        background: #110808;
      }
      .ax-console-feed {
        min-height: 360px;
        max-height: 440px;
        overflow-y: auto;
        padding: 14px 16px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-family: "SF Mono", "Fira Code", monospace;
        background: #0a0606;
        flex: 1;
      }
      .ax-log-line {
        padding: 7px 12px 7px 11px;
        border-left: 2px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 0 4px 4px 0;
      }
      .ax-log-line.ok {
        border-left-color: var(--green);
        background: rgba(76, 255, 145, 0.05);
      }
      .ax-log-line.err {
        border-left-color: var(--red);
        background: rgba(255, 107, 107, 0.05);
      }
      .ax-log-head {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 4px;
      }
      .ax-log-kind {
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-3);
      }
      .ax-log-line.ok .ax-log-kind {
        color: var(--green);
      }
      .ax-log-line.err .ax-log-kind {
        color: var(--red);
      }
      .ax-log-time {
        font-size: 0.62rem;
        color: var(--text-3);
        margin-left: auto;
      }
      .ax-log-body {
        font-size: 0.8rem;
        color: var(--text-2);
        line-height: 1.6;
        white-space: pre-wrap;
        word-break: break-word;
      }
      .ax-log-line.ok .ax-log-body {
        color: #a0e8c0;
      }
      .ax-log-line.err .ax-log-body {
        color: #e8a0a0;
      }
      .ax-console-input {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 12px 14px;
        background: #0e0909;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .ax-console-row {
        display: flex;
        gap: 8px;
        align-items: center;
      }
      .ax-console-prompt {
        color: var(--accent);
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.9rem;
        font-weight: 700;
        flex-shrink: 0;
      }
      .ax-console-textbox {
        flex: 1;
        padding: 9px 12px;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: #060303;
        color: var(--text);
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.8rem;
        outline: none;
      }
      .ax-console-textbox:focus {
        border-color: rgba(255, 51, 51, 0.4);
      }
      @media (max-width: 980px) {
        .ax-hero-stats {
          grid-template-columns: 1fr 1fr;
        }
        .ax-shell {
          grid-template-columns: 1fr;
        }
        .ax-command-grid {
          grid-template-columns: 1fr;
        }
        .ax-console-feed {
          height: 360px;
        }
      }

      
      #panel-support.active {
        display: flex !important;
      }
      .gw-support-tab-bar {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0;
        border-bottom: 1px solid var(--border);
        flex-shrink: 0;
        padding: 0 4px;
      }
      .sp-tab {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 11px 16px;
        background: none;
        border: none;
        border-bottom: 2px solid transparent;
        color: var(--text-3);
        font-family: "Inter", sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.15s;
        margin-bottom: -1px;
      }
      .sp-tab:hover {
        color: var(--text-2);
      }
      .sp-tab.sp-tab-active {
        color: var(--accent);
        border-bottom-color: var(--accent);
      }
      .sp-cat-btn {
        width: 100%;
        text-align: left;
        padding: 13px 16px;
        border-radius: 9px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        color: var(--text-2);
        font-family: "Inter", sans-serif;
        cursor: pointer;
        transition: all 0.15s;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .sp-cat-btn:hover {
        background: var(--surface-3);
        color: var(--text);
        border-color: var(--border-bright);
      }
      .sp-cat-btn.selected {
        background: var(--accent-dim);
        color: var(--accent);
        border-color: rgba(255, 51, 51, 0.3);
      }
      .sp-cat-btn.selected svg {
        stroke: var(--accent);
      }
      .sp-step-dot {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--surface-2);
        border: 1px solid var(--border);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        font-weight: 800;
        color: var(--text-3);
        flex-shrink: 0;
      }
      .sp-step-dot.sp-step-active {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
      }
      .sp-step-dot.sp-step-done {
        background: var(--green-dim);
        border-color: rgba(76, 255, 145, 0.3);
        color: var(--green);
      }
      .sp-step-line {
        flex: 1;
        height: 1px;
        background: var(--border);
        margin: 0 6px;
      }
      .sp-step-line.sp-line-done {
        background: var(--accent);
      }
      .sp-tx-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 14px 18px;
        margin-bottom: 8px;
        cursor: pointer;
        transition: border-color 0.15s;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .sp-tx-card:hover {
        border-color: var(--border-bright);
        background: var(--surface-2);
      }
      
      .sp-msg {
        padding: 6px 0;
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .sp-msg + .sp-msg {
        margin-top: 12px;
      }
      .sp-msg-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 3px;
      }
      .sp-msg-header-left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
      }
      .sp-msg-avatar {
        width: 22px;
        height: 22px;
        border-radius: 999px;
        object-fit: cover;
        border: 1px solid var(--border-bright);
        flex-shrink: 0;
        background: var(--surface-2);
      }
      .sp-msg-sender {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 260px;
      }
      .sp-msg-sender.sp-admin {
        color: var(--accent);
      }
      .sp-msg-time {
        font-size: 0.67rem;
        color: var(--text-3);
      }
      .sp-msg-body {
        font-size: 0.84rem;
        color: var(--text-2);
        line-height: 1.6;
        padding-left: 0;
      }
      .sp-msg-body .sp-mention {
        color: var(--accent);
        font-weight: 700;
      }
      .sp-sys-msg {
        text-align: center;
        font-size: 0.72rem;
        color: var(--text-3);
        padding: 10px 0;
        font-style: italic;
      }

      
      .game-card {
        cursor: pointer;
        transition:
          border-color 0.2s,
          box-shadow 0.2s,
          transform 0.2s;
      }
      .game-card:hover {
        border-color: var(--accent) !important;
        box-shadow:
          0 0 0 1px var(--accent),
          0 0 24px rgba(255, 51, 51, 0.25),
          0 8px 32px rgba(0, 0, 0, 0.4) !important;
        transform: translateY(-2px);
      }
      .game-card:active {
        transform: translateY(0px);
        box-shadow:
          0 0 0 1px var(--accent),
          0 0 14px rgba(255, 51, 51, 0.2) !important;
      }

      
      @keyframes axCmdRainbowFlow {
        0% {
          background-position: 0% 50%;
        }
        100% {
          background-position: 200% 50%;
        }
      }
      @keyframes mybotCardIn {
        from {
          opacity: 0;
          transform: translateY(18px) scale(0.97);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }
      @keyframes mybotShimmer {
        0% {
          background-position: -400px 0;
        }
        100% {
          background-position: 400px 0;
        }
      }
      @keyframes mybotAurora {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
          opacity: 0.55;
        }
        33% {
          transform: translate(30px, -20px) scale(1.1);
          opacity: 0.7;
        }
        66% {
          transform: translate(-20px, 15px) scale(0.95);
          opacity: 0.45;
        }
      }
      @keyframes mybotOrb2 {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
          opacity: 0.4;
        }
        40% {
          transform: translate(-40px, 20px) scale(1.15);
          opacity: 0.6;
        }
        70% {
          transform: translate(20px, -10px) scale(0.9);
          opacity: 0.35;
        }
      }
      @keyframes mybotDetailIn {
        from {
          opacity: 0;
          transform: translateY(12px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes mybotScanline {
        0% {
          transform: translateY(-100%);
        }
        100% {
          transform: translateY(100%);
        }
      }
      @keyframes mybotStatusPulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(76, 255, 145, 0.6);
        }
        50% {
          box-shadow: 0 0 0 5px rgba(76, 255, 145, 0);
        }
      }
      @keyframes mybotShimmerSweep {
        0% {
          left: -100%;
        }
        100% {
          left: 200%;
        }
      }
      @keyframes mybotSkeletonPulse {
        0%,
        100% {
          opacity: 0.4;
        }
        50% {
          opacity: 0.7;
        }
      }

      
      #panel-mybot {
        width: 100%;
        max-width: 100%;
        min-height: calc(100vh - 86px);
        box-sizing: border-box;
        position: relative;
      }
      #panel-mybot.mybot-panel-unreachable .mybot-layout {
        filter: blur(7px);
        pointer-events: none;
        user-select: none;
      }
      .mybot-unreachable-overlay {
        position: absolute;
        inset: 0;
        z-index: 50;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        background: rgba(12, 8, 8, 0.62);
        backdrop-filter: blur(3px);
      }
      .mybot-unreachable-overlay[hidden] {
        display: none !important;
      }
      .mybot-unreachable-card {
        max-width: 420px;
        padding: 22px 26px;
        border-radius: 14px;
        border: 1px solid rgba(255, 51, 51, 0.35);
        background: rgba(26, 15, 15, 0.96);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.65;
        color: var(--text);
      }
      .mybot-unreachable-support-link {
        color: var(--accent);
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
      }
      .mybot-unreachable-support-link:hover {
        color: #ff6b6b;
      }
      .mybot-layout {
        max-width: none;
        width: 100%;
        margin: 0;
        padding-bottom: 8px;
        box-sizing: border-box;
      }

      
      .mybot-hero {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 28px 28px;
        margin-bottom: 20px;
        background: var(--surface);
        border: 1px solid var(--border-bright);
        border-radius: 18px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
      }
      
      .mybot-hero-orb {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(60px);
      }
      .mybot-hero-orb-1 {
        width: 280px;
        height: 280px;
        top: -80px;
        left: -60px;
        background: radial-gradient(
          circle,
          rgba(88, 101, 242, 0.45) 0%,
          transparent 70%
        );
        animation: mybotAurora 8s ease-in-out infinite;
      }
      .mybot-hero-orb-2 {
        width: 220px;
        height: 220px;
        bottom: -60px;
        right: 80px;
        background: radial-gradient(
          circle,
          rgba(255, 51, 51, 0.3) 0%,
          transparent 70%
        );
        animation: mybotOrb2 10s ease-in-out infinite;
      }
      
      .mybot-hero-scan {
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(88, 101, 242, 0.3),
          transparent
        );
        animation: mybotScanline 4s linear infinite;
        pointer-events: none;
      }
      .mybot-hero-copy {
        position: relative;
        z-index: 1;
      }
      .mybot-hero-copy h2 {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.45rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        color: var(--text);
        margin: 0 0 8px 0;
        text-shadow: 0 0 40px rgba(88, 101, 242, 0.3);
      }
      .mybot-hero-copy p {
        font-size: 0.82rem;
        color: var(--text-2);
        line-height: 1.6;
        margin: 0;
        max-width: 520px;
      }
      .mybot-hero-badges {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        flex-wrap: wrap;
      }
      .mybot-hero-chip {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.67rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        border: 1px solid;
        white-space: nowrap;
      }
      .mybot-hero-chip.online {
        background: var(--green-dim);
        color: var(--green);
        border-color: rgba(76, 255, 145, 0.25);
      }
      .mybot-hero-chip.online::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--green);
        animation: mybotStatusPulse 2s infinite;
      }
      .mybot-hero-chip.info {
        background: rgba(88, 101, 242, 0.12);
        color: #7c87f5;
        border-color: rgba(88, 101, 242, 0.25);
      }

      .mybot-invite-btn {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 22px;
        border-radius: 13px;
        text-decoration: none;
        flex-shrink: 0;
        overflow: hidden;
        background: linear-gradient(160deg, #5865f2 0%, #4752c4 100%);
        color: #fff !important;
        font-family: "Inter", sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow:
          0 4px 20px rgba(88, 101, 242, 0.5),
          0 0 0 1px rgba(0, 0, 0, 0.15) inset;
        transition:
          transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.2s,
          filter 0.2s;
      }
      .mybot-invite-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.18),
          transparent
        );
        transition: left 0.4s ease;
        pointer-events: none;
      }
      .mybot-invite-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow:
          0 10px 32px rgba(88, 101, 242, 0.65),
          0 0 0 1px rgba(255, 255, 255, 0.12) inset;
        filter: brightness(1.06);
      }
      .mybot-invite-btn:hover::after {
        left: 200%;
      }
      .mybot-invite-btn:active {
        transform: translateY(-1px) scale(1);
      }
      .mybot-invite-btn svg {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
      }

      
      .mybot-stats-strip {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
        margin-bottom: 20px;
      }
      .mybot-stat-pill {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .mybot-stat-pill:hover {
        border-color: var(--border-bright);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      }
      .mybot-stat-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }
      .mybot-stat-pill .lbl {
        font-size: 0.64rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-3);
      }
      .mybot-stat-pill .val {
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.4rem;
        font-weight: 900;
        color: var(--text);
        line-height: 1;
        margin-top: 2px;
      }

      
      .mybot-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 14px;
        min-height: 60px;
      }
      .mybot-guild-card {
        position: relative;
        cursor: pointer;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--surface-2);
        min-height: 128px;
        transition:
          border-color 0.25s,
          box-shadow 0.25s,
          transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        animation: mybotCardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }
      .mybot-guild-card:nth-child(1) {
        animation-delay: 0.04s;
      }
      .mybot-guild-card:nth-child(2) {
        animation-delay: 0.08s;
      }
      .mybot-guild-card:nth-child(3) {
        animation-delay: 0.12s;
      }
      .mybot-guild-card:nth-child(4) {
        animation-delay: 0.16s;
      }
      .mybot-guild-card:nth-child(5) {
        animation-delay: 0.2s;
      }
      .mybot-guild-card:nth-child(6) {
        animation-delay: 0.24s;
      }
      .mybot-guild-card:nth-child(7) {
        animation-delay: 0.28s;
      }
      .mybot-guild-card:nth-child(8) {
        animation-delay: 0.32s;
      }
      .mybot-guild-card:hover {
        border-color: rgba(255, 51, 51, 0.6) !important;
        box-shadow:
          0 0 0 1px rgba(255, 51, 51, 0.4),
          0 0 28px rgba(255, 51, 51, 0.18),
          0 12px 32px rgba(0, 0, 0, 0.4) !important;
        transform: translateY(-4px) scale(1.01);
      }
      
      .mybot-guild-card::after {
        content: "";
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.05),
          transparent
        );
        left: -100%;
        pointer-events: none;
        transition: none;
      }
      .mybot-guild-card:hover::after {
        animation: mybotShimmerSweep 0.6s ease forwards;
      }
      .mybot-guild-card.mybot-card-active {
        border-color: rgba(88, 101, 242, 0.7) !important;
        box-shadow:
          0 0 0 1px rgba(88, 101, 242, 0.5),
          0 0 24px rgba(88, 101, 242, 0.22),
          0 8px 24px rgba(0, 0, 0, 0.35) !important;
        transform: translateY(-2px);
      }
      .mybot-card-icon-wrap {
        position: absolute;
        inset: 0;
        pointer-events: none;
        transition: opacity 0.25s;
        mask-image: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 1) 0%,
          rgba(0, 0, 0, 0.25) 65%,
          rgba(0, 0, 0, 0) 100%
        );
        -webkit-mask-image: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 1) 0%,
          rgba(0, 0, 0, 0.25) 65%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      .mybot-card-icon-wrap .mybot-card-icon-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
        filter: saturate(1.15) brightness(0.92);
        transition: opacity 0.25s;
      }
      .mybot-guild-card:hover .mybot-card-icon-img {
        opacity: 0.62;
      }
      .mybot-card-icon-wrap.no-icon {
        background: linear-gradient(
          145deg,
          rgba(88, 101, 242, 0.4),
          rgba(255, 51, 51, 0.22)
        );
        mask-image: none;
        -webkit-mask-image: none;
      }
      .mybot-card-icon-wrap.no-icon .mybot-card-icon-img {
        display: none !important;
      }
      .mybot-toolbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        width: 100%;
      }
      .mybot-search-input {
        flex: 1;
        min-width: 200px;
        max-width: 420px;
        padding: 10px 14px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 10px;
        color: var(--text);
        font-family: "Inter", sans-serif;
        font-size: 0.82rem;
        outline: none;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .mybot-search-input:focus {
        border-color: rgba(88, 101, 242, 0.45);
        box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.12);
      }
      .mini-btn-danger {
        background: var(--red-dim);
        color: var(--red);
        border: 1px solid rgba(255, 107, 107, 0.35);
      }
      .mini-btn-danger:hover {
        background: rgba(255, 107, 107, 0.28);
        color: #fff;
      }
      a.mini-btn-ghost {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
      }
      a.mini-btn-primary.keys-add-new-btn {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
      }
      a.mini-btn-ghost.keys-overview-purchase-btn {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
      }
      #activateKeyCard.activate-key-card--flash {
        animation: gwActivateKeyBarFlash 0.42s ease-in-out 3;
      }
      @keyframes gwActivateKeyBarFlash {
        0%,
        100% {
          box-shadow: inset 0 0 0 0 transparent;
        }
        50% {
          box-shadow: inset 0 0 0 2px rgba(255, 51, 51, 0.95);
        }
      }
      .mybot-card-body {
        position: relative;
        z-index: 1;
        padding: 12px 14px 14px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 128px;
        background: linear-gradient(
          to top,
          rgba(12, 8, 8, 0.94) 0%,
          rgba(12, 8, 8, 0.6) 50%,
          transparent 100%
        );
      }
      
      .mybot-card-badges {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .mybot-card-status {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        border: 1.5px solid rgba(12, 8, 8, 0.8);
        flex-shrink: 0;
      }
      .mybot-card-status.online {
        background: var(--green);
        animation: mybotStatusPulse 2s infinite;
      }
      .mybot-card-status.offline {
        background: var(--text-3);
      }
      .mybot-card-members {
        font-size: 0.6rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.65);
        background: rgba(0, 0, 0, 0.55);
        border-radius: 4px;
        padding: 2px 6px;
        backdrop-filter: blur(6px);
        white-space: nowrap;
      }
      .mybot-card-name {
        font-family: "Cabinet Grotesk", sans-serif;
        font-weight: 800;
        font-size: 0.96rem;
        color: var(--text);
        line-height: 1.2;
        margin: 0 0 3px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .mybot-card-id {
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.6rem;
        color: var(--text-3);
        letter-spacing: 0.02em;
      }
      .mybot-card-meta {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 6px;
      }
      .mybot-card-profile-tag {
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        padding: 2px 7px;
        border-radius: 4px;
      }
      .mybot-card-profile-tag.strict {
        background: var(--red-dim);
        color: var(--red);
      }
      .mybot-card-profile-tag.balanced {
        background: var(--green-dim);
        color: var(--green);
      }
      .mybot-card-profile-tag.lenient {
        background: var(--blue-dim);
        color: var(--blue);
      }

      
      .mybot-skeleton-card {
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--surface-2);
        min-height: 128px;
        animation: mybotSkeletonPulse 1.4s ease-in-out infinite;
      }
      .mybot-skeleton-card:nth-child(2) {
        animation-delay: 0.15s;
      }
      .mybot-skeleton-card:nth-child(3) {
        animation-delay: 0.3s;
      }
      .mybot-skeleton-card:nth-child(4) {
        animation-delay: 0.45s;
      }

      
      .mybot-detail-card {
        margin-top: 20px;
        padding: 22px 26px;
        border-radius: 16px;
        border: 1px solid var(--border-bright);
        background: var(--surface);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
        animation: mybotDetailIn 0.28s cubic-bezier(0.34, 1.2, 0.64, 1) both;
      }
      .mybot-detail-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 20px;
        flex-wrap: wrap;
      }
      .mybot-detail-title-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .mybot-detail-guild-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        object-fit: cover;
        background: var(--surface-2);
        border: 1px solid var(--border-bright);
        flex-shrink: 0;
      }
      .mybot-detail-title {
        font-family: "Cabinet Grotesk", sans-serif;
        font-weight: 900;
        font-size: 1.08rem;
        color: var(--text);
      }
      .mybot-detail-id-sub {
        font-family: "SF Mono", "Fira Code", monospace;
        font-size: 0.65rem;
        color: var(--text-3);
        margin-top: 2px;
      }
      .mybot-back-btn {
        padding: 8px 14px;
        border-radius: 8px;
        border: 1px solid var(--border-bright);
        background: var(--surface-2);
        color: var(--text-2);
        font-size: 0.78rem;
        font-weight: 600;
        cursor: pointer;
        font-family: "Inter", sans-serif;
        transition: all 0.15s;
      }
      .mybot-back-btn:hover {
        border-color: var(--accent);
        color: var(--text);
      }
      .mybot-form-section-label {
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-3);
        padding: 0 0 10px 0;
        border-bottom: 1px solid var(--border);
        margin-bottom: 14px;
      }
      .mybot-form-grid {
        display: grid;
        grid-template-columns: 150px 1fr;
        gap: 12px 18px;
        font-size: 0.8rem;
        align-items: start;
      }
      @media (max-width: 640px) {
        .mybot-form-grid {
          grid-template-columns: 1fr;
        }
      }
      .mybot-form-label {
        color: var(--text-2);
        font-weight: 500;
        padding-top: 9px;
        font-size: 0.8rem;
      }
      .mybot-form-hint {
        font-size: 0.68rem;
        color: var(--text-3);
        margin-top: 4px;
        line-height: 1.4;
      }
      .mybot-form-input {
        width: 100%;
        padding: 9px 12px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 9px;
        color: var(--text);
        font-family: monospace;
        font-size: 0.78rem;
        outline: none;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .mybot-form-input:focus {
        border-color: rgba(88, 101, 242, 0.5);
        box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
      }
      .mybot-form-input::placeholder {
        color: var(--text-3);
      }
      .mybot-form-select {
        padding: 9px 12px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 9px;
        color: var(--text);
        font-family: "Inter", sans-serif;
        font-size: 0.8rem;
        max-width: 240px;
        outline: none;
        transition: border-color 0.2s;
        cursor: pointer;
      }
      .mybot-form-select:focus {
        border-color: rgba(88, 101, 242, 0.5);
      }
      .mybot-staff-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
      }
      .mybot-staff-empty {
        font-size: 0.78rem;
        color: var(--text-3);
        padding: 10px 12px;
        border: 1px dashed var(--border);
        border-radius: 10px;
      }
      .mybot-staff-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 10px;
      }
      .mybot-staff-id {
        font-family: ui-monospace, monospace;
        font-size: 0.78rem;
        color: var(--text);
        flex: 1;
        min-width: 0;
        word-break: break-all;
      }
      .mybot-staff-rank {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-2);
        padding: 4px 10px;
        border-radius: 999px;
        background: var(--surface);
        border: 1px solid var(--border);
      }
      .mybot-add-staff-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .mybot-add-staff-icon {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
      }
      .mybot-modal {
        position: fixed;
        inset: 0;
        z-index: 8000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
      }
      .mybot-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
      }
      .mybot-modal-dialog {
        position: relative;
        width: min(420px, 100%);
        max-height: min(88vh, 520px);
        overflow: auto;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 20px 20px 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
      }
      .mybot-modal-title {
        margin: 0 0 6px;
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--text);
      }
      .mybot-modal-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
        justify-content: flex-end;
      }
      .mybot-empty {
        text-align: center;
        padding: 48px 20px;
        border: 1px dashed var(--border);
        border-radius: 16px;
        color: var(--text-3);
      }
      .mybot-empty strong {
        color: var(--text);
        display: block;
        margin-bottom: 8px;
      }

      
      .ax-role-btn.ax-role-active {
        border-color: rgba(255, 51, 51, 0.4) !important;
        background: var(--accent-dim) !important;
        color: var(--accent) !important;
      }
      .ax-staff-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 18px;
        border-bottom: 1px solid var(--border);
        transition: background 0.1s;
      }
      .ax-staff-row:last-child {
        border-bottom: none;
      }
      .ax-staff-row:hover {
        background: var(--surface-2);
      }

      .ax-section-control {
        display: flex;
      }
      .gw-tab-btn.ax-tab-adminx-off {
        opacity: 0.48;
        color: var(--text-3);
      }
      .gw-tab-btn.ax-tab-adminx-off.gw-tab-active {
        opacity: 0.58;
      }
      .ax-control-tab-panels {
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      #axPanelStaff,
      #axPanelActivity {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
      }
      #axPanelStaff {
        position: relative;
      }
      #axStaffPlanLock {
        display: none;
        position: absolute;
        inset: 0;
        z-index: 30;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 28px 20px;
        text-align: center;
        background: rgba(12, 8, 8, 0.9);
        backdrop-filter: blur(4px);
        border-radius: 0;
      }
      #axStaffPlanLock svg {
        width: 40px;
        height: 40px;
        stroke: var(--amber);
        fill: none;
        stroke-width: 2;
        margin-bottom: 14px;
      }
      #axPanelCommands {
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
        display: none;
        flex-direction: column;
      }

      
      .ax-cmd-viewer-intro {
        font-size: 0.78rem;
        color: var(--text-2);
        line-height: 1.55;
        margin: 0 0 16px;
        max-width: 720px;
      }
      .ax-cmd-toolbar {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        margin-bottom: 16px;
        padding: 12px 14px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
      }
      .ax-cmd-toolbar input[type="search"] {
        flex: 1;
        min-width: 200px;
        padding: 8px 12px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 8px;
        color: var(--text);
        font-size: 0.82rem;
        outline: none;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .ax-cmd-toolbar input[type="search"]:focus {
        border-color: rgba(255, 51, 51, 0.35);
      }
      .ax-cmd-toolbar select {
        padding: 8px 12px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 8px;
        color: var(--text);
        font-size: 0.78rem;
        cursor: pointer;
        outline: none;
      }
      
      .ax-cmd-viewer-intro,
      .ax-cmd-toolbar {
        flex-shrink: 0;
      }
      .ax-cmd-grid-scroll {
        flex: 1 1 auto;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: var(--surface-2);
        box-sizing: border-box;
      }
      .ax-cmd-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 12px;
      }
      .ax-cmd-card {
        position: relative;
        border-radius: 12px;
        border: 1px solid var(--border);
        border-left: 3px solid var(--ax-cmd-accent, var(--border));
        background: var(--surface);
        padding: 14px 14px 12px 15px;
        transition:
          border-color 0.2s,
          border-left-color 0.2s,
          background 0.15s,
          box-shadow 0.2s;
        overflow: hidden;
      }
      .ax-cmd-card:hover {
        border-color: var(--border-bright);
        border-left-color: var(--ax-cmd-accent, var(--accent));
        box-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
      }
      .ax-cmd-card-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
      }
      .ax-cmd-card-name {
        font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
        font-size: 0.92rem;
        font-weight: 800;
        color: var(--text);
        letter-spacing: -0.02em;
      }
      .ax-cmd-card-rank {
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        padding: 3px 8px;
        border-radius: 6px;
        flex-shrink: 0;
        border: 1px solid var(--ax-cmd-accent, var(--border));
        color: var(--ax-cmd-accent, var(--text-2));
        background: color-mix(
          in srgb,
          var(--ax-cmd-accent, var(--surface-2)) 16%,
          var(--surface-2)
        );
      }
      @supports not (background: color-mix(in srgb, red 10%, blue)) {
        .ax-cmd-card-rank {
          background: var(--surface-2);
        }
      }
      .ax-cmd-card-cat {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--accent);
        background: var(--ax-cmd-cat-bg, none);
        background-size: 220% 100%;
        animation: var(--ax-cmd-cat-anim, none);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: var(--ax-cmd-cat-fill, currentColor);
        margin-bottom: 8px;
      }
      .ax-cmd-card-blurb {
        font-size: 0.78rem;
        color: var(--text-2);
        line-height: 1.45;
        margin: 0 0 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.35em;
      }
      .ax-cmd-card-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-top: auto;
      }
      .ax-cmd-viewmore {
        font-size: 0.74rem;
        font-weight: 700;
        padding: 6px 14px;
        border-radius: 8px;
        border: 1px solid var(--border-bright);
        background: var(--surface);
        color: var(--text);
        cursor: pointer;
        font-family: "Inter", sans-serif;
        transition:
          background 0.15s,
          border-color 0.15s,
          color 0.15s;
      }
      .ax-cmd-viewmore:hover {
        background: var(--surface-2);
        border-color: var(--border-bright);
        color: var(--text);
      }
      .ax-cmd-card.ax-cmd-card--disabled {
        opacity: 0.42;
        filter: grayscale(1);
        background: var(--surface);
        border-color: var(--border);
        box-shadow: none !important;
        --ax-cmd-accent: var(--text-3) !important;
        --ax-cmd-cat: var(--text-3) !important;
        --ax-cmd-cat-bg: none !important;
        --ax-cmd-cat-anim: none !important;
        --ax-cmd-cat-fill: currentColor !important;
      }
      .ax-cmd-card.ax-cmd-card--disabled .ax-cmd-card-name,
      .ax-cmd-card.ax-cmd-card--disabled .ax-cmd-card-blurb,
      .ax-cmd-card.ax-cmd-card--disabled .ax-cmd-card-cat,
      .ax-cmd-card.ax-cmd-card--disabled .ax-cmd-card-foot span,
      .ax-cmd-card.ax-cmd-card--disabled .ax-cmd-card-rank {
        color: var(--text-3) !important;
      }
      .ax-cmd-card.ax-cmd-card--disabled .ax-cmd-card-rank {
        border-color: var(--border) !important;
      }
      .ax-cmd-card.ax-cmd-card--disabled .ax-cmd-viewmore {
        opacity: 0.7;
        cursor: not-allowed;
        pointer-events: none;
      }
      .ax-cmd-doc-modal {
        position: fixed;
        inset: 0;
        z-index: 12050;
        display: none;
        align-items: center;
        justify-content: center;
        padding: max(12px, 2vh);
        box-sizing: border-box;
      }
      .ax-cmd-doc-modal.ax-cmd-doc-modal--open {
        display: flex;
      }
      .ax-cmd-doc-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(8, 6, 10, 0.65);
        backdrop-filter: blur(6px);
      }
      .ax-cmd-doc-panel {
        position: relative;
        z-index: 1;
        width: min(520px, 100%);
        max-height: min(88vh, 640px);
        display: flex;
        flex-direction: column;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
        overflow: hidden;
      }
      .ax-cmd-doc-close {
        appearance: none;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-2);
        width: 34px;
        height: 34px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        cursor: pointer;
        flex-shrink: 0;
        transition:
          background 0.15s,
          border-color 0.15s,
          color 0.15s,
          transform 0.12s;
      }
      .ax-cmd-doc-close:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.14);
        color: var(--text);
      }
      .ax-cmd-doc-close:active {
        transform: translateY(1px);
      }
      .ax-cmd-doc-panel::before {
        display: none;
      }
      .ax-cmd-doc-hd {
        padding: 18px 20px 14px;
        border-bottom: 1px solid var(--border);
        flex-shrink: 0;
      }
      .ax-cmd-doc-hd h3 {
        margin: 0;
        font-family: "Cabinet Grotesk", sans-serif;
        font-size: 1.15rem;
        font-weight: 900;
        color: var(--text);
        background: var(--ax-cmd-title-bg, none);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: var(--ax-cmd-title-fill, currentColor);
        letter-spacing: -0.02em;
      }
      .ax-cmd-doc-meta {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
      }
      .ax-cmd-doc-scroll {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        padding: 16px 20px 20px;
      }
      .ax-cmd-doc-row {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 6px;
      }
      .ax-cmd-doc-label {
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-3);
        margin: 0;
      }
      .ax-cmd-doc-copy {
        appearance: none;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-2);
        border-radius: 8px;
        padding: 7px 10px;
        font-size: 0.72rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.15s;
        display: inline-flex;
        gap: 8px;
        align-items: center;
        user-select: none;
      }
      .ax-cmd-doc-copy:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.14);
        color: var(--text);
      }
      .ax-cmd-doc-copy:active {
        transform: translateY(1px);
      }
      .ax-cmd-doc-block {
        font-family: "SF Mono", "Fira Code", ui-monospace, monospace;
        font-size: 0.88rem;
        line-height: 1.6;
        color: var(--text);
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        margin-bottom: 16px;
        word-break: break-word;
        white-space: pre-wrap;
      }
      .ax-cmd-doc-desc {
        font-size: 0.88rem;
        color: var(--text-2);
        line-height: 1.7;
        margin: 0;
        white-space: pre-wrap;
      }
      .ax-cmd-doc-note {
        margin-top: 14px;
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: rgba(255, 179, 71, 0.06);
        color: #ffb347;
        font-size: 0.78rem;
        line-height: 1.55;
      }
      .ax-cmd-doc-ft {
        padding: 12px 20px;
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: flex-end;
        background: var(--surface-2);
        flex-shrink: 0;
      }

      
      .gw-rainbow-prank {
        position: fixed;
        inset: 0;
        z-index: 20000;
        pointer-events: none;
        opacity: 0;
        transition: opacity 180ms ease;
        background: linear-gradient(
          120deg,
          rgba(255, 51, 51, 0.35),
          rgba(255, 179, 71, 0.35),
          rgba(100, 200, 100, 0.35),
          rgba(100, 150, 255, 0.35),
          rgba(200, 50, 255, 0.35),
          rgba(255, 51, 51, 0.35)
        );
        background-size: 240% 240%;
        filter: saturate(1.2) contrast(1.05);
        mix-blend-mode: screen;
      }
      .gw-rainbow-prank.on {
        opacity: 1;
        animation: gwRainbowPrankMove 900ms linear infinite;
      }
      @keyframes gwRainbowPrankMove {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
      }

      .gw-user-card {
        overflow: hidden;
      }
      .gw-shortcuts-slot {
        display: grid;
        grid-template-rows: 0fr;
        pointer-events: none;
        transition: grid-template-rows 0.44s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .gw-shortcuts-slot.is-open {
        grid-template-rows: 1fr;
        pointer-events: auto;
      }
      .gw-shortcuts-slot-inner {
        overflow: hidden;
        min-height: 0;
      }
      .gw-shortcuts-footer-nav {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 10px 12px;
        margin: 0 0 2px;
        border: none;
        border-radius: 8px;
        background: transparent;
        color: var(--text-2);
        font-family: inherit;
        font-size: 0.83rem;
        font-weight: 500;
        text-align: left;
        cursor: pointer;
        transition: background 0.15s;
      }
      .gw-shortcuts-footer-nav[aria-hidden="true"] {
        display: none;
      }
      .gw-shortcuts-footer-nav:hover {
        background: var(--surface);
      }
      .gw-shortcuts-footer-nav.active {
        background: var(--surface);
        font-weight: 600;
      }
      .gw-shortcuts-footer-nav svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
        opacity: 0;
        transition: opacity 0.2s ease;
      }
      .gw-shortcuts-slot.is-open .gw-shortcuts-footer-nav svg {
        opacity: 1;
      }
      .gw-shortcuts-footer-nav .gw-shortcuts-type-label {
        opacity: 0;
      }
      .gw-shortcuts-footer-nav.is-label-ready .gw-shortcuts-type-label {
        opacity: 1;
      }
      .gw-shortcuts-footer-nav .gw-sc-letter.is-typed:not(.is-chroma) {
        color: var(--text-2);
      }
      .gw-shortcuts-type-label {
        display: inline-flex;
        flex-wrap: wrap;
        align-items: baseline;
        line-height: 1.2;
        font-weight: 600;
        min-height: 1.15em;
      }
      .gw-shortcuts-topbar-title {
        font-size: inherit;
        font-weight: 700;
      }
      .gw-sc-letter {
        display: inline-block;
        opacity: 0;
        color: var(--text-2);
      }
      .gw-sc-letter.is-typed {
        opacity: 1;
        color: var(--text-2);
      }
      .gw-sc-letter--space {
        width: 0.28em;
      }
      .gw-shortcuts-type-label.is-wave .gw-sc-letter:not(.is-chroma) {
        animation: gwScLetterRedWave 0.36s ease forwards;
      }
      .gw-shortcuts-type-label.is-draining .gw-sc-letter.is-draining-out {
        color: var(--text-2) !important;
        text-shadow: none !important;
        filter: none !important;
        opacity: 0;
        transition:
          opacity 0.12s ease,
          color 0.1s ease,
          filter 0.1s ease,
          text-shadow 0.1s ease;
      }
      @keyframes gwScLetterRedWave {
        0% {
          color: var(--text-2);
          text-shadow: none;
        }
        40% {
          color: #ff3333;
          text-shadow: 0 0 20px rgba(255, 51, 51, 0.55);
        }
        80%,
        100% {
          color: #ff3333;
          text-shadow: 0 0 20px rgba(255, 51, 51, 0.55);
        }
      }
      @keyframes gwScLetterRedWaveRev {
        0% {
          color: #ff3333;
          text-shadow: 0 0 20px rgba(255, 51, 51, 0.55);
        }
        60% {
          color: var(--text-2);
          text-shadow: none;
        }
        100% {
          color: var(--text-2);
          text-shadow: none;
          opacity: 1;
        }
      }
      @keyframes gwScRainbowChroma {
        0% {
          color: hsl(var(--gw-sc-hue), 92%, 68%);
          text-shadow: 0 0 10px hsl(var(--gw-sc-hue), 100% 58% / 0.5);
          filter: hue-rotate(0deg) saturate(1.25);
        }
        33% {
          color: hsl(calc(var(--gw-sc-hue) + 120), 92%, 68%);
          text-shadow: 0 0 12px hsl(calc(var(--gw-sc-hue) + 120), 100% 58% / 0.45);
          filter: hue-rotate(120deg) saturate(1.35);
        }
        66% {
          color: hsl(calc(var(--gw-sc-hue) + 240), 92%, 68%);
          text-shadow: 0 0 10px hsl(calc(var(--gw-sc-hue) + 240), 100% 58% / 0.5);
          filter: hue-rotate(240deg) saturate(1.3);
        }
        100% {
          color: hsl(var(--gw-sc-hue), 92%, 68%);
          text-shadow: 0 0 10px hsl(var(--gw-sc-hue), 100% 58% / 0.5);
          filter: hue-rotate(360deg) saturate(1.25);
        }
      }
      .gw-sc-letter.is-chroma {
        opacity: 1;
        animation: gwScRainbowChroma var(--gw-sc-dur, 2s) ease-in-out infinite;
        animation-delay: var(--gw-sc-delay, 0s);
        will-change: color, filter;
      }
      @media (prefers-reduced-motion: reduce) {
        .gw-shortcuts-slot {
          transition-duration: 0.01ms !important;
        }
      }
      .gw-shortcuts-panel {
        max-width: 720px;
        margin: 0 auto;
        padding: 8px 4px 32px;
      }
      .gw-shortcuts-hero {
        margin-bottom: 22px;
      }
      .gw-shortcuts-hero-title {
        margin: 0 0 8px;
        font-size: 1.45rem;
        letter-spacing: -0.02em;
      }
      .gw-shortcuts-hero-sub {
        margin: 0;
        color: var(--text-3);
        font-size: 0.88rem;
        line-height: 1.5;
      }
      .gw-shortcuts-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .gw-shortcuts-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px 18px;
        padding: 14px 16px;
        border-radius: 12px;
        background: var(--surface);
        border: 1px solid var(--border);
        transition: border-color 0.2s;
      }
      .gw-shortcuts-row:hover {
        border-color: var(--border-bright);
      }
      .gw-shortcuts-keys {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px;
        min-width: min(100%, 220px);
      }
      .gw-shortcuts-keys kbd,
      .gw-shortcuts-footer-note kbd {
        display: inline-block;
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 0.72rem;
        font-weight: 800;
        font-family: inherit;
        letter-spacing: 0.03em;
        color: var(--text);
        background: var(--bg);
        border: 1px solid var(--border-bright);
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
        line-height: 1.2;
      }
      .gw-shortcuts-plus {
        color: var(--text-3);
        font-size: 0.75rem;
        font-weight: 700;
        user-select: none;
      }
      .gw-shortcuts-desc {
        flex: 1;
        min-width: 180px;
        font-size: 0.86rem;
        color: var(--text-2);
        line-height: 1.45;
      }
      .gw-shortcuts-footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 18px;
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid var(--border);
      }
      .gw-shortcuts-hide-btn {
        flex-shrink: 0;
      }
      .gw-shortcuts-footer-note {
        font-size: 0.78rem;
        color: var(--text-3);
        line-height: 1.4;
      }
