@charset "UTF-8";
:root {
    --bg: #f6f7fb;
    --surface: #fff;
    --ink: #20263a;
    --muted: #8590a3;
    --line: #e9edf4;
    --primary: #7564e8;
    --primary-hover: #6251d3;
    --sidebar: #151827;
    --green: #28a88a;
    --shadow: 0 8px 34px rgb(28 38 68 / 4%);
    --font-body: 16px;
    --font-content: 15px;
    --font-meta: 14px;
    --font-caption: 12px;
    --font-section: 20px;
    --font-title: 28px;
    --font-display: 32px;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family:
        'Microsoft YaHei UI', 'Microsoft YaHei', 'PingFang SC', 'Noto Sans CJK SC', 'Segoe UI',
        sans-serif;
    font-size: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
    font: inherit;
}
button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}
button,
a,
select,
label {
    touch-action: manipulation;
}
button,
a {
    transition:
        color 0.18s,
        background 0.18s,
        border-color 0.18s,
        box-shadow 0.18s,
        transform 0.18s;
}
button {
    cursor: pointer;
}
button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
a {
    color: inherit;
    text-decoration: none;
}
button:focus-visible,
a:focus-visible {
    outline: 3px solid #beb4ff;
    outline-offset: 3px;
}
input,
select,
textarea {
    width: 100%;
    outline: none;
    color: var(--ink);
    border: 1px solid #e2e6ee;
    border-radius: 9px;
    background: #fff;
    padding: 10px 13px;
    transition:
        border-color 0.18s,
        box-shadow 0.18s;
    min-height: 48px;
    line-height: 1.6;
}
input:focus,
select:focus,
textarea:focus {
    border-color: #a698f6;
    box-shadow: 0 0 0 3px #f0ecff;
}
input::placeholder,
textarea::placeholder {
    color: #a1a9b7;
}
input[readonly] {
    background: #f7f8fb;
    color: #8993a4;
}
textarea {
    resize: vertical;
    min-height: 98px;
    line-height: 1.75;
}
h1,
h2,
h3,
p {
    margin: 0;
}
h1,
h2,
h3,
strong {
    font-weight: 650;
}
.icon {
    display: inline-block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    stroke-width: 1.75;
}
[v-cloak] {
    display: none;
}
.muted {
    color: var(--muted);
}
.small {
    font-size: var(--font-meta);
}
.block {
    display: block;
}
.mono {
    font-variant-numeric: tabular-nums;
    font-size: var(--font-content);
}
code,
pre {
    font-family: 'Cascadia Code', Consolas, monospace;
    font-size: var(--font-meta);
}
.eyebrow {
    display: block;
    margin-bottom: 9px;
    font-size: var(--font-caption);
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #9384ce;
}
.eyebrow.light {
    color: #adaccb;
    letter-spacing: 2px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: var(--font-content);
    font-weight: 550;
    line-height: 1.5;
    white-space: nowrap;
}
.button .icon {
    width: 18px;
    height: 18px;
}
.primary {
    color: white;
    background: var(--primary);
    box-shadow: 0 4px 10px #7564e822;
}
.primary:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-1px);
}
.secondary {
    background: #fff;
    color: #657083;
    border-color: #e2e6ee;
}
.secondary:hover:not(:disabled) {
    color: var(--primary);
    border-color: #c7bff2;
    background: #faf9ff;
}
.dark {
    background: #24263c;
    color: white;
}
.dark:hover {
    background: #3f3a63;
}
.subtle {
    background: transparent;
    color: var(--primary);
}
.subtle:hover {
    background: #f5f1ff;
}
.danger-outline {
    background: #fff;
    color: #d26973;
    border-color: #f0dadd;
}
.danger-outline:hover {
    background: #fff4f4;
}
.danger-button {
    background: #df6670;
    color: white;
}
.small-button {
    min-height: 44px;
    padding: 8px 12px;
    font-size: var(--font-content);
}
.icon-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 0;
    color: #95a0b2;
    background: transparent;
    border-radius: 7px;
}
.icon-button .icon {
    width: 18px;
    height: 18px;
}
.icon-button:hover {
    color: var(--primary);
    background: #f0ecff;
}
.icon-button.danger:hover {
    color: #d85664;
    background: #fff0f2;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8878d1;
    font-size: var(--font-content);
}
.text-link .icon {
    width: 15px;
    height: 15px;
}
.text-link:hover {
    color: #5c4bbb;
}
.boot {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--muted);
}
.spinner {
    width: 17px;
    height: 17px;
    display: inline-block;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
.rotating {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #fff;
}
.brand small {
    display: block;
    margin-top: 1px;
    color: #7e829b;
    font-size: var(--font-caption);
    font-weight: 400;
    letter-spacing: 1px;
}
.brand-symbol {
    width: 37px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #b8aaff;
    flex-shrink: 0;
}
.brand-symbol .icon {
    width: 34px;
    height: 34px;
    stroke-width: 1.7;
}
.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #78cbb2;
    box-shadow: 0 0 0 3px #78cbb215;
}
.login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 49% 51%;
    background: white;
}
.login-story {
    position: relative;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    padding: 54px 10.5%;
    overflow: hidden;
    background: radial-gradient(ellipse at 90% 75%, #302a54 0, transparent 57%), #171a2a;
}
.login-brand {
    position: relative;
    z-index: 2;
}
.login-copy {
    position: relative;
    z-index: 2;
    margin-top: 100px;
}
.login-copy h1 {
    color: #f8f6ff;
    font-size: clamp(42px, 4.7vw, 72px);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 24px 0 22px;
}
.login-copy p {
    color: #9195b1;
    font-size: var(--font-body);
    line-height: 2;
    letter-spacing: 0.5px;
}
.login-copyright {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 130px;
    color: #62677e;
    font-size: var(--font-meta);
    letter-spacing: 1.5px;
}
.orbit-art {
    position: absolute;
    width: 380px;
    height: 380px;
    right: -83px;
    bottom: 80px;
    transform: rotate(-15deg);
    opacity: 0.95;
}
.orbit {
    position: absolute;
    border: 1px solid #655b9340;
    border-radius: 50%;
}
.orbit-one {
    inset: 0;
}
.orbit-two {
    inset: 50px;
}
.art-cube {
    position: absolute;
    inset: 115px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background: linear-gradient(135deg, #393653, #232238);
    border: 1px solid #72629d70;
    box-shadow:
        20px 22px 80px #05040f80,
        inset 1px 1px 3px #b9a1ff18;
    transform: rotate(30deg);
}
.art-cube .icon {
    width: 74px;
    height: 74px;
    color: #b7a0ff;
    stroke-width: 1;
}
.orbit-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    background: #8371c2;
    border: 4px solid #373149;
    border-radius: 50%;
    box-sizing: content-box;
}
.dot-one {
    left: 10px;
    top: 100px;
}
.dot-two {
    bottom: 53px;
    right: 83px;
    width: 7px;
    height: 7px;
    background: #bc9670;
}
.art-label {
    position: absolute;
    bottom: 34px;
    left: -12px;
    padding: 10px 13px;
    color: #9b98ad;
    font-size: var(--font-caption);
    letter-spacing: 1.5px;
    background: #2b293d;
    border: 1px solid #66587e40;
    border-radius: 5px;
    transform: rotate(15deg);
}
.art-label .status-dot {
    margin-right: 6px;
    width: 4px;
    height: 4px;
}
.login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 70px 40px;
}
.login-form {
    width: min(420px, 100%);
}
.login-form .eyebrow {
    font-size: var(--font-caption);
    margin-bottom: 14px;
}
.login-form h2 {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 9px;
}
.login-form > .muted {
    margin-bottom: 37px;
    font-size: var(--font-body);
}
.login-form .field {
    margin-bottom: 21px;
}
.login-form .field > span {
    font-size: var(--font-body);
    margin-bottom: 10px;
}
.login-form input {
    height: 52px;
    font-size: var(--font-body);
    padding: 12px 14px;
}
.password-input {
    position: relative;
}
.password-input input {
    padding-right: 54px;
}
.password-input .icon-button {
    position: absolute;
    top: 4px;
    right: 4px;
}
.login-submit {
    width: 100%;
    height: 52px;
    margin-top: 9px;
    justify-content: space-between;
    padding: 0 18px;
}
.login-hint {
    display: flex;
    gap: 8px;
    color: #a1a7b3;
    font-size: var(--font-meta);
    margin-top: 23px;
    line-height: 1.8;
}
.login-hint .icon {
    width: 14px;
    height: 14px;
    margin-top: 2px;
}
.login-foot {
    position: absolute;
    bottom: 26px;
    color: #afb4c0;
    font-size: var(--font-caption);
    letter-spacing: 1.7px;
}
.sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 30;
    width: 264px;
    background: var(--sidebar);
    color: #9295ae;
    padding: 28px 18px 17px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #36364a transparent;
}
.sidebar .brand {
    padding: 0 7px;
}
.workspace-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 28px 8px 15px;
    font-size: var(--font-meta);
    color: #b4b7c8;
}
.pill-label {
    margin-left: auto;
    font-size: var(--font-caption);
    letter-spacing: 0.4px;
    color: #696d85;
}
.nav-group {
    padding: 20px 14px 9px;
    color: #878ca4;
    font-size: var(--font-meta);
    letter-spacing: 2px;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 13px;
    position: relative;
    padding: 12px 14px;
    margin: 3px 0;
    border-radius: 8px;
    color: #9297af;
    font-size: var(--font-body);
    min-height: 48px;
}
.nav-item .icon {
    width: 20px;
    height: 20px;
    color: #767d96;
    stroke-width: 1.5;
}
.nav-item:hover {
    background: #202336;
    color: #d4d3e7;
}
.nav-item.active {
    color: #d2caff;
    background: #302b4b;
}
.nav-item.active .icon {
    color: #aa99f1;
}
.nav-active-dot {
    margin-left: auto;
    width: 4px;
    height: 4px;
    background: #a08bfa;
    border-radius: 50%;
}
.sidebar-bottom {
    margin-top: auto;
    padding-top: 36px;
}
.sidebar-note {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 18px 13px;
    margin: 0 2px 17px;
    border-radius: 10px;
    background: linear-gradient(135deg, #252438, #202333);
    color: #8d8aa8;
    font-size: var(--font-meta);
    line-height: 1.9;
}
.sidebar-note > .icon {
    width: 24px;
    height: 24px;
    color: #9e8adb;
}
.sidebar-note strong {
    color: #b9b3d0;
    font-weight: 400;
}
.sidebar-docs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 13px 2px;
    font-size: var(--font-content);
    border-top: 1px solid #25293a;
    color: #767d97;
}
.sidebar-docs .icon {
    width: 15px;
    height: 15px;
}
.sidebar-docs .icon:last-child {
    margin-left: auto;
}
.main-shell {
    margin-left: 264px;
    min-height: 100vh;
}
.topbar {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 37px;
    background: #ffffffd9;
    border-bottom: 1px solid #edf0f5;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: var(--font-content);
    color: #98a1b0;
}
.breadcrumbs strong {
    font-weight: 500;
    color: #50596d;
}
.breadcrumb-slash {
    color: #d3d7e0;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 11px;
}
.today {
    font-size: var(--font-meta);
    color: #9ca5b4;
}
.topbar-divider {
    width: 1px;
    height: 22px;
    margin: 0 8px;
    background: #e9ecf2;
}
.avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #9480cb;
    background: #eee9f9;
    font-size: var(--font-body);
    font-weight: 700;
    border-radius: 11px;
    flex-shrink: 0;
}
.user-name strong {
    display: block;
    font-size: var(--font-content);
    font-weight: 550;
}
.user-name small {
    display: block;
    font-size: var(--font-meta);
    color: #a2aaba;
    margin-top: -1px;
}
.logout {
    margin-left: 5px;
}
.content {
    padding: 32px 37px 0;
    max-width: 1780px;
    margin: auto;
}
.page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 0 0 25px;
    flex-wrap: wrap;
}
.page-heading .eyebrow {
    margin-bottom: 5px;
    font-size: var(--font-caption);
    letter-spacing: 2px;
    color: #a5a0b8;
}
.page-heading h1 {
    font-size: var(--font-display);
    line-height: 1.5;
    letter-spacing: 0.4px;
}
.page-heading p {
    margin-top: 5px;
    color: #929cad;
    font-size: var(--font-content);
}
.heading-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
.welcome-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 248px;
    overflow: hidden;
    padding: 28px 35px;
    background: linear-gradient(112deg, #f0eafb 0%, #f0eefa 53%, #e7eafa 100%);
    border: 1px solid #e9e3f4;
    border-radius: 14px;
}
.welcome-card > div:first-child {
    position: relative;
    z-index: 2;
    max-width: min(620px, 78%);
}
.welcome-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9384ad;
    font-size: var(--font-caption);
    letter-spacing: 1.6px;
    margin-bottom: 13px;
}
.welcome-kicker .status-dot {
    width: 5px;
    height: 5px;
    background: #a28bc7;
    box-shadow: none;
}
.welcome-card h2 {
    font-size: var(--font-title);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #413750;
}
.welcome-card p {
    margin: 9px 0 21px;
    font-size: var(--font-content);
    color: #9a8da9;
}
.welcome-card .button {
    min-height: 44px;
    padding: 8px 15px;
    font-size: var(--font-content);
}
.welcome-card .button .icon {
    width: 14px;
    height: 14px;
}
.welcome-graphic {
    position: absolute;
    width: 310px;
    height: 240px;
    right: 30px;
    top: -5px;
}
.graphic-ring {
    position: absolute;
    width: 220px;
    height: 220px;
    top: 4px;
    right: 25px;
    border: 1px solid #d4cce64d;
    border-radius: 50%;
}
.graphic-ring::after {
    content: '';
    position: absolute;
    inset: 27px;
    border: 1px dashed #c5b8dd40;
    border-radius: 50%;
}
.graphic-tile {
    position: absolute;
    display: grid;
    place-items: center;
    width: 106px;
    height: 123px;
    border-radius: 23px;
    box-shadow: 0 13px 30px #68568718;
    border: 1px solid #ffffffb0;
}
.tile-back {
    top: 42px;
    right: 126px;
    transform: rotate(-17deg);
    background: linear-gradient(145deg, #e0d5f0, #e9e1f5);
}
.tile-back .icon {
    width: 54px;
    height: 54px;
    color: #b5a3d0;
    stroke-width: 1;
}
.tile-front {
    top: 67px;
    right: 39px;
    width: 119px;
    height: 139px;
    transform: rotate(13deg);
    background: linear-gradient(145deg, #b6a4dc, #c1b0e6);
    box-shadow:
        5px 13px 35px #8f6fbb28,
        inset 1px 1px 1px #ffffff60;
}
.tile-front .icon {
    width: 66px;
    height: 66px;
    color: #fff;
    stroke-width: 1.15;
}
.graphic-star {
    position: absolute;
    top: 24px;
    right: 63px;
    font-size: 29px;
    color: #c6b5e6;
    transform: rotate(10deg);
}
.graphic-cross {
    position: absolute;
    bottom: 30px;
    left: 39px;
    color: #baaace;
    font-size: 21px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
    margin: 21px 0;
}
.stat-card {
    padding: 22px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: 0;
}
.stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8490a3;
    font-size: var(--font-content);
    gap: 10px;
    flex-wrap: wrap;
}
.stat-icon,
.quick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 10px;
}
.stat-icon .icon {
    width: 17px;
    height: 17px;
}
.indigo {
    color: #9985cf;
    background: #f0ebfa;
}
.teal {
    color: #78b6a3;
    background: #eaf6f1;
}
.amber {
    color: #c4a16c;
    background: #faf3e8;
}
.blue {
    color: #6f9fbf;
    background: #eaf3f9;
}
.stat-card > strong {
    display: block;
    margin-top: 3px;
    font-size: var(--font-display);
    font-weight: 550;
    line-height: 1.6;
    letter-spacing: -0.6px;
    overflow-wrap: anywhere;
}
.stat-card > p {
    margin-top: 5px;
    color: #acb3c0;
    font-size: var(--font-meta);
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px;
}
.panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 23px 25px 19px;
    flex-wrap: wrap;
}
.panel-heading h2 {
    font-size: var(--font-section);
    font-weight: 600;
}
.panel-heading p {
    margin-top: 5px;
    color: #a0a8b7;
    font-size: var(--font-meta);
}
.tiny-label {
    color: #b8becc;
    font-size: var(--font-caption);
    letter-spacing: 1.3px;
}
.quick-actions {
    display: flex;
    flex-direction: column;
    padding: 0 25px 13px;
}
.quick-actions > a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid #f3f4f7;
}
.quick-actions > a:last-child {
    border: 0;
}
.quick-actions > a:hover {
    transform: translateX(3px);
}
.quick-icon {
    width: 38px;
    height: 38px;
}
.quick-icon .icon {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}
.quick-actions strong {
    font-size: var(--font-body);
    font-weight: 550;
}
.quick-actions small {
    display: block;
    margin-top: 2px;
    font-size: var(--font-meta);
    color: #a4adbc;
}
.quick-actions > a > .icon {
    margin-left: auto;
    color: #c9ccda;
    width: 15px;
    height: 15px;
}
.recent-list {
    padding: 0 25px 20px;
}
.recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f3f7;
}
.recent-item:last-child {
    border: 0;
}
.recent-icon {
    display: grid;
    place-items: center;
    width: 33px;
    height: 33px;
    background: #f7f8fc;
    color: #a1a7b9;
    border-radius: 9px;
}
.recent-icon .icon {
    width: 16px;
    height: 16px;
}
.recent-item strong {
    font-size: var(--font-content);
}
.recent-item small {
    display: block;
    color: #aab2bf;
    font-size: var(--font-meta);
    margin-top: 2px;
}
.recent-item .badge {
    margin-left: auto;
}
.developer-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 23px 26px;
    margin-top: 21px;
    border: 1px dashed #dcdde8;
    border-radius: 12px;
    background: #f6f6fa;
    flex-wrap: wrap;
}
.developer-icon {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    background: #eeedf5;
    border-radius: 12px;
    color: #a19bb9;
}
.developer-icon .icon {
    width: 23px;
    height: 23px;
}
.developer-strip h3 {
    font-size: 18px;
    color: #6a6b81;
}
.developer-strip p {
    margin-top: 5px;
    font-size: var(--font-meta);
    color: #a7aabb;
}
.developer-strip .button {
    margin-left: auto;
    font-size: var(--font-content);
    min-height: 44px;
    padding: 7px 12px;
}
.page-footer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 37px;
    padding: 21px 0 23px;
    color: #b1b8c6;
    font-size: var(--font-caption);
    letter-spacing: 0.3px;
    border-top: 1px solid #eaeef4;
    flex-wrap: wrap;
}
.table-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 23px;
    flex-wrap: wrap;
}
.table-toolbar h2 {
    font-size: var(--font-section);
}
.search-box {
    display: flex;
    align-items: center;
    width: min(520px, 58%);
    padding-left: 12px;
    border: 1px solid #e6eaf1;
    border-radius: 8px;
    background: #fafbfe;
    min-height: 52px;
}
.search-box > .icon {
    color: #a7b0c1;
    width: 17px;
    height: 17px;
}
.search-box input {
    background: transparent;
    border: 0;
    padding: 9px 10px;
    font-size: var(--font-body);
    box-shadow: none;
    min-width: 0;
}
.search-box button {
    align-self: stretch;
    padding: 0 16px;
    margin: 4px;
    font-size: var(--font-meta);
    background: #fff;
    color: #8e80c6;
    border: 1px solid #eae6f4;
    border-radius: 5px;
    white-space: nowrap;
    min-height: 44px;
}
.table-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: var(--font-meta);
    color: #a0a9b8;
    flex-wrap: wrap;
}
.table-meta strong {
    color: #726881;
    font-weight: 600;
}
.table-meta select {
    width: auto;
    padding: 7px 26px 7px 10px;
    color: #8590a3;
    font-size: var(--font-body);
    border-color: #e9ecf2;
    min-height: 44px;
}
.table-scroll {
    width: 100%;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-content);
    text-align: left;
    white-space: nowrap;
}
thead {
    background: #fafbfe;
}
th {
    padding: 15px 20px;
    font-size: var(--font-meta);
    font-weight: 500;
    color: #9ba4b4;
    border-top: 1px solid #eff1f6;
    border-bottom: 1px solid #eff1f6;
}
td {
    padding: 18px 20px;
    border-bottom: 1px solid #eff2f7;
    color: #727b8f;
}
td:first-child,
th:first-child {
    padding-left: 23px;
}
td:last-child,
th:last-child {
    padding-right: 23px;
}
tbody tr:last-child td {
    border-bottom: 0;
}
tbody tr:hover {
    background: #fdfcff;
}
.game-cell {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 260px;
}
.game-cell img,
.game-placeholder {
    width: 78px;
    height: 48px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #f1f0f8;
}
.game-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f0edf7, #e9edf8);
    color: #b6aecb;
}
.game-placeholder .icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.4;
}
.game-cell strong {
    display: block;
    max-width: 360px;
    color: #5e6477;
    font-size: var(--font-body);
    font-weight: 550;
    white-space: normal;
    overflow-wrap: anywhere;
}
.game-cell small {
    display: block;
    margin-top: 4px;
    color: #acb4c1;
    font-size: var(--font-meta);
}
.banner-cell img,
.banner-cell .game-placeholder {
    width: 90px;
    height: 43px;
}
.cell-muted {
    color: #a5adbc;
    font-size: var(--font-meta);
}
.cell-text {
    display: block;
    max-width: 220px;
    white-space: normal;
    overflow-wrap: anywhere;
}
.cell-message {
    max-width: 290px;
    white-space: normal;
    font-size: var(--font-meta);
    overflow-wrap: anywhere;
}
.actions-column {
    width: 124px;
}
.row-actions {
    white-space: nowrap;
}
.row-actions .icon-button {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.row-actions .icon {
    width: 18px;
    height: 18px;
}
.row-actions .icon-button + .icon-button {
    margin-left: 7px;
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 5px;
    font-size: var(--font-meta);
    white-space: nowrap;
    line-height: 1.55;
}
.badge.green {
    color: #6bab99;
    background: #edf7f2;
}
.badge.gray {
    color: #9da5b5;
    background: #f2f4f8;
}
.badge.purple {
    color: #a08ac9;
    background: #f3eefa;
}
.badge.amber {
    color: #c1a16f;
    background: #fbf4e8;
}
.badge.red {
    color: #d68b92;
    background: #fcedef;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 23px;
    border-top: 1px solid var(--line);
    color: #acb3c0;
    font-size: var(--font-meta);
    gap: 14px;
    flex-wrap: wrap;
}
.pagination > div {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
}
.pagination-button {
    min-height: 44px;
    padding: 8px 10px;
    border-color: #eaeef4;
    background: white;
    color: #8e97a8;
    font-size: var(--font-meta);
    gap: 2px;
}
.pagination-button .icon {
    width: 18px;
    height: 18px;
}
.page-number {
    padding: 7px 10px;
    color: #9781c4;
    background: #f4f0fa;
    border-radius: 5px;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
}
.table-loading {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: var(--font-body);
    color: #a398bb;
}
.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
    padding: 58px 20px 62px;
    min-height: 270px;
    text-align: center;
}
.empty > .icon {
    width: 30px;
    height: 30px;
    color: #d3cede;
    stroke-width: 1.3;
    margin-bottom: 8px;
}
.empty-icon {
    width: 61px;
    height: 61px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #b4a8ce;
    background: #f6f3fb;
    margin-bottom: 5px;
}
.empty-icon .icon {
    width: 29px;
    height: 29px;
    stroke-width: 1.3;
}
.empty h3 {
    color: #8c879d;
    font-size: 18px;
    font-weight: 500;
}
.empty p {
    color: #b0adbd;
    font-size: var(--font-content);
}
.empty .button {
    margin-top: 6px;
}
.empty.compact {
    min-height: 200px;
    padding: 24px 20px 35px;
    gap: 7px;
}
.empty.compact h3 {
    font-size: var(--font-body);
}
.empty.compact p {
    font-size: var(--font-meta);
}
.inline-tip {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 17px;
    margin-bottom: 20px;
    border: 1px solid #e9e3f3;
    background: #f3f0fa;
    border-radius: 9px;
    color: #9688af;
    font-size: var(--font-content);
}
.inline-tip .icon {
    width: 16px;
    height: 16px;
}
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: var(--font-content);
    margin-bottom: 20px;
}
.alert .icon {
    width: 17px;
    height: 17px;
}
.alert.error {
    color: #bd6773;
    background: #fff3f4;
    border: 1px solid #f7e2e5;
}
.alert strong {
    display: block;
    font-size: var(--font-body);
    margin-bottom: 2px;
}
.alert > .button {
    margin-left: auto;
}
.field {
    display: block;
    min-width: 0;
}
.field > span:first-child,
.field-label {
    display: block;
    margin-bottom: 8px;
    color: #737a8b;
    font-size: var(--font-content);
    font-weight: 550;
}
.field > small,
.media-upload > small {
    display: block;
    color: #a5acbb;
    font-size: var(--font-meta);
    margin-top: 7px;
    font-weight: 400;
    line-height: 1.8;
}
.field input,
.field textarea,
.field select {
    font-size: var(--font-body);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.wide {
    grid-column: 1 / -1;
}
.required {
    color: #d2a0ac;
    font-size: var(--font-body);
    margin-left: 4px;
    font-style: normal;
}
.settings-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
    border-bottom: 1px solid #e4e7ef;
}
.settings-tabs button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px 14px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #8d97a9;
    font-size: var(--font-content);
}
.settings-tabs .icon {
    width: 17px;
    height: 17px;
}
.settings-tabs button.active {
    color: #8a77c5;
    border-bottom-color: #a390d8;
}
.settings-panel > .panel-heading {
    padding: 25px 28px;
    border-bottom: 1px solid var(--line);
}
.settings-panel > .form-grid {
    padding: 27px 28px 30px;
}
.settings-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 28px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.settings-footer > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #a9afbc;
    font-size: var(--font-meta);
    min-width: 0;
}
.settings-footer > span .icon {
    width: 14px;
    height: 14px;
}
.collector-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}
.collection-launch {
    padding: 31px 25px 26px;
    background: linear-gradient(150deg, #fff, #f8f6ff);
    text-align: center;
    min-width: 0;
}
.collection-symbol {
    display: inline-grid;
    place-items: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: #ad9bcf;
    background: #eee9f7;
    border-radius: 16px;
}
.collection-symbol .icon {
    width: 25px;
    height: 25px;
}
.collection-launch h2 {
    font-size: var(--font-section);
}
.collection-launch p {
    font-size: var(--font-content);
    color: #a5a0b4;
    line-height: 1.9;
    margin: 12px 0 21px;
}
.collection-launch .button {
    width: 100%;
    white-space: normal;
}
.collection-launch .text-link {
    margin-top: 18px;
    font-size: var(--font-content);
}
.note-panel {
    padding: 23px;
    margin-top: 20px;
    box-shadow: none;
    min-width: 0;
}
.note-panel h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.note-panel h3 .icon {
    width: 15px;
    height: 15px;
    color: #afa5c3;
}
.note-panel p {
    font-size: var(--font-meta);
    color: #a1a7b7;
    margin-top: 12px;
    line-height: 1.9;
}
.note-panel pre {
    background: #f8f8fc;
    padding: 13px;
    color: #a498b3;
    border-radius: 7px;
    font-size: var(--font-meta);
    line-height: 1.9;
    overflow-x: auto;
    margin-top: 14px;
}
.key-panel {
    display: flex;
    gap: 31px;
    padding: 38px;
    min-width: 0;
}
.key-illustration {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 92px;
    height: 105px;
    border-radius: 25px;
    background: linear-gradient(140deg, #f0ebfa, #ebeefb);
    color: #b1a1cc;
}
.key-illustration .icon {
    width: 42px;
    height: 42px;
    stroke-width: 1.3;
}
.key-panel h2 {
    font-size: var(--font-title);
    color: #53536d;
}
.key-panel p {
    color: #969dad;
    font-size: var(--font-content);
    margin: 12px 0;
}
.key-state {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f9f8fc;
    padding: 15px 17px;
    border-radius: 8px;
    border: 1px solid #efedf5;
    margin: 24px 0 12px;
    flex-wrap: wrap;
}
.key-state code {
    color: #a29aad;
    font-size: var(--font-body);
    letter-spacing: 1px;
    overflow-wrap: anywhere;
}
.key-panel .danger-outline {
    margin-top: 14px;
    font-size: var(--font-meta);
}
.code-panel {
    margin-top: 24px;
}
.code-panel pre {
    margin: 0;
    padding: 24px 28px;
    background: #f9f9fd;
    border-top: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
    color: #8e80a0;
    line-height: 1.9;
    overflow-x: auto;
}
.docs-hero {
    position: relative;
    overflow: hidden;
    padding: 35px;
    border-radius: 13px;
    background: linear-gradient(115deg, #ede7f8, #eeeffa);
    border: 1px solid #e9e4f3;
    margin-bottom: 26px;
}
.docs-hero > :not(.docs-brackets) {
    position: relative;
    z-index: 1;
}
.docs-hero h2 {
    font-size: var(--font-title);
    font-weight: 550;
    color: #615272;
}
.docs-hero p {
    margin: 12px 0 22px;
    max-width: 80%;
    color: #a298af;
    font-size: var(--font-content);
}
.docs-brackets {
    position: absolute;
    right: 50px;
    top: 25px;
    color: #d4c7e6;
    font:
        100px Georgia,
        serif;
    letter-spacing: 20px;
    transform: rotate(-10deg);
}
.docs-layout {
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}
.docs-nav {
    padding: 15px 10px;
    position: sticky;
    top: 22px;
}
.docs-nav a {
    display: block;
    padding: 10px 13px;
    color: #9099ab;
    font-size: var(--font-content);
    border-radius: 6px;
    min-height: 44px;
}
.docs-nav a:hover {
    background: #f5f1fc;
    color: #9782bf;
}
.doc-section {
    padding: 27px 28px;
    margin-bottom: 20px;
    scroll-margin-top: 24px;
}
.doc-section h2 {
    font-size: var(--font-section);
    margin-bottom: 16px;
    color: #61647b;
}
.doc-section p {
    font-size: var(--font-content);
    color: #98a0af;
    line-height: 1.95;
    margin: 12px 0;
    overflow-wrap: anywhere;
}
.doc-section p code {
    color: #b28db8;
    padding: 2px 4px;
    background: #faf4fc;
    border-radius: 4px;
    font-size: var(--font-meta);
}
.inline-code {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7f8fc;
    color: #9284a3;
    padding: 9px 12px;
    border: 1px solid #eceaf2;
    border-radius: 8px;
    overflow-wrap: anywhere;
}
.inline-code .icon-button {
    margin-left: auto;
}
.doc-section pre {
    padding: 19px;
    margin: 15px 0;
    background: #252737;
    color: #c2bace;
    border-radius: 8px;
    font-size: var(--font-content);
    line-height: 1.9;
    overflow-x: auto;
}
.doc-section pre code {
    font-size: var(--font-content);
}
.endpoint {
    padding: 17px 0 20px;
    border-bottom: 1px solid var(--line);
}
.endpoint:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.endpoint-address {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.endpoint-address > code {
    font-size: var(--font-content);
    color: #79748b;
    overflow-wrap: anywhere;
}
.http-method {
    padding: 4px 8px;
    font-size: var(--font-meta);
    font-weight: 650;
    border-radius: 4px;
}
.http-method.get {
    color: #72998d;
    background: #ebf4f0;
}
.http-method.post {
    color: #9880bc;
    background: #f0e9f8;
}
.params-table {
    white-space: normal;
    font-size: var(--font-meta);
    table-layout: fixed;
}
.params-table th {
    background: #fafbfe;
}
.params-table td {
    padding: 11px 13px;
    font-size: var(--font-meta);
    color: #9aa3b2;
    line-height: 1.8;
    overflow-wrap: anywhere;
}
.params-table td:first-child {
    color: #91849b;
    width: 32%;
}
.params-table td code {
    font-size: var(--font-meta);
}
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: #141b2e66;
    backdrop-filter: blur(4px);
}
.modal {
    width: min(900px, 100%);
    max-height: calc(100dvh - 56px);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: white;
    box-shadow: 0 26px 100px #151b3740;
}
.modal-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    gap: 20px;
    padding: 24px 29px 21px;
    border-bottom: 1px solid var(--line);
}
.modal-heading .eyebrow {
    margin-bottom: 4px;
    font-size: var(--font-caption);
}
.modal-heading h2 {
    font-size: 24px;
    color: #555269;
}
.modal form {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.editor-scroll {
    padding: 24px 29px 29px;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.editor-tabs {
    display: flex;
    gap: 24px;
    margin: -7px 0 24px;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
}
.editor-tabs button {
    padding: 11px 1px 13px;
    background: none;
    color: #a5a5b6;
    border: 0;
    border-bottom: 2px solid transparent;
    font-size: var(--font-content);
    min-height: 44px;
    white-space: nowrap;
    flex-shrink: 0;
}
.editor-tabs button.active {
    color: #8e7ab9;
    border-color: #a78ad0;
}
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    gap: 14px;
    padding: 18px 29px;
    border-top: 1px solid var(--line);
    background: #fdfdff;
    border-radius: 0 0 16px 16px;
    flex-wrap: wrap;
}
.modal-footer > div {
    display: flex;
    gap: 9px;
}
.modal-footer > .small {
    font-size: var(--font-meta);
    min-width: 0;
}
.switch-field {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.switch-field > span:first-child {
    margin-bottom: 9px;
    font-size: var(--font-meta);
}
.switch-control {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    min-height: 44px;
}
.switch-control input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    min-height: 0;
}
.switch-track {
    display: inline-block;
    width: 33px;
    height: 19px;
    background: #d8dce5;
    border-radius: 12px;
    position: relative;
    transition: background 0.2s;
}
.switch-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 1px 3px #0001;
    transition: transform 0.2s;
}
.switch-control input:checked + .switch-track {
    background: #a28bcf;
}
.switch-control input:checked + .switch-track::after {
    transform: translateX(14px);
}
.switch-control input:focus-visible + .switch-track {
    outline: 3px solid #e5daf8;
    outline-offset: 2px;
}
.switch-control small {
    font-size: var(--font-meta);
    color: #9ca4b4;
}
.media-upload {
    margin-top: 23px;
    padding-top: 21px;
    border-top: 1px dashed var(--line);
}
.media-upload .button {
    font-size: var(--font-content);
    cursor: pointer;
}
.image-preview {
    display: block;
    margin-top: 16px;
    max-width: 240px;
    max-height: 130px;
    object-fit: contain;
    border-radius: 8px;
    background: #f7f7fc;
}
.upload-zone {
    padding: 28px 18px;
    border: 1px dashed #d5c9e8;
    border-radius: 11px;
    background: #fbf9ff;
    text-align: center;
    margin-top: 26px;
}
.upload-zone > .icon {
    color: #b4a2ce;
    width: 28px;
    height: 28px;
    margin-bottom: 13px;
}
.upload-zone h3 {
    color: #9690a5;
    font-size: 18px;
    font-weight: 500;
}
.upload-zone p {
    color: #b0a9bd;
    font-size: var(--font-meta);
    margin: 7px 0 16px;
}
.upload-zone .button {
    cursor: pointer;
    font-size: var(--font-content);
    min-height: 44px;
}
.file-list {
    margin-top: 17px;
}
.file-list > div {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #f8f9fc;
    padding: 10px 12px;
    border-radius: 7px;
    margin-bottom: 6px;
}
.file-list > div > .icon {
    color: #b0a1c5;
    width: 17px;
    height: 17px;
}
.file-list > div > span {
    font-size: var(--font-meta);
    color: #8a8297;
    overflow-wrap: anywhere;
    min-width: 0;
}
.file-list small {
    display: block;
    font-size: var(--font-meta);
    color: #b1a9bb;
}
.file-list .icon-button {
    margin-left: auto;
}
.editor-scroll > .inline-tip {
    margin: 17px 0 0;
}
.confirmation-backdrop {
    z-index: 110;
}
.confirmation-modal {
    width: min(600px, 100%);
}
.confirmation-modal .modal-heading h2 {
    font-size: 22px;
}
.dialog-content {
    padding: 24px 29px;
    font-size: var(--font-body);
    color: #8f8c9d;
    line-height: 1.9;
    overflow: auto;
}
.recent-job-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
}
.recent-item:has(.recent-job-actions) {
    flex-wrap: wrap;
}
.job-actions .button + .button {
    margin-left: 8px;
}
.modal.job-detail-modal {
    width: min(1040px, 100%);
}
.job-detail-modal .dialog-content {
    min-height: 0;
}
.job-detail-heading,
.job-detail-row > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.job-detail-heading > strong {
    font-size: var(--font-section);
    color: var(--ink);
}
.job-detail-meta,
.job-record-meta,
.job-github-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 20px 0;
}
.job-detail-meta > div,
.job-record-meta > div,
.job-github-fields > div {
    min-width: 0;
}
.job-detail-meta dt,
.job-record-meta dt,
.job-github-fields dt {
    color: #7f8799;
    font-size: var(--font-meta);
}
.job-detail-meta dd,
.job-record-meta dd,
.job-github-fields dd {
    margin: 3px 0 0;
    color: #4f586c;
    font-size: var(--font-content);
    overflow-wrap: anywhere;
}
.job-detail-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}
.job-detail-summary > div {
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f8f9fc;
}
.job-detail-summary span {
    display: block;
    color: #788297;
    font-size: var(--font-meta);
}
.job-detail-summary strong {
    display: block;
    color: var(--ink);
    font-size: 26px;
    overflow-wrap: anywhere;
}
.job-detail-note {
    margin: 12px 0;
    color: #7a8397;
    font-size: var(--font-meta);
}
.job-detail-notice,
.job-overall-error {
    margin: 16px 0;
    padding: 14px 17px;
    border: 1px solid #f0dfb7;
    border-radius: 9px;
    background: #fff9ee;
    color: #926f38;
    overflow-wrap: anywhere;
}
.job-detail-notice {
    font-size: var(--font-meta);
}
.job-overall-error {
    border-color: #f1d3d7;
    background: #fff4f4;
    color: #a95967;
}
.job-overall-error p,
.job-result-message {
    margin-top: 8px;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
.job-overall-error small {
    display: block;
    margin-top: 8px;
    font-size: var(--font-meta);
}
.job-detail-filters,
.job-detail-pagination,
.job-detail-pagination > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.job-detail-search {
    margin-top: 24px;
}
.job-detail-filters {
    margin-top: 16px;
}
.job-detail-filters .selected {
    color: var(--primary-hover);
    border-color: #b8acf0;
    background: #f3efff;
}
.job-detail-row {
    padding: 20px;
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
}
.job-detail-row h3 {
    min-width: 0;
    flex: 1;
    font-size: 18px;
    color: #515970;
    overflow-wrap: anywhere;
}
.job-record-meta {
    margin: 14px 0;
}
.job-record-message {
    margin: 0;
    padding: 12px 14px;
    border-radius: 7px;
    background: #f6f8fb;
    color: #68768b;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
.job-record-message.failure {
    background: #fff7ed;
    color: #966537;
}
.job-detail-pagination {
    justify-content: space-between;
    margin-top: 20px;
    font-size: var(--font-meta);
}
.job-detail-empty,
.job-detail-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 120px;
    padding: 24px 16px;
    color: #778398;
    text-align: center;
    overflow-wrap: anywhere;
}
@media (max-width: 600px) {
    .job-detail-meta,
    .job-record-meta,
    .job-github-fields {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .job-detail-summary {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }
    .job-detail-summary > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }
    .job-detail-row {
        padding: 16px;
    }
    .job-detail-filters .button {
        flex: 1 1 100px;
    }
    .job-detail-modal .modal-footer > div {
        flex-wrap: wrap;
    }
}
.secret-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f7f4fc;
    border: 1px dashed #d9ccea;
    border-radius: 9px;
    padding: 20px;
    margin-top: 20px;
}
.secret-box code {
    color: #9f82b0;
    font-size: var(--font-body);
    word-break: break-all;
}
.secret-box .button {
    align-self: flex-start;
    font-size: var(--font-content);
}
.audit-detail {
    font-size: var(--font-meta);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    color: #998dab;
    margin-top: 17px;
    background: #f9f7fc;
    padding: 14px;
    border-radius: 8px;
}
.toast-stack {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 20px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(620px, calc(100vw - 32px));
    max-height: calc(100dvh - env(safe-area-inset-top) - 40px);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    padding: 2px;
}
.toast {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px 12px 18px;
    background: white;
    border: 1px solid #e5e7ee;
    border-radius: 10px;
    box-shadow: 0 10px 35px #28304b15;
    font-size: var(--font-body);
    color: #7d8496;
    animation: toast-in 0.25s ease-out;
    line-height: 1.65;
    min-height: 68px;
    flex-shrink: 0;
    pointer-events: auto;
}
.toast > span {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}
.toast > .icon {
    width: 22px;
    height: 22px;
    color: #82b6a4;
}
.toast.error > .icon {
    color: #d49099;
}
.toast .icon-button {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.toast .icon-button .icon {
    width: 18px;
    height: 18px;
}
@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-7px);
    }
}
.mobile-toggle,
.mobile-only {
    display: none;
}
.noscript {
    margin: 80px auto;
    text-align: center;
    color: #817391;
}
.captcha-input {
    display: flex;
    gap: 10px;
}
.captcha-input > input {
    min-width: 0;
    flex: 1;
}
.captcha-image {
    flex-shrink: 0;
    min-width: 130px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f5f1fa;
    border: 1px solid #e6ddee;
    border-radius: 8px;
    overflow: hidden;
    color: #aa98c7;
}
.captcha-image img {
    width: 130px;
    height: 50px;
    object-fit: contain;
}
.login-form .field > .small {
    font-size: var(--font-meta);
    margin-top: 8px;
}
.remember-login {
    margin: -3px 0 24px;
}
.remember-login label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    color: #858094;
    font-size: var(--font-content);
    cursor: pointer;
}
.login-form .remember-login input {
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    accent-color: var(--primary);
    min-height: 18px;
    flex-shrink: 0;
}
.remember-login small {
    display: block;
    margin-left: 24px;
    color: #aca6b8;
    font-size: var(--font-meta);
}
.collection-source {
    margin: 0 0 14px;
    text-align: left;
}
.collection-source > span:first-child {
    font-size: var(--font-meta);
}
.collection-source select {
    font-size: var(--font-body);
    padding: 9px 11px;
}
.single-collector {
    margin-top: 23px;
    padding-top: 21px;
    border-top: 1px dashed #e6e0ef;
    text-align: left;
}
.single-collector .field {
    margin-bottom: 12px;
}
.single-collector .field > span:first-child {
    font-size: var(--font-meta);
}
.single-collector .field input {
    padding: 9px 11px;
    font-size: var(--font-body);
}
.single-collector .button {
    font-size: var(--font-content);
}
.download-links-editor {
    margin-bottom: 24px;
}
.links-editor-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    margin-bottom: 19px;
    flex-wrap: wrap;
}
.links-editor-heading h3 {
    font-size: 18px;
    color: #767083;
}
.links-editor-heading p {
    font-size: var(--font-meta);
    color: #aaa1b6;
    margin-top: 5px;
}
.links-empty {
    padding: 28px 17px;
    background: #faf8fd;
    border: 1px dashed #ded5eb;
    border-radius: 9px;
    font-size: var(--font-meta);
    color: #b0a4be;
    text-align: center;
}
.download-link-card {
    background: #fdfcfe;
    border: 1px solid #ede7f4;
    border-radius: 10px;
    padding: 14px 19px 20px;
    margin-top: 12px;
}
.download-link-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
    font-size: var(--font-meta);
    color: #a493b8;
}
.download-link-card .form-grid {
    gap: 16px 18px;
}
.download-link-card .field > span:first-child {
    font-size: var(--font-meta);
}
.download-link-card input {
    padding: 9px 11px;
    font-size: var(--font-body);
}
.existing-files {
    margin-top: 23px;
}
.existing-files h3 {
    font-size: var(--font-meta);
    color: #93859f;
    margin-bottom: 13px;
}
.existing-files > div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 2px;
    border-bottom: 1px solid #f0ecf6;
    font-size: var(--font-meta);
    color: #aa9fb7;
}
.existing-files > div .icon {
    width: 15px;
    height: 15px;
}
.existing-files > div small {
    margin-left: auto;
    font-size: var(--font-meta);
}
.game-selector-input {
    display: flex;
    gap: 10px;
}
.game-selector-input > input {
    min-width: 0;
    flex: 1;
}
.game-selector-input .button {
    flex-shrink: 0;
    font-size: var(--font-body);
}
.game-picker {
    margin-top: 0;
    padding: 19px;
    border: 1px solid #e4dbee;
    border-radius: 11px;
    background: #fbf9fe;
    grid-column: 1 / -1;
    min-width: 0;
}
.game-picker-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}
.game-picker-heading h3 {
    color: #81728f;
    font-size: 18px;
}
.game-picker-heading p {
    color: #a79ab4;
    font-size: var(--font-meta);
    line-height: 1.8;
    margin-top: 5px;
}
.game-picker-search {
    width: 100%;
    margin-bottom: 14px;
    background: #fff;
}
.game-picker-search input {
    min-width: 0;
}
.game-picker-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 110px;
    color: #b0a3bb;
    font-size: var(--font-meta);
    text-align: center;
}
.game-picker-results {
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.game-picker-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 1px;
    border-bottom: 1px solid #ede6f5;
}
.game-picker-item:last-child {
    border-bottom: 0;
}
.game-picker-item > div {
    min-width: 0;
}
.game-picker-item strong {
    display: block;
    overflow-wrap: anywhere;
    color: #81738f;
    font-size: var(--font-body);
    font-weight: 550;
}
.game-picker-item p {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 14px;
    margin-top: 5px;
    color: #b2a5bf;
    font-size: var(--font-meta);
}
.game-picker-item p b {
    color: #9980af;
    font-weight: 600;
}
.game-picker-item .button {
    flex-shrink: 0;
}
.game-picker-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e9e0f2;
    flex-wrap: wrap;
}
.game-picker-pagination > span {
    color: #b1a4bd;
    font-size: var(--font-meta);
}
.game-picker-pagination > div {
    display: flex;
    gap: 5px;
}
.analytics-filter {
    padding: 24px;
}
.analytics-filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 23px;
    flex-wrap: wrap;
}
.analytics-filter-top h2 {
    font-size: var(--font-section);
}
.analytics-filter-top p {
    margin-top: 5px;
    font-size: var(--font-meta);
    color: #a5aaba;
}
.range-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.range-tabs button {
    color: #aaa3b9;
    background: #f9f7fc;
    border: 1px solid #ece6f4;
    border-radius: 6px;
    padding: 6px 11px;
    font-size: var(--font-meta);
    white-space: nowrap;
    min-height: 44px;
}
.range-tabs button.active {
    color: #9a7ebb;
    background: #f0e9f8;
    border-color: #e3d8ef;
}
.analytics-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 17px;
}
.analytics-filter-grid .field > span:first-child {
    font-size: var(--font-meta);
    margin-bottom: 7px;
}
.analytics-filter-grid input,
.analytics-filter-grid select {
    font-size: var(--font-body);
    padding: 9px 11px;
    min-width: 0;
}
.analytics-filter-actions {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 8px;
    grid-column: 2 / -1;
}
.analytics-filter-actions .button {
    min-height: 44px;
    font-size: var(--font-content);
}
.analytics-stats {
    grid-template-columns: repeat(3, 1fr);
}
.segmented-control {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #f6f4f9;
    border-radius: 8px;
    flex-wrap: wrap;
}
.segmented-control button {
    padding: 7px 15px;
    border: 0;
    border-radius: 6px;
    background: none;
    color: #b0a7bd;
    font-size: var(--font-content);
    min-height: 44px;
}
.segmented-control button.active {
    background: white;
    color: #917ca9;
    box-shadow: 0 2px 7px #31234209;
}
.rank-number {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: #f7f7fb;
    color: #aaa7b8;
    border-radius: 6px;
    font-size: var(--font-meta);
}
.rank-number.leading {
    color: #b393be;
    background: #f5edf8;
}
.identity-cell {
    max-width: 200px;
    white-space: normal;
    overflow-wrap: anywhere;
}
.count-value {
    color: #9a85ad;
    font-weight: 600;
}
.analytics-note {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: var(--font-meta);
}
.dialog-input {
    margin-top: 20px;
}
.settings-tabs {
    overflow-x: auto;
    white-space: nowrap;
}
@media (max-width: 1100px) {
    .analytics-filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .analytics-filter-actions {
        grid-column: 1 / -1;
    }
}
@media (max-width: 760px) {
    .analytics-filter {
        padding: 20px;
    }
    .analytics-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 17px 14px;
    }
    .analytics-filter-actions {
        grid-column: auto;
    }
    .analytics-stats {
        gap: 10px;
    }
    .analytics-stats .stat-card {
        padding: 16px;
    }
    .analytics-stats .stat-icon {
        display: none;
    }
    .analytics-stats .stat-card > p {
        font-size: var(--font-meta);
        line-height: 1.8;
    }
}
@media (max-width: 480px) {
    .analytics-filter-top {
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .analytics-filter-grid {
        gap: 16px 12px;
    }
    .analytics-filter-grid input,
    .analytics-filter-grid select {
        padding: 9px 8px;
        font-size: var(--font-body);
    }
    .analytics-filter-actions .button {
        padding: 8px 10px;
        font-size: var(--font-content);
    }
    .analytics-filter-actions .icon {
        width: 13px;
        height: 13px;
    }
    .analytics-stats {
        grid-template-columns: 1fr;
    }
    .analytics-stats .stat-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 14px 18px;
    }
    .analytics-stats .stat-card > p {
        flex-basis: 100%;
        margin-top: -2px;
    }
    .analytics-stats .stat-card > strong {
        font-size: var(--font-display);
    }
    .analytics-stats .stat-top {
        font-size: var(--font-content);
    }
    .download-link-card {
        padding: 12px 15px 18px;
    }
    .download-link-card .form-grid {
        grid-template-columns: 1fr;
    }
    .links-editor-heading {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .links-editor-heading p {
        max-width: 100%;
    }
}
@media (min-width: 1650px) {
    .content {
        padding-top: 40px;
        max-width: 1780px;
    }
    .welcome-card {
        min-height: 250px;
    }
    .welcome-card h2 {
        font-size: var(--font-title);
    }
    .stat-card {
        padding: 22px;
        min-width: 0;
    }
}
@media (max-width: 1200px) {
    .sidebar {
        width: 244px;
        padding-left: 13px;
        padding-right: 13px;
    }
    .main-shell {
        margin-left: 244px;
    }
    .topbar {
        padding: 0 25px;
    }
    .content {
        padding: 28px 25px 0;
        max-width: 1780px;
    }
    .stats-grid {
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stat-card {
        padding: 22px;
        min-width: 0;
    }
    .collector-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 18px;
    }
    .welcome-graphic {
        right: 0;
        opacity: 0.8;
        transform: scale(0.85);
        transform-origin: right center;
    }
    .welcome-card {
        padding-left: 27px;
    }
    .welcome-card h2 {
        font-size: var(--font-title);
    }
    .developer-strip {
        gap: 12px;
        padding: 21px;
        flex-wrap: wrap;
    }
    .developer-strip p {
        max-width: 350px;
    }
    .dashboard-grid {
        gap: 17px;
        grid-template-columns: minmax(0, 1fr);
    }
    .panel-heading {
        padding-left: 21px;
        padding-right: 21px;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .quick-actions,
    .recent-list {
        padding-left: 21px;
        padding-right: 21px;
    }
}
@media (max-width: 980px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .collector-layout {
        grid-template-columns: 1fr;
    }
    .collector-layout > aside {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
        gap: 18px;
        align-items: start;
    }
    .note-panel {
        margin-top: 0;
        min-width: 0;
    }
    .today {
        display: none;
    }
    .topbar-divider {
        display: none;
    }
    .welcome-graphic {
        right: -30px;
        opacity: 0.5;
    }
    .welcome-card h2 {
        font-size: var(--font-title);
    }
    .dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .developer-strip > div {
        max-width: 100%;
    }
    .developer-strip p {
        line-height: 1.8;
    }
    .docs-layout {
        grid-template-columns: 1fr;
    }
    .docs-nav {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        position: static;
    }
    .docs-nav a {
        padding: 8px 12px;
        min-height: 44px;
    }
    .docs-hero h2 {
        font-size: var(--font-title);
    }
    .docs-brackets {
        opacity: 0.4;
    }
    .settings-tabs button {
        padding-left: 16px;
        padding-right: 16px;
    }
    .login-story {
        padding: 46px 9%;
    }
    .login-copy {
        margin-top: 113px;
    }
    .login-copy h1 {
        font-size: 48px;
    }
    .orbit-art {
        right: -157px;
        bottom: 86px;
        opacity: 0.65;
    }
}
@media (max-width: 760px) {
    .sidebar {
        transform: translateX(-100%);
        width: min(280px, calc(100vw - 40px));
        transition: transform 0.2s;
        padding-top: 25px;
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 29;
        border: 0;
        background: #11162d66;
        backdrop-filter: blur(2px);
    }
    .main-shell {
        margin-left: 0;
    }
    .topbar {
        height: 76px;
        padding: 0 20px;
    }
    .mobile-toggle {
        display: inline-flex;
        margin-left: -6px;
    }
    .breadcrumbs {
        gap: 9px;
    }
    .content {
        padding: 26px 20px 0;
        max-width: 1780px;
    }
    .page-heading {
        align-items: flex-start;
        gap: 10px;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .page-heading h1 {
        font-size: var(--font-display);
    }
    .page-heading p {
        font-size: var(--font-content);
        max-width: 300px;
    }
    .heading-actions {
        padding-top: 0;
        flex-wrap: wrap;
    }
    .heading-actions .button {
        font-size: var(--font-content);
        min-height: 44px;
        padding: 8px 11px;
    }
    .heading-actions .button .icon {
        width: 14px;
        height: 14px;
    }
    .heading-actions > .secondary {
        font-size: 0;
        padding: 8px 10px;
        gap: 0;
    }
    .topbar-right {
        gap: 8px;
    }
    .user-name strong {
        max-width: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .welcome-card {
        padding: 26px;
        min-height: 214px;
    }
    .welcome-card h2 {
        font-size: var(--font-title);
    }
    .welcome-graphic {
        right: -30px;
        transform: scale(0.8);
        opacity: 0.55;
    }
    .stats-grid {
        gap: 12px;
        margin: 17px 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stat-card {
        padding: 22px;
        min-width: 0;
    }
    .stat-card > strong {
        font-size: var(--font-display);
        overflow-wrap: anywhere;
    }
    .stat-card > p {
        font-size: var(--font-meta);
    }
    .stat-top {
        font-size: var(--font-content);
        gap: 10px;
        flex-wrap: wrap;
    }
    .developer-strip {
        gap: 11px;
        flex-wrap: wrap;
    }
    .developer-strip > div {
        max-width: 100%;
    }
    .developer-strip p {
        max-width: none;
    }
    .developer-strip .button {
        margin: 0 0 0 52px;
    }
    .table-toolbar {
        padding: 17px;
        gap: 12px;
        flex-wrap: wrap;
    }
    .search-box {
        width: 100%;
        min-height: 52px;
    }
    .table-meta {
        margin-left: auto;
        font-size: var(--font-meta);
        flex-wrap: wrap;
        gap: 12px;
    }
    .table-meta select {
        font-size: var(--font-body);
        min-height: 44px;
    }
    td:first-child,
    th:first-child {
        padding-left: 17px;
    }
    td {
        padding-top: 15px;
        padding-bottom: 15px;
        padding: 18px 20px;
    }
    .pagination {
        padding: 16px 17px;
        gap: 14px;
        flex-wrap: wrap;
    }
    .game-cell {
        min-width: 260px;
    }
    .game-cell strong {
        max-width: 360px;
        white-space: normal;
        overflow-wrap: anywhere;
    }
    .game-cell img,
    .game-placeholder {
        width: 78px;
        height: 48px;
    }
    .form-grid {
        gap: 24px;
    }
    .settings-panel > .form-grid {
        padding: 23px 20px;
    }
    .settings-panel > .panel-heading {
        padding: 22px 20px;
    }
    .settings-footer {
        padding: 18px 20px;
        flex-wrap: wrap;
    }
    .key-panel {
        padding: 27px;
        gap: 21px;
        min-width: 0;
    }
    .key-illustration {
        width: 63px;
        height: 75px;
        border-radius: 18px;
    }
    .key-illustration .icon {
        width: 31px;
        height: 31px;
    }
    .key-panel h2 {
        font-size: var(--font-title);
    }
    .key-state {
        flex-wrap: wrap;
        padding: 12px;
    }
    .docs-hero {
        padding: 29px;
    }
    .doc-section {
        padding: 23px;
    }
    .modal-backdrop {
        padding: 18px;
    }
    .modal {
        max-height: calc(100dvh - 36px);
    }
    .modal-heading {
        padding: 20px 22px 18px;
    }
    .editor-scroll {
        padding: 20px 22px 23px;
    }
    .modal-footer {
        padding: 16px 22px;
        flex-wrap: wrap;
    }
    .login-shell {
        grid-template-columns: 1fr;
    }
    .login-story {
        min-height: 215px;
        padding: 27px 32px 30px;
    }
    .login-brand {
        font-size: 22px;
    }
    .login-copy {
        margin-top: 29px;
    }
    .login-copy .eyebrow,
    .login-copy p,
    .login-copyright {
        display: none;
    }
    .login-copy h1 {
        font-size: 28px;
        margin: 0;
        line-height: 1.4;
    }
    .login-copy h1 br {
        display: none;
    }
    .orbit-art {
        width: 230px;
        height: 230px;
        right: -34px;
        bottom: -33px;
        opacity: 0.45;
    }
    .orbit-two {
        inset: 30px;
    }
    .art-cube {
        inset: 70px;
        border-radius: 19px;
    }
    .art-cube .icon {
        width: 45px;
        height: 45px;
    }
    .art-label {
        display: none;
    }
    .login-panel {
        min-height: calc(100dvh - 215px);
        padding: 52px 30px 65px;
    }
    .login-form {
        max-width: 400px;
        width: min(420px, 100%);
    }
    .login-foot {
        bottom: 18px;
    }
    .page-footer {
        font-size: var(--font-caption);
        margin-top: 29px;
        flex-wrap: wrap;
    }
}
@media (max-width: 480px) {
    .content {
        padding: 22px 15px 0;
        max-width: 1780px;
    }
    .topbar {
        padding: 0 15px;
    }
    .breadcrumbs > span:first-of-type {
        display: none;
    }
    .breadcrumb-slash {
        display: none;
    }
    .user-name small {
        font-size: var(--font-meta);
    }
    .avatar {
        width: 40px;
        height: 40px;
        border-radius: 9px;
        flex-shrink: 0;
    }
    .user-name strong {
        font-size: var(--font-content);
        max-width: 75px;
    }
    .page-heading h1 {
        font-size: var(--font-display);
    }
    .page-heading p {
        max-width: 220px;
        line-height: 1.8;
    }
    .heading-actions {
        padding-top: 0;
        flex-wrap: wrap;
    }
    .heading-actions .button {
        padding: 8px 9px;
        font-size: var(--font-content);
    }
    .heading-actions > .secondary {
        font-size: 0;
    }
    .heading-actions .primary .icon {
        display: none;
    }
    .welcome-card {
        padding: 24px 22px;
        min-height: 229px;
    }
    .welcome-card h2 {
        font-size: var(--font-title);
        line-height: 1.6;
    }
    .welcome-card p {
        max-width: 100%;
        font-size: var(--font-content);
        line-height: 1.8;
        margin-top: 8px;
    }
    .welcome-kicker {
        font-size: var(--font-caption);
        letter-spacing: 1.1px;
    }
    .welcome-graphic {
        right: -82px;
        opacity: 0.45;
        transform: scale(0.65);
    }
    .mobile-only {
        display: block;
    }
    .stat-card {
        padding: 18px 16px;
        min-width: 0;
    }
    .stat-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }
    .stat-icon .icon {
        width: 14px;
        height: 14px;
    }
    .stat-card > strong {
        font-size: var(--font-display);
        overflow-wrap: anywhere;
    }
    .stat-card > p {
        font-size: var(--font-meta);
    }
    .stats-grid {
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .panel-heading {
        padding: 20px;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .panel-heading h2 {
        font-size: var(--font-section);
    }
    .tiny-label {
        font-size: var(--font-caption);
        letter-spacing: 0.6px;
    }
    .quick-actions,
    .recent-list {
        padding-left: 20px;
        padding-right: 20px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .form-grid .wide {
        grid-column: auto;
    }
    .collector-layout > aside {
        grid-template-columns: 1fr;
    }
    .settings-tabs button {
        padding: 11px 13px;
        font-size: var(--font-content);
    }
    .settings-tabs button .icon {
        width: 15px;
        height: 15px;
    }
    .settings-footer > span {
        max-width: 100%;
        font-size: var(--font-meta);
        min-width: 0;
    }
    .settings-footer > span .icon {
        display: none;
    }
    .settings-footer .button {
        min-height: 44px;
        padding: 8px 12px;
        font-size: var(--font-content);
    }
    .key-panel {
        display: block;
        padding: 25px 22px;
        min-width: 0;
    }
    .key-illustration {
        width: 50px;
        height: 54px;
        margin-bottom: 21px;
        border-radius: 15px;
    }
    .key-illustration .icon {
        width: 27px;
        height: 27px;
    }
    .key-panel h2 {
        font-size: var(--font-title);
    }
    .docs-hero {
        padding: 25px 23px;
    }
    .docs-hero h2 {
        max-width: 100%;
        font-size: var(--font-title);
        line-height: 1.7;
    }
    .docs-hero p {
        max-width: 90%;
        line-height: 1.9;
    }
    .docs-brackets {
        right: -5px;
        top: 60px;
        font-size: 85px;
        opacity: 0.45;
    }
    .doc-section {
        padding: 21px;
    }
    .endpoint-address > code {
        font-size: var(--font-content);
        overflow-wrap: anywhere;
    }
    .modal-backdrop {
        padding: 10px;
    }
    .modal {
        max-height: calc(100dvh - 20px);
        border-radius: 12px;
    }
    .modal-heading {
        padding: 19px 19px 16px;
    }
    .modal-heading h2 {
        font-size: 24px;
    }
    .editor-scroll {
        padding: 19px;
    }
    .modal-footer {
        padding: 15px 19px;
        flex-wrap: wrap;
    }
    .modal-footer > .small {
        max-width: 100%;
        font-size: var(--font-meta);
        min-width: 0;
    }
    .modal-footer .button {
        min-height: 44px;
        padding: 8px 13px;
        font-size: var(--font-content);
    }
    .modal-footer > div {
        gap: 7px;
    }
    .editor-tabs {
        gap: 24px;
        overflow-x: auto;
    }
    .editor-tabs button {
        font-size: var(--font-content);
        min-height: 44px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .editor-scroll .switch-field {
        padding: 11px 13px;
    }
    .page-footer span:last-child {
        display: none;
    }
    .dialog-content {
        padding: 20px;
    }
    .toast-stack {
        top: calc(env(safe-area-inset-top) + 12px);
        max-height: calc(100dvh - env(safe-area-inset-top) - 24px);
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.main-shell,
.content,
.docs-layout > *,
.docs-content,
.doc-section,
.collector-layout > * {
    min-width: 0;
}
.docs-nav {
    max-width: 100%;
}
.doc-section pre,
.code-panel pre,
.note-panel pre {
    max-width: 100%;
    overflow-x: auto;
}
@media (max-width: 980px) {
    .docs-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}
@media (max-width: 760px) {
    .game-selector-input .button {
        min-height: 44px;
        font-size: var(--font-body);
        padding: 9px 12px;
    }
    .game-selector-input .button .icon {
        display: none;
    }
    .game-picker {
        padding: 15px;
        grid-column: 1 / -1;
        min-width: 0;
        margin-top: 0;
    }
    .game-picker-heading p {
        font-size: var(--font-meta);
    }
    .game-picker-item {
        gap: 11px;
    }
    .game-picker-item strong {
        font-size: var(--font-body);
    }
    .game-picker-item p {
        display: block;
        font-size: var(--font-meta);
        line-height: 1.8;
    }
    .game-picker-item p span {
        display: block;
    }
    .game-picker-search input {
        font-size: var(--font-body);
    }
    .remember-login label {
        min-height: 44px;
        font-size: var(--font-content);
    }
    .remember-login small {
        font-size: var(--font-meta);
    }
    .sidebar {
        visibility: hidden;
        pointer-events: none;
    }
    .sidebar.open {
        visibility: visible;
        pointer-events: auto;
    }
    .nav-item {
        font-size: var(--font-body);
        min-height: 48px;
        padding: 12px 14px;
    }
    .page-heading p,
    .welcome-card p {
        font-size: var(--font-content);
    }
    .stat-top {
        font-size: var(--font-content);
        gap: 10px;
        flex-wrap: wrap;
    }
    .stat-card > p,
    .panel-heading p,
    .quick-actions small,
    .empty.compact p {
        font-size: var(--font-meta);
    }
    .quick-actions strong {
        font-size: var(--font-body);
    }
    .empty.compact h3 {
        font-size: var(--font-body);
    }
    .developer-strip p {
        font-size: var(--font-meta);
    }
    .button,
    .heading-actions .button,
    .pagination-button,
    .small-button,
    .modal-footer .button,
    .settings-footer .button,
    .upload-zone .button,
    .range-tabs button,
    .segmented-control button,
    .search-box button {
        min-height: 44px;
    }
    .icon-button,
    .row-actions .icon-button {
        min-width: 44px;
        min-height: 44px;
    }
    .row-actions .icon-button + .icon-button {
        margin-left: 2px;
    }
    .field input,
    .field select,
    .field textarea,
    .analytics-filter-grid input,
    .analytics-filter-grid select,
    .search-box input,
    .login-form input,
    .collection-source select,
    .single-collector .field input,
    .download-link-card input,
    .table-meta select {
        font-size: var(--font-body);
    }
    .field > span:first-child,
    .analytics-filter-grid .field > span:first-child,
    .download-link-card .field > span:first-child,
    .collection-source > span:first-child,
    .single-collector .field > span:first-child {
        font-size: var(--font-body);
    }
    .field > small,
    .media-upload > small,
    .login-form .field > .small {
        font-size: var(--font-meta);
    }
    .table-meta select {
        font-size: var(--font-body);
        min-height: 44px;
    }
    .settings-tabs button,
    .docs-nav a,
    .nav-item {
        min-height: 44px;
    }
    .analytics-filter-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .analytics-filter-actions {
        grid-column: 1;
    }
    .analytics-filter-actions .button {
        font-size: var(--font-content);
    }
    .password-input .icon-button {
        top: 4px;
        right: 4px;
    }
    .search-box {
        padding-left: 10px;
        min-height: 52px;
    }
    .search-box input {
        font-size: var(--font-body);
        min-width: 0;
    }
    .table-toolbar > .search-box {
        width: 100%;
    }
    .modal-backdrop {
        padding-top: max(10px, env(safe-area-inset-top));
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }
    .modal {
        max-height: calc(
            100dvh - max(10px, env(safe-area-inset-top)) - max(10px, env(safe-area-inset-bottom))
        );
    }
    .modal-footer > .small {
        flex: 1;
        min-width: 0;
    }
    .modal-heading {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .topbar-right {
        gap: 5px;
    }
    .logout {
        margin-left: 0;
    }
}
