:root {
    --bg: #07111b;
    --bg-soft: #0c1c2e;
    --panel: rgba(10, 24, 38, 0.52);
    --panel-strong: rgba(8, 20, 34, 0.82);
    --border: rgba(116, 201, 255, 0.16);
    --text: #edf5ff;
    --muted: #92a5bc;
    --accent: #63f5ff;
    --accent-strong: #20b8ff;
    --accent-warm: #ffb85c;
    --success: #5dd39e;
    --danger: #ff7a7a;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
    --glow: 0 0 0 1px rgba(99, 245, 255, 0.14), 0 0 32px rgba(32, 184, 255, 0.18);
    --glass-highlight: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 184, 92, 0.14), transparent 28%),
        radial-gradient(circle at right center, rgba(32, 184, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #07111b 0%, #081522 48%, #0a2034 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

.hidden {
    display: none !important;
}

.shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.backdrop {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.backdrop-a {
    width: 20rem;
    height: 20rem;
    top: -4rem;
    left: -4rem;
    background: rgba(255, 184, 92, 0.24);
}

.backdrop-b {
    width: 24rem;
    height: 24rem;
    right: -6rem;
    bottom: -8rem;
    background: rgba(32, 184, 255, 0.22);
}

.app {
    position: relative;
    z-index: 1;
    width: min(1520px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0;
}

.auth-panel {
    min-height: calc(100vh - 56px);
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 24px;
    align-items: center;
}

.brand,
.login-card,
.hero-card,
.stat-card,
.workspace-card,
.sidebar,
.modal-card {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(24px);
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.brand::after,
.login-card::after,
.hero-card::after,
.stat-card::after,
.workspace-card::after,
.sidebar::after,
.modal-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 245, 255, 0.36), transparent 35%, rgba(255, 184, 92, 0.24));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.brand,
.hero-card,
.workspace-card,
.sidebar,
.modal-card {
    border-radius: var(--radius);
}

.brand {
    padding: 48px;
}

.brand h1,
.hero-card h2,
.card-head h3,
.sidebar-head h3,
.modal-head h3 {
    margin: 0;
    line-height: 1.05;
}

.brand h1 {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    max-width: 10ch;
}

.brand p,
.hero-card p,
.player-detail,
.overview-box span,
.search-box input,
.form-hint,
.player-subline,
.player-lastseen,
.player-mini-name,
.player-highlight p,
.modal-profile-head p {
    color: var(--muted);
}

.brand-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(99, 245, 255, 0.4);
}

.login-card {
    border-radius: 28px;
    padding: 28px;
    display: grid;
    gap: 16px;
}

.login-top,
.hero-user,
.sidebar-head,
.card-head,
.player-row,
.player-meta,
.player-header,
.overview-panel,
.player-highlight,
.highlight-stack,
.modal-head,
.modal-profile-head {
    display: flex;
    align-items: center;
}

.login-top {
    gap: 10px;
    color: var(--muted);
}

.status-dot,
.player-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot {
    background: var(--success);
    box-shadow: 0 0 12px rgba(93, 211, 158, 0.75);
}

.login-card label {
    display: grid;
    gap: 8px;
}

.login-card input,
.search-box input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
}

.login-card button,
.ghost-button,
.filter-tab,
.modal-close {
    border: 0;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.login-card button {
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-warm) 0%, #ff9a3d 100%);
    color: #1a1208;
    box-shadow: 0 12px 30px rgba(255, 154, 61, 0.28);
}

.login-card button:hover,
.ghost-button:hover,
.player-row:hover,
.filter-tab:hover,
.modal-close:hover {
    transform: translateY(-1px);
}

.form-error {
    min-height: 1.2rem;
    color: var(--danger);
    margin: 0;
}

.dashboard {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 360px;
    gap: 24px;
    min-height: calc(100vh - 56px);
    align-items: start;
}

.dashboard-main {
    display: grid;
    gap: 24px;
}

.dashboard-topbar h2 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    max-width: 18ch;
}

.admin-nav {
    position: sticky;
    top: 18px;
    align-self: start;
    display: grid;
    gap: 18px;
}

.admin-nav-card {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(24px);
    background:
        var(--glass-highlight),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
        rgba(17, 21, 28, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.34);
}

