.avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: cover;
    background: rgba(0, 216, 255, 0.12);
    border: 1px solid var(--sc-cyan);
    clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 5000;
    transform: translateY(-140%);
    background: var(--sc-amber, #ff9d00);
    color: #000;
    border: 2px solid #000;
    padding: 10px 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .15s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline: 2px solid #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--sc-amber, #ff9d00);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

.color-input-wrap {
    display: inline-flex;
    align-items: stretch;
    gap: 8px;
    max-width: 100%;
}

.color-input-wrap input {
    min-width: 110px;
}

.color-picker-trigger {
    width: 42px;
    min-width: 42px;
    border: 1px solid var(--sc-border, #1a3045);
    background:
        linear-gradient(45deg, rgba(255,255,255,.18) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.18) 75%),
        linear-gradient(45deg, rgba(255,255,255,.18) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.18) 75%);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
    cursor: pointer;
    padding: 0;
}

.color-picker-trigger span {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 38px;
    background: var(--picked-color, #00d8ff);
}

.site-color-overlay {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(4,7,10,.86);
}

.site-color-overlay.active {
    display: flex;
}

.site-color-picker {
    width: min(720px, calc(100vw - 28px));
    border: 1px solid var(--sc-cyan, #00d8ff);
    border-top: 3px solid var(--sc-cyan, #00d8ff);
    background: rgba(12,20,31,.98);
    box-shadow: 0 0 40px rgba(0,216,255,.18);
    padding: 16px;
    box-sizing: border-box;
}

.site-color-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.site-color-head h2 {
    margin: 0;
    color: var(--sc-cyan, #00d8ff);
    text-transform: uppercase;
    font-size: 1.25rem;
}

.site-color-body {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(220px, .85fr);
    gap: 14px;
}

.site-color-sv {
    position: relative;
    aspect-ratio: 1.45 / 1;
    min-height: 210px;
    border: 1px solid var(--sc-border, #1a3045);
    background:
        linear-gradient(to top, #000, transparent),
        linear-gradient(to right, #fff, hsl(var(--picker-hue, 190), 100%, 50%));
    cursor: crosshair;
}

.site-color-cursor {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #000, 0 0 12px rgba(255,255,255,.55);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.site-color-hue {
    width: 100%;
    margin-top: 12px;
    accent-color: var(--sc-cyan, #00d8ff);
}

.site-color-preview {
    min-height: 72px;
    border: 1px solid var(--sc-border, #1a3045);
    background: var(--picked-color, #00d8ff);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.site-color-fields {
    display: grid;
    gap: 8px;
}

.site-color-fields label {
    color: var(--sc-cyan, #00d8ff);
    font-weight: 700;
    text-transform: uppercase;
}

.site-color-fields input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px;
    border: 1px solid var(--sc-border, #1a3045);
    background: rgba(0,0,0,.46);
    color: #fff;
    font: inherit;
}

.site-color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
    gap: 7px;
    margin-top: 10px;
}

.site-color-swatch {
    height: 28px;
    border: 1px solid rgba(255,255,255,.28);
    background: var(--swatch);
    cursor: pointer;
}

.site-color-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

@media (max-width: 760px) {
    .site-color-body {
        grid-template-columns: 1fr;
    }
}

.sidebar .sc-btn.current-page,
.sidebar .sc-btn.current-page:hover {
    background: rgba(255, 157, 0, 0.2);
    border-color: var(--sc-amber);
    color: var(--sc-amber);
    box-shadow: inset 4px 0 0 var(--sc-amber), 0 0 18px rgba(255, 157, 0, 0.12);
}

.mobile-topbar,
.mobile-nav-backdrop,
.mobile-drawer-head {
    display: none;
}

body.mobile-nav-open {
    overflow: hidden;
}

.mobile-brand {
    color: var(--sc-white, #e0f2fe);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
}

.mobile-brand span {
    color: var(--sc-cyan, #00d8ff);
}

.mobile-menu-btn,
.mobile-drawer-close,
.mobile-login-link {
    min-height: 42px;
    border: 1px solid var(--sc-border, #1a3045);
    background: rgba(0,216,255,.12);
    color: var(--sc-cyan, #00d8ff);
    font: inherit;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}

.mobile-menu-btn,
.mobile-drawer-close {
    width: 44px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    font-size: 1.35rem;
}

.mobile-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    text-decoration: none;
}

.mobile-login-link i {
    font-size: 1.15rem;
}

.mobile-account-link {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sc-white, #e0f2fe);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
}

.mobile-account-link span {
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hud-card {
    --hud-color: var(--sc-cyan, #00d8ff);
    border: 1px solid color-mix(in srgb, var(--hud-color) 34%, var(--sc-border, #1a3045));
    border-top: 3px solid var(--hud-color);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--hud-color) 11%, transparent), rgba(0,0,0,.28)),
        repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 8px);
    box-shadow: inset 0 0 18px rgba(255,255,255,.025), 0 0 14px color-mix(in srgb, var(--hud-color) 10%, transparent);
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.hud-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--hud-color);
    box-shadow: 0 0 10px var(--hud-color);
    opacity: .75;
}

.hud-card-title {
    margin: 0 0 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hud-card-title i {
    color: var(--hud-color);
}

.hud-pill {
    --pill-color: var(--sc-cyan, #00d8ff);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid color-mix(in srgb, var(--pill-color) 48%, var(--sc-border, #1a3045));
    background: linear-gradient(135deg, color-mix(in srgb, var(--pill-color) 14%, transparent), rgba(0,0,0,.28));
    color: var(--pill-color);
    padding: 4px 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .82rem;
    clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}

.hud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.hud-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 7px 0;
}

.hud-row:last-child {
    border-bottom: 0;
}

.hud-row span:first-child {
    color: var(--sc-text, #a4bccc);
    text-transform: uppercase;
    font-weight: 800;
    font-size: .86rem;
}

.hud-row strong {
    color: #fff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.review-card {
    --hud-color: var(--sc-amber, #ff9d00);
    display: grid;
    gap: 10px;
}

.review-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
    border: 1px solid var(--sc-border, #1a3045);
}

.review-card-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.review-card-title {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.review-card-meta {
    color: var(--sc-text, #a4bccc);
    font-size: .94rem;
}

.review-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    border: 1px solid var(--sc-border, #1a3045);
    border-left: 3px solid var(--sc-cyan, #00d8ff);
    background: rgba(0,0,0,.22);
    padding: 12px;
    margin: 0 0 16px;
}

.filter-deck label {
    color: var(--sc-cyan, #00d8ff);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .88rem;
}

.filter-deck input,
.filter-deck select {
    width: 100%;
    margin-top: 4px;
    box-sizing: border-box;
    padding: 9px;
    background: rgba(0,0,0,.5);
    border: 1px solid var(--sc-border, #1a3045);
    color: #fff;
    font: inherit;
}

.filter-actions {
    display: flex;
    gap: 8px;
    align-items: end;
    flex-wrap: wrap;
}

.profile-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.profile-stat-tile {
    --hud-color: var(--sc-cyan, #00d8ff);
    border: 1px solid color-mix(in srgb, var(--hud-color) 35%, var(--sc-border, #1a3045));
    background: linear-gradient(145deg, color-mix(in srgb, var(--hud-color) 10%, transparent), rgba(0,0,0,.24));
    padding: 10px;
}

.profile-stat-tile span {
    display: block;
    color: var(--sc-text, #a4bccc);
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 800;
}

.profile-stat-tile strong {
    display: block;
    color: var(--hud-color);
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 3px;
}

@media (max-width: 700px) {
    .profile-stat-grid {
        grid-template-columns: 1fr;
    }
}


.avatar.lg {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
}

.user-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 0 0 20px;
}

.dash-tile {
    background: var(--sc-panel);
    border: 1px solid var(--sc-border);
    border-left: 4px solid var(--sc-cyan);
    padding: 14px;
    box-sizing: border-box;
}

.dash-tile .label {
    color: var(--sc-text);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
}

.dash-tile .value {
    color: var(--sc-white);
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 700;
    margin-top: 6px;
}

.brief-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 16px;
    margin: 0 0 22px;
}

.brief-panel {
    background: var(--sc-panel);
    border: 1px solid var(--sc-border);
    border-top: 3px solid var(--sc-cyan);
    padding: 16px;
}

.brief-panel h3 {
    margin: 0 0 12px;
    color: var(--sc-amber);
    text-transform: uppercase;
}

.brief-list {
    display: grid;
    gap: 10px;
}

.brief-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brief-item:last-child {
    border-bottom: 0;
}

.featured-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-color: var(--sc-cyan) rgba(0,0,0,0.28);
}

.featured-card {
    position: relative;
    flex: 0 0 clamp(280px, 32vw, 420px);
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    border: 1px solid var(--sc-border);
    text-decoration: none;
    background: #000;
    color: inherit;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    text-align: left;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: 0.2s;
}

.featured-card:hover img {
    opacity: 1;
    transform: scale(1.03);
}

.featured-copy {
    position: absolute;
    inset: auto 0 0;
    padding: 30px 10px 10px;
    color: var(--sc-white);
    background: linear-gradient(transparent, rgba(0,0,0,0.88) 28%);
    display: grid;
    gap: 6px;
    font-size: 0.95rem;
}

.featured-copy strong {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.08;
}

.featured-copy .avatar {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
}

.featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.featured-meta .user-line {
    overflow: hidden;
}

.featured-meta .user-line span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.metric-pill {
    flex: 0 0 auto;
    color: var(--sc-like);
    border: 1px solid rgba(255, 51, 102, 0.55);
    background: rgba(255, 51, 102, 0.12);
    padding: 2px 7px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.featured-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
    background: rgba(255, 157, 0, 0.92);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    font-size: 0.78rem;
}

.data-node > .featured-badge {
    left: auto;
    right: 10px;
    top: 10px;
    z-index: 4;
}

.data-node > .resolution-badge + .featured-badge {
    top: 36px;
}

.data-node .node-actions {
    position: absolute;
    inset: 10px auto auto 10px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transform: translateY(-4px);
    transition: 0.2s;
    z-index: 3;
}

.data-node:hover .node-actions,
.data-node:focus-within .node-actions {
    opacity: 1;
    transform: translateY(0);
}

.icon-action {
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border: 1px solid var(--sc-border);
    background: rgba(6, 9, 14, 0.88);
    color: var(--sc-cyan);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.icon-action:hover {
    background: var(--sc-cyan);
    color: #000;
}

.resolution-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    max-width: calc(100% - 20px);
    padding: 3px 7px;
    --res-color: var(--sc-cyan);
    border: 1px solid color-mix(in srgb, var(--res-color) 65%, transparent);
    background: rgba(2, 8, 14, 0.82);
    color: var(--res-color);
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 12px color-mix(in srgb, var(--res-color) 20%, transparent);
    pointer-events: none;
}

.resolution-badge.res-1080 {
    --res-color: #00d8ff;
}

.resolution-badge.res-1440 {
    --res-color: #00ff80;
}

.resolution-badge.res-4k {
    --res-color: #ff9d00;
}

.resolution-badge.res-sd {
    --res-color: #a4bccc;
}

.lb-image-frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-width: min(520px, 82vw);
    min-height: min(320px, 46vh);
}

.lb-image-frame::before,
.lb-image-frame::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: min(260px, 42vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 216, 255, 0.28);
    clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.lb-image-frame::after {
    width: min(160px, 28vw);
    border-color: rgba(255, 157, 0, 0.45);
    animation-direction: reverse;
}

.lb-loader-label {
    position: absolute;
    left: 50%;
    top: calc(50% + min(145px, 24vw));
    transform: translateX(-50%);
    color: var(--sc-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 4px 9px;
    border: 1px solid rgba(0,216,255,0.35);
    background: rgba(0,0,0,0.68);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

#lightbox.loading .lb-image-frame::before,
#lightbox.loading .lb-image-frame::after {
    opacity: 1;
    animation: hud-spin 1.4s linear infinite;
}

#lightbox.loading .lb-loader-label {
    opacity: 1;
}

#lightbox.loading #lightbox-img {
    opacity: 0.24;
}

@keyframes hud-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.node-info {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start !important;
}

.node-info .title {
    min-width: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.08;
}

.node-info .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.node-info .meta .user-line {
    overflow: hidden;
}

.node-info .meta .user-line a,
.node-info .meta .user-line span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.node-metrics {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.icon-action.feature-toggle {
    color: var(--sc-amber);
    border-color: rgba(255, 157, 0, 0.55);
}

.icon-action.feature-toggle:hover {
    background: var(--sc-amber);
    color: #000;
}

.toast-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(360px, calc(100vw - 36px));
}

.toast {
    background: rgba(12, 20, 31, 0.96);
    border: 1px solid var(--sc-border);
    border-left: 4px solid var(--toast-color, var(--sc-cyan));
    color: var(--sc-white);
    padding: 12px 42px 12px 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    position: relative;
    animation: toastIn .18s ease-out;
}

.toast.info { --toast-color: var(--sc-cyan); }
.toast.success { --toast-color: #00ff80; }
.toast.warning { --toast-color: var(--sc-amber); }
.toast.error,
.toast.err {
    --toast-color: #ff3333;
}

.toast-message {
    font-weight: 700;
    line-height: 1.2;
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border: 1px solid color-mix(in srgb, var(--toast-color, var(--sc-cyan)) 42%, transparent);
    background: rgba(0,0,0,.2);
    color: var(--toast-color, var(--sc-cyan));
    font-weight: 800;
    cursor: pointer;
}

.toast-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.toast-actions .sc-btn {
    width: auto;
    margin: 0;
    font-size: .92rem;
    padding: 7px 10px;
    color: var(--toast-color, var(--sc-cyan));
    border-color: color-mix(in srgb, var(--toast-color, var(--sc-cyan)) 58%, transparent);
    background: color-mix(in srgb, var(--toast-color, var(--sc-cyan)) 10%, transparent);
}

.toast.leaving {
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .18s ease, transform .18s ease;
}

.toast.pulse {
    animation: toastPulse .28s ease;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toastPulse {
    0%, 100% { transform: translateX(0); }
    35% { transform: translateX(-4px); }
    70% { transform: translateX(4px); }
}

.modal-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(4, 7, 10, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition: 0.2s;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-box {
    width: min(560px, calc(100vw - 32px));
    max-height: 90vh;
    overflow-y: auto;
    background: var(--sc-panel);
    border: 1px solid var(--sc-cyan);
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
}

.modal-box label {
    display: block;
    color: var(--sc-cyan);
    font-weight: 700;
    margin: 14px 0 5px;
}

.modal-box input,
.modal-box textarea,
.modal-box select {
    width: 100%;
    box-sizing: border-box;
    background: rgba(0,0,0,0.55);
    border: 1px solid var(--sc-border);
    color: var(--sc-white);
    padding: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.stream-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
    gap: 18px;
    align-items: stretch;
    background: var(--sc-panel);
    border: 1px solid var(--sc-border);
    border-top: 3px solid var(--sc-amber);
    padding: 16px;
    margin: 0 0 22px;
}

.stream-panel[hidden] {
    display: none;
}

.stream-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.stream-status,
.help-kicker {
    color: var(--sc-cyan);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0;
}

.stream-copy h3,
.help-hero h3,
.help-panel h3 {
    color: var(--sc-white);
    margin: 6px 0 8px;
    text-transform: uppercase;
}

.stream-copy p,
.help-hero p,
.help-panel p {
    margin: 0;
    color: var(--sc-text);
    line-height: 1.45;
}

.stream-meta {
    min-height: 22px;
    margin-top: 8px;
    color: var(--sc-amber);
    font-weight: 700;
    text-transform: uppercase;
}

.stream-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.stream-preview {
    border: 1px solid var(--sc-border);
    background: #000;
    padding: 0;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    overflow: hidden;
}

.stream-preview:focus-visible {
    outline: 2px solid var(--sc-amber);
    outline-offset: 2px;
}

.stream-preview iframe,
.stream-lightbox iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
}

.stream-lightbox iframe {
    pointer-events: auto;
}

.stream-lightbox {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 2200;
    background: rgba(4, 7, 10, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    transition: 0.2s;
}

.stream-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.stream-lightbox-panel {
    width: min(1200px, 100%);
    position: relative;
}

.stream-lightbox-panel iframe {
    aspect-ratio: 16 / 9;
    background: #000;
    border: 2px solid var(--sc-cyan);
}

.stream-lightbox-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    color: var(--sc-white);
    font-weight: 700;
}

.help-hero,
.help-panel {
    background: var(--sc-panel);
    border: 1px solid var(--sc-border);
    border-top: 3px solid var(--sc-cyan);
    padding: 18px;
}

.help-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    border-top-color: var(--sc-amber);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
}

.help-section {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.help-section-title {
    border-bottom: 1px solid var(--sc-border);
    padding-bottom: 8px;
}

.help-section-title h3 {
    color: var(--sc-white);
    font-size: 1.55rem;
    line-height: 1.1;
    margin: 3px 0 0;
    text-transform: uppercase;
}

.help-panel.compact {
    align-self: start;
}

.points-list {
    display: grid;
    gap: 10px;
    margin: 12px 0;
}

.points-list div {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.24);
}

.points-list strong {
    color: var(--sc-amber);
    font-size: 1.35rem;
}

.help-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}

.help-table th,
.help-table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid var(--sc-border);
}

.help-table th {
    color: var(--sc-white);
    text-transform: uppercase;
}

.perk-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.perk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    padding: 4px 9px;
    border: 1px solid rgba(0,216,255,0.38);
    background: rgba(0,216,255,0.1);
    color: var(--sc-white);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    box-sizing: border-box;
}

.perk-badge i {
    font-size: 0.95em;
    line-height: 1;
}

.perk-badge.standard {
    border-color: rgba(255,157,0,0.35);
    background: rgba(255,157,0,0.1);
    color: var(--sc-amber);
}

.perk-badge.community {
    border-color: rgba(0,216,255,0.42);
    background: rgba(0,216,255,0.12);
    color: var(--sc-cyan);
}

.perk-badge.moderation {
    border-color: rgba(0,255,128,0.42);
    background: rgba(0,255,128,0.1);
    color: #8dffbd;
}

.perk-badge.featured {
    border-color: rgba(255,157,0,0.46);
    background: rgba(255,157,0,0.12);
    color: var(--sc-amber);
}

.perk-badge.uploads {
    border-color: rgba(255,51,102,0.46);
    background: rgba(255,51,102,0.12);
    color: var(--sc-like);
}

.perk-badge.uploads-max {
    border-color: rgba(125,211,252,0.52);
    background: rgba(125,211,252,0.12);
    color: #7dd3fc;
}

.perk-badge.flair {
    border-color: rgba(186,126,255,0.5);
    background: rgba(186,126,255,0.13);
    color: #d8b4ff;
}

.perk-badge.custom {
    border-color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.08);
    color: var(--sc-white);
}

.perk-library-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.perk-library-item {
    display: grid;
    grid-template-columns: minmax(140px, max-content) 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.24);
}

.perk-library-item > span:last-child {
    color: var(--sc-text);
}

.notif-wrap {
    position: relative;
    display: inline-flex;
}

.notif-panel {
    position: fixed;
    left: 18px;
    top: 92px;
    width: min(420px, calc(100vw - 24px));
    max-height: min(620px, calc(100vh - 24px));
    overflow-y: auto;
    background: rgba(12, 20, 31, 0.98);
    border: 1px solid var(--sc-border);
    border-top: 3px solid var(--sc-cyan);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    z-index: 2500;
    padding: 8px;
}

.notif-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sc-border);
    background: rgba(0,216,255,.1);
    color: var(--sc-cyan);
    cursor: pointer;
    clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}

.notif-icon-btn.has-unread {
    border-color: var(--sc-amber);
    background: rgba(255,157,0,.16);
    color: var(--sc-amber);
    box-shadow: 0 0 14px rgba(255,157,0,.18);
}

.notif-icon-btn #notif-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid rgba(255,157,0,.78);
    background: #05080c;
    color: var(--sc-amber);
    font-size: .72rem;
    font-weight: 800;
    border-radius: 999px;
}

.sidebar-account {
    display: grid;
    gap: 10px;
    padding: 14px 0 0;
    border-top: 1px solid var(--sc-border);
    background: transparent;
}

.sidebar-account-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.sidebar-account-user {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
    color: var(--sc-text);
    text-decoration: none;
}

.sidebar-account-user span {
    min-width: 0;
    display: grid;
    gap: 2px;
    line-height: 1.05;
}

.sidebar-account-user small {
    color: var(--sc-text);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
}

.sidebar-account-user strong {
    color: var(--sc-white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-account-action {
    width: 100%;
    box-sizing: border-box;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 !important;
}

.site-social-bar {
    position: fixed;
    top: 0;
    left: 314px;
    right: 0;
    min-height: 42px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(6, 9, 14, 0.88);
    border-bottom: 1px solid var(--sc-border);
    backdrop-filter: blur(10px);
    z-index: 900;
}

.site-social-link {
    --platform: var(--sc-cyan);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--platform) 54%, transparent);
    background: color-mix(in srgb, var(--platform) 12%, transparent);
    color: var(--platform);
    text-decoration: none;
    font-size: 1rem;
    box-sizing: border-box;
    clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.site-social-link:hover {
    background: var(--platform);
    color: #000;
}

.site-social-link.twitch { --platform:#9146ff; }
.site-social-link.youtube { --platform:#ff0033; }
.site-social-link.x-social { --platform:#e7e9ea; }
.site-social-link.discord { --platform:#5865f2; }
.site-social-link.instagram { --platform:#e1306c; }
.site-social-link.tiktok { --platform:#25f4ee; }
.site-social-link.steam { --platform:#66c0f4; }
.site-social-link.website { --platform:#00d8ff; }

.has-social-bar .main-display {
    padding-top: 4.75rem;
}

.sc-referral-card {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255,157,0,0.42);
    border-left: 4px solid var(--sc-amber);
    background: rgba(255,157,0,0.08);
    color: var(--sc-text);
    text-decoration: none;
    box-sizing: border-box;
}

.sc-referral-card:hover {
    border-color: var(--sc-amber);
    background: rgba(255,157,0,0.14);
}

.sc-referral-card span {
    color: var(--sc-amber);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.sc-referral-card strong {
    color: var(--sc-white);
    text-transform: uppercase;
    line-height: 1.05;
}

.sc-referral-card small {
    color: var(--sc-text);
    line-height: 1.1;
}

.notif-panel[hidden] {
    display: none;
}

.notif-item {
    display: block;
    padding: 8px 9px;
    border-left: 3px solid var(--sc-cyan);
    background: rgba(0,0,0,0.28);
    color: var(--sc-white);
    text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.12;
}

.notif-item.unread {
    border-left-color: var(--sc-amber);
}

.notif-time {
    display: block;
    color: var(--sc-text);
    font-size: 0.8rem;
    margin-top: 3px;
}

.comment-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
}

.comment-main {
    min-width: 0;
}

.cl-msg-head .comment-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.data-node:focus-visible {
    outline: 2px solid var(--sc-amber);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.state-panel {
    border: 1px solid color-mix(in srgb, var(--state-color, var(--sc-cyan)) 42%, var(--sc-border));
    border-left: 4px solid var(--state-color, var(--sc-cyan));
    background: linear-gradient(90deg, color-mix(in srgb, var(--state-color, var(--sc-cyan)) 10%, transparent), rgba(0,0,0,.26));
    padding: 12px;
    color: var(--sc-text);
}

.state-panel strong {
    color: var(--state-color, var(--sc-cyan));
    text-transform: uppercase;
}

.loading-hud {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sc-cyan);
    font-weight: 800;
    text-transform: uppercase;
}

.loading-hud::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,216,255,.25);
    border-top-color: var(--sc-cyan);
    border-radius: 50%;
    animation: hudSpinSimple .8s linear infinite;
}

.notif-type {
    display: block;
    color: var(--sc-amber);
    text-transform: uppercase;
    font-weight: 800;
    font-size: .78rem;
    margin-bottom: 2px;
}

.notif-actions {
    position: sticky;
    bottom: 0;
    padding: 8px 0 0;
    background: linear-gradient(180deg, transparent, rgba(12,20,31,.98) 30%);
    text-align: center;
}

.notif-actions .sc-btn {
    width: 100%;
    margin: 0;
    display: inline-flex;
    justify-content: center;
    box-sizing: border-box;
}

@keyframes hudSpinSimple {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

@media (max-width: 700px) {
    html {
        -webkit-text-size-adjust: 100%;
    }

    body {
        width: 100%;
    }

    body.has-social-bar {
        padding-top: 42px;
    }

    img,
    video,
    iframe {
        max-width: 100%;
    }

    .mobile-topbar {
        position: sticky;
        top: 0;
        z-index: 1200;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        min-height: 58px;
        padding: 8px 12px;
        box-sizing: border-box;
        border-bottom: 1px solid var(--sc-border, #1a3045);
        background: rgba(6, 9, 14, .97);
        box-shadow: 0 8px 20px rgba(0,0,0,.36);
        backdrop-filter: blur(10px);
    }

    .has-social-bar .mobile-topbar {
        top: 0;
        margin-top: 0;
    }

    .mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--sc-border, #1a3045);
        color: var(--sc-amber, #ff9d00);
        text-transform: uppercase;
        font-weight: 800;
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1240;
        display: block;
        visibility: hidden;
        opacity: 0;
        border: 0;
        background: rgba(4,7,10,.64);
        backdrop-filter: blur(2px);
        transition: opacity .18s ease, visibility .18s ease;
    }

    body.mobile-nav-open .mobile-nav-backdrop {
        visibility: visible;
        opacity: 1;
    }

    body .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        z-index: 1250 !important;
        width: min(86vw, 340px) !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 100vh !important;
        flex: initial !important;
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        border-right: 1px solid var(--sc-cyan, #00d8ff) !important;
        box-shadow: 16px 0 40px rgba(0,0,0,.56) !important;
        transform: translateX(-105%);
        transition: transform .2s ease;
    }

    body.mobile-nav-open .mobile-topbar {
        z-index: 1230;
    }

    .has-social-bar .sidebar {
        top: 0 !important;
    }

    body.mobile-nav-open .sidebar {
        transform: translateX(0);
    }

    .sidebar .brand-title {
        display: block !important;
        font-size: 1.45rem !important;
        margin: 0 0 .25rem !important;
        white-space: normal !important;
    }

    .sidebar .sc-btn {
        width: 100% !important;
        box-sizing: border-box;
        white-space: normal !important;
        text-align: left !important;
    }

    .sidebar .sc-referral-card {
        min-width: 0;
    }

    .sidebar .sidebar-account {
        margin-top: auto;
    }

    .sidebar .sidebar-account-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .mobile-topbar + .mobile-nav-backdrop + .sidebar + .main-display,
    .mobile-topbar + .mobile-nav-backdrop + .sidebar + main.main-display {
        padding-top: 1rem;
    }

    .site-social-bar {
        left: 0;
        justify-content: center;
        padding: 7px 12px;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .site-social-link {
        flex: 0 0 30px;
    }

    .sc-referral-card {
        min-width: 220px;
    }

    .notif-panel {
        left: 12px;
        right: 12px;
        width: auto;
        max-width: calc(100vw - 24px);
        max-height: min(70vh, 520px);
    }

    .brief-grid {
        grid-template-columns: 1fr;
    }

    .stream-panel,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .help-hero,
    .stream-lightbox-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .perk-library-item {
        grid-template-columns: 1fr;
    }

    .data-node .node-actions {
        opacity: 1;
        transform: none;
    }

    .modal-overlay,
    .site-color-overlay {
        align-items: flex-start;
        padding: 12px;
        overflow-y: auto;
    }

    .modal-box,
    .site-color-picker {
        width: 100%;
        max-width: none;
        max-height: calc(100vh - 24px);
        padding: 14px;
    }

    .site-color-head {
        align-items: flex-start;
    }

    .site-color-actions,
    .toast-actions,
    .stream-lightbox-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .site-color-actions .sc-btn,
    .toast-actions .sc-btn,
    .stream-lightbox-actions .sc-btn {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .hud-grid,
    .telemetry-grid,
    .dashboard-grid,
    .quota-grid,
    .health-grid {
        grid-template-columns: 1fr !important;
    }

    .hud-pill,
    .perk-badge,
    .metric-pill {
        max-width: 100%;
        white-space: normal;
    }

    .user-line {
        min-width: 0;
    }

    .user-line span,
    .user-line strong {
        overflow-wrap: anywhere;
    }

    .sc-btn {
        min-height: 42px;
    }

    .icon-action,
    .mini-btn,
    .collection-nav,
    .notif-icon-btn {
        min-width: 42px;
        min-height: 42px;
    }

    .data-node .node-actions {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
        gap: 7px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-bottom: 8px;
    }

    .data-node .node-actions .icon-action {
        justify-content: center;
        text-align: center;
    }

    .icon-action[title*="Report"],
    .lb-secondary-box .sc-btn:not(.danger),
    .secondary-actions .sc-btn:not(.danger) {
        color: #ffb3c1;
        border-color: rgba(255,51,102,.5);
        background: rgba(255,51,102,.08);
    }

    .lb-actions,
    .detail-actions,
    .card-tools,
    .collection-lightbox-actions,
    .toast-actions {
        gap: 9px;
    }

    .admin-table-wrap,
    .settings-table-card {
        overflow: visible;
    }

    .admin-section table.mobile-labelled,
    .settings-table-card table.mobile-labelled,
    .maintenance-block table.mobile-labelled,
    .storage-group table.mobile-labelled {
        display: grid;
        gap: 10px;
        min-width: 0 !important;
        white-space: normal;
        border-collapse: separate;
    }

    .admin-section table.mobile-labelled tbody,
    .admin-section table.mobile-labelled tr,
    .settings-table-card table.mobile-labelled tbody,
    .settings-table-card table.mobile-labelled tr,
    .maintenance-block table.mobile-labelled tbody,
    .maintenance-block table.mobile-labelled tr,
    .storage-group table.mobile-labelled tbody,
    .storage-group table.mobile-labelled tr {
        display: grid;
        gap: 8px;
    }

    .admin-section table.mobile-labelled .mobile-table-heading,
    .settings-table-card table.mobile-labelled .mobile-table-heading,
    .maintenance-block table.mobile-labelled .mobile-table-heading,
    .storage-group table.mobile-labelled .mobile-table-heading,
    .admin-section table.mobile-labelled thead,
    .settings-table-card table.mobile-labelled thead,
    .maintenance-block table.mobile-labelled thead,
    .storage-group table.mobile-labelled thead {
        display: none;
    }

    .admin-section table.mobile-labelled tr,
    .settings-table-card table.mobile-labelled tr,
    .maintenance-block table.mobile-labelled tr,
    .storage-group table.mobile-labelled tr {
        border: 1px solid var(--sc-border);
        border-left: 4px solid var(--sc-cyan);
        background: rgba(0,0,0,.24);
        padding: 10px;
    }

    .admin-section table.mobile-labelled td,
    .settings-table-card table.mobile-labelled td,
    .maintenance-block table.mobile-labelled td,
    .storage-group table.mobile-labelled td {
        display: grid !important;
        grid-template-columns: minmax(92px, .36fr) minmax(0, 1fr);
        gap: 10px;
        align-items: start;
        padding: 0;
        border: 0;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .admin-section table.mobile-labelled td::before,
    .settings-table-card table.mobile-labelled td::before,
    .maintenance-block table.mobile-labelled td::before,
    .storage-group table.mobile-labelled td::before {
        content: attr(data-label);
        color: var(--sc-amber);
        font-weight: 800;
        text-transform: uppercase;
        font-size: .82rem;
        line-height: 1.1;
    }

    .admin-section table.mobile-labelled td[colspan] {
        grid-template-columns: 1fr;
    }

    .admin-section table.mobile-labelled td[colspan]::before {
        display: none;
    }

    .admin-section table.mobile-labelled .content-image-cell {
        min-width: 0;
        align-items: flex-start;
    }

    .admin-section table.mobile-labelled .admin-thumb {
        width: 88px;
        height: 56px;
    }

    .admin-section table.mobile-labelled .content-action-stack,
    .admin-section table.mobile-labelled .admin-action-row {
        display: grid;
        grid-template-columns: 1fr;
        min-width: 0;
        justify-content: stretch;
        width: 100%;
    }

    .admin-section table.mobile-labelled .content-action-stack .sc-btn,
    .admin-section table.mobile-labelled .admin-action-row .sc-btn,
    .admin-section table.mobile-labelled .admin-action-row form {
        width: 100% !important;
        box-sizing: border-box;
    }
}

@media (max-width: 430px) {
    .site-social-bar {
        justify-content: flex-start;
    }

    .notif-panel {
        left: 8px;
        right: 8px;
        max-width: calc(100vw - 16px);
    }

    .mobile-login-link {
        width: 44px;
        padding: 0;
    }

    .mobile-login-link span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .state-panel,
    .hud-card {
        padding: 10px;
    }

    .admin-section table.mobile-labelled td,
    .settings-table-card table.mobile-labelled td,
    .maintenance-block table.mobile-labelled td,
    .storage-group table.mobile-labelled td {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .mobile-brand {
        font-size: .95rem;
    }
}