.admin-nav-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(99, 245, 255, 0.16), transparent 40%, rgba(255, 184, 92, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.brand-nav {
    padding: 22px;
    display: grid;
    gap: 18px;
}

.nav-title {
    font-size: 2rem;
    margin: 0;
}

.nav-user {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nav-user span {
    color: var(--muted);
    font-size: 0.9rem;
}

.nav-menu {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.nav-item {
    border: 0;
    border-radius: 14px;
    padding: 14px 16px;
    text-align: left;
    color: #cad5e3;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    font: inherit;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(99, 245, 255, 0.14), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.12), 0 0 24px rgba(32, 184, 255, 0.08);
}

.status-panel {
    padding: 20px;
    display: grid;
    gap: 18px;
}

.status-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.server-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.server-badge.online {
    color: #dfffee;
    background: rgba(93, 211, 158, 0.16);
    box-shadow: inset 0 0 0 1px rgba(93, 211, 158, 0.22), 0 0 20px rgba(93, 211, 158, 0.14);
}

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

.status-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.status-list span {
    color: var(--muted);
}

.logout-side {
    width: 100%;
    justify-content: center;
}

.hero-card {
    padding: 28px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    background:
        var(--glass-highlight),
        linear-gradient(180deg, rgba(99, 245, 255, 0.06), transparent 40%),
        var(--panel);
}

.dashboard-topbar {
    min-height: 164px;
    align-items: flex-start;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 40%),
        radial-gradient(circle at top right, rgba(99, 245, 255, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(14, 18, 25, 0.96), rgba(11, 18, 30, 0.92));
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-user {
    gap: 12px;
    align-self: flex-start;
}

.hero-pill {
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 4px;
    text-align: right;
    box-shadow: var(--glow);
}

.ghost-button {
    padding: 12px 16px;
    border-radius: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.08);
}

.ghost-button.small {
    padding: 10px 12px;
}

.stats-grid,
.workspace-grid,
.command-grid {
    display: grid;
    gap: 18px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    border-radius: 20px;
    padding: 22px;
    display: grid;
    gap: 8px;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.stat-card strong {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.stat-card.accent {
    background: linear-gradient(135deg, rgba(99, 245, 255, 0.14), rgba(32, 184, 255, 0.2));
    box-shadow: var(--glow);
}

.workspace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.main-content-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: start;
}

.command-grid {
    grid-template-columns: 1.3fr 0.9fr;
}

.workspace-card {
    padding: 24px;
    background:
        var(--glass-highlight),
        linear-gradient(180deg, rgba(99, 245, 255, 0.04), transparent 35%),
        var(--panel);
}

.content-stack {
    display: grid;
    gap: 18px;
}

.panel-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%),
        rgba(11, 18, 29, 0.88);
}

.command-card-primary {
    box-shadow: var(--shadow), var(--glow);
}

.console-card {
    background:
        linear-gradient(180deg, rgba(34, 38, 46, 0.92), rgba(20, 25, 35, 0.94)),
        var(--panel);
}

.side-overview {
    background:
        linear-gradient(180deg, rgba(16, 21, 29, 0.95), rgba(11, 17, 27, 0.93)),
        var(--panel);
}

.section-copy {
    color: var(--muted);
    margin: 0 0 14px;
}

.server-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.server-disabled {
    opacity: 0.55;
}

.console-preview {
    border-radius: 18px;
    padding: 16px;
    background: rgba(3, 10, 18, 0.55);
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.05);
    display: grid;
    gap: 8px;
    font-family: Consolas, monospace;
    font-size: 0.85rem;
}

.console-line span {
    color: var(--accent);
}

.quick-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.quick-metric {
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.05);
    display: grid;
    gap: 8px;
}

.quick-metric span {
    color: var(--muted);
    font-size: 0.82rem;
}

.card-head,
.sidebar-head,
.modal-head,
.player-highlight,
.modal-profile-head {
    justify-content: space-between;
    gap: 12px;
}

.card-head,
.sidebar-head {
    margin-bottom: 16px;
}

.overview-panel {
    gap: 14px;
    flex-wrap: wrap;
}

.overview-panel.compact {
    display: grid;
    gap: 12px;
}

.overview-box {
    min-width: 180px;
    flex: 1 1 180px;
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    gap: 8px;
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.05);
}

.info-panel {
    display: grid;
    align-content: start;
    gap: 16px;
}

.compact-preview {
    margin-top: 4px;
}

.overview-box strong,
.detail-box strong,
.player-header strong,
.modal-profile h4 {
    color: var(--text);
}

.player-detail {
    min-height: 290px;
    border-radius: 20px;
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(99, 245, 255, 0.05), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.04);
}

.player-detail.empty {
    display: grid;
    place-items: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.detail-box {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    padding: 16px;
    display: grid;
    gap: 8px;
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.05);
}

.detail-box span {
    color: var(--muted);
    font-size: 0.82rem;
}

.sidebar {
    padding: 22px;
    display: grid;
    gap: 14px;
    position: sticky;
    top: 18px;
    align-self: start;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
        linear-gradient(180deg, rgba(14, 18, 25, 0.96), rgba(11, 18, 30, 0.94));
    min-height: calc(100vh - 56px);
}

.sidebar-head {
    align-items: flex-start;
}

.sidebar-head .ghost-button {
    flex-shrink: 0;
}

.search-box {
    display: block;
}

.filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.filter-tab {
    border-radius: 14px;
    padding: 11px 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.filter-tab.active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(99, 245, 255, 0.2), rgba(32, 184, 255, 0.12));
    box-shadow: var(--glow);
}

.player-list {
    display: grid;
    gap: 10px;
    align-content: start;
    max-height: calc(100vh - 250px);
    overflow: auto;
    padding-right: 6px;
}

.player-row {
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(135deg, rgba(99, 245, 255, 0.05), transparent 65%),
        rgba(255, 255, 255, 0.04);
    color: var(--text);
    border-radius: 18px;
    padding: 14px;
    text-align: left;
}

.player-row.active {
    border-color: rgba(99, 245, 255, 0.42);
    background:
        linear-gradient(135deg, rgba(99, 245, 255, 0.16), rgba(32, 184, 255, 0.08)),
        rgba(255, 255, 255, 0.05);
    box-shadow: var(--glow);
}

.player-header {
    gap: 10px;
}

.player-row-main {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.player-meta {
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.84rem;
}

.player-side {
    display: grid;
    gap: 8px;
    justify-items: end;
    color: var(--muted);
    font-size: 0.8rem;
    text-align: right;
}

.player-tag {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.76rem;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.player-status.online {
    background: var(--success);
    box-shadow: 0 0 10px rgba(93, 211, 158, 0.7);
}

.player-status.staff {
    background: #b26cff;
    box-shadow: 0 0 12px rgba(178, 108, 255, 0.9);
}

.player-status.offline {
    background: rgba(255, 255, 255, 0.25);
}

.tag-online {
    color: #dfffee;
    background: rgba(93, 211, 158, 0.16);
}

.tag-offline {
    color: #dde6f1;
    background: rgba(255, 255, 255, 0.08);
}

.highlight-stack {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 9, 18, 0.72);
    backdrop-filter: blur(10px);
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal-card {
    width: min(760px, 100%);
    background:
        var(--glass-highlight),
        linear-gradient(180deg, rgba(99, 245, 255, 0.08), transparent 26%),
        var(--panel-strong);
    box-shadow: var(--shadow), var(--glow);
    padding: 24px;
}

.modal-close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    font-size: 1.4rem;
}

.modal-body {
    margin-top: 18px;
}

.modal-profile h4 {
    margin: 0;
    font-size: 1.45rem;
}

.banlist-card {
    display: grid;
    gap: 14px;
}

.ban-list {
    display: grid;
    gap: 12px;
}

.ban-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.05);
}

.ban-main,
.ban-side,
.admin-block {
    display: grid;
    gap: 8px;
}

.ban-meta,
.chip-row,
.action-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ban-side {
    justify-items: end;
    text-align: right;
    color: var(--muted);
    font-size: 0.82rem;
}

.modal-admin {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.compact-modal {
    margin-top: 16px;
}

.modal-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.modal-tab {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font: inherit;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.modal-tab.active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(99, 245, 255, 0.2), rgba(32, 184, 255, 0.12));
    box-shadow: var(--glow);
}

.modal-section {
    display: grid;
    gap: 14px;
}

.compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-block {
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.05);
}

.admin-column {
    display: grid;
    gap: 16px;
}

.preset-chip,
.duration-chip,
.action-button {
    border: 0;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.preset-chip,
.duration-chip {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 10px 12px;
}

.duration-chip.active {
    background: linear-gradient(135deg, rgba(99, 245, 255, 0.2), rgba(32, 184, 255, 0.12));
    box-shadow: var(--glow);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.action-button {
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(99, 245, 255, 0.08);
}

.action-button.danger {
    background: linear-gradient(135deg, rgba(255, 122, 122, 0.25), rgba(255, 95, 95, 0.15));
}

.action-button.ghost {
    background: rgba(255, 255, 255, 0.04);
}

.action-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.modal-reason,
.modal-number {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    font: inherit;
}

.modal-reason {
    min-height: 92px;
    resize: vertical;
}

.modal-action-status {
    grid-column: 1 / -1;
    min-height: 22px;
    color: var(--muted);
}

.modal-action-status.success {
    color: var(--success);
}

.modal-action-status.error {
    color: var(--danger);
}

@media (max-width: 1100px) {
    .auth-panel,
    .workspace-grid,
    .stats-grid,
    .command-grid,
    .modal-admin {
        grid-template-columns: 1fr;
    }

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

    .admin-nav,
    .sidebar {
        position: static;
    }

    .admin-nav {
        order: 1;
    }

    .dashboard-main {
        order: 2;
    }

    .sidebar {
        order: 3;
        min-height: auto;
    }

    .player-list {
        max-height: 28rem;
    }
}

@media (max-width: 720px) {
    .app {
        width: min(100% - 20px, 1440px);
        padding: 10px 0;
    }

    .brand,
    .login-card,
    .hero-card,
    .workspace-card,
    .sidebar,
    .modal-card {
        padding: 18px;
    }

    .hero-card,
    .hero-user,
    .player-row,
    .modal-profile-head,
    .player-highlight,
    .status-head {
        flex-direction: column;
    }

    .hero-user,
    .highlight-stack,
    .player-side,
    .hero-actions {
        width: 100%;
        justify-items: start;
        text-align: left;
    }

    .status-actions,
    .stats-grid,
    .workspace-grid,
    .command-grid,
    .action-grid,
    .detail-grid,
    .main-content-grid,
    .compact-grid,
    .compact-actions {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        grid-template-columns: 1fr 1fr;
        display: grid;
    }

    .status-list div,
    .sidebar-head {
        align-items: flex-start;
    }

    .ban-row {
        flex-direction: column;
    }

    .ban-side {
        justify-items: start;
        text-align: left;
    }
}
