:root {
    color-scheme: dark;
    --bg-top: #455778;
    --bg-mid: #223552;
    --bg-bottom: #071321;
    --surface: rgba(11, 22, 39, 0.86);
    --surface-strong: rgba(14, 28, 48, 0.96);
    --surface-soft: rgba(28, 48, 80, 0.78);
    --surface-muted: rgba(55, 78, 114, 0.55);
    --border: rgba(255, 196, 76, 0.18);
    --border-strong: rgba(255, 196, 76, 0.34);
    --text: #fff2c5;
    --text-strong: #fff8e2;
    --muted: #9fb1cb;
    --muted-strong: #bed0ea;
    --accent: #ffc54b;
    --accent-strong: #ffb112;
    --accent-deep: #c57b00;
    --accent-soft: rgba(255, 197, 75, 0.16);
    --steel: #72b9ff;
    --steel-soft: rgba(114, 185, 255, 0.14);
    --success: #72dbaa;
    --success-soft: rgba(114, 219, 170, 0.16);
    --danger: #dd7044;
    --danger-soft: rgba(221, 112, 68, 0.18);
    --shadow-lg: 0 28px 56px rgba(1, 6, 14, 0.46);
    --shadow-md: 0 14px 30px rgba(1, 6, 14, 0.28);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

html {
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 200, 97, 0.16), transparent 28rem),
        radial-gradient(circle at 100% 16%, rgba(114, 185, 255, 0.18), transparent 24rem),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 36%, #132543 64%, var(--bg-bottom) 100%);
}

body {
    position: relative;
    background: transparent;
    color: var(--text);
    font-family: "Manrope", sans-serif;
    isolation: isolate;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2307162c' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' opacity='0.7'%3E%3Crect x='30' y='44' width='60' height='42' rx='7'/%3E%3Cpath d='M60 44v42'/%3E%3Cpath d='M30 60h60'/%3E%3Cpath d='M60 44c0-14 11-19 20-19 6 0 10 3 10 8 0 13-18 11-30 11Z'/%3E%3Cpath d='M60 44c0-14-11-19-20-19-6 0-10 3-10 8 0 13 18 11 30 11Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 118px 118px;
    background-position: center top;
    opacity: 0.42;
    pointer-events: none;
    transform: rotate(-8deg) scale(1.06);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 38%, rgba(3, 8, 16, 0.28) 100%),
        linear-gradient(180deg, rgba(2, 7, 15, 0.08), rgba(2, 7, 15, 0.28));
    pointer-events: none;
}

button,
input,
textarea {
    font: inherit;
}

::selection {
    background: rgba(255, 197, 75, 0.24);
    color: var(--text-strong);
}

.hidden {
    display: none !important;
}

.shell {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding:
        calc(env(safe-area-inset-top, 0px) + 18px)
        14px
        calc(env(safe-area-inset-bottom, 0px) + 18px);
}

.shell__glow {
    position: fixed;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    filter: blur(72px);
    opacity: 0.42;
    pointer-events: none;
    animation: float-glow 12s ease-in-out infinite;
}

.shell__glow--left {
    top: -6rem;
    left: -6rem;
    background: rgba(255, 192, 73, 0.36);
}

.shell__glow--right {
    top: 10rem;
    right: -7rem;
    background: rgba(110, 182, 255, 0.24);
    animation-delay: -5s;
}

.auth-gate,
.auth-card,
.hero,
.panel,
.tabbar,
.stats-grid article,
.config-card,
.user-item,
.request-card,
.toast {
    backdrop-filter: blur(18px);
}

.auth-gate {
    min-height: calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 36px);
    display: grid;
    place-items: center;
}

.auth-card,
.hero,
.panel,
.tabbar,
.stats-grid article,
.config-card,
.user-item,
.request-card,
.detail-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(22, 40, 67, 0.92), rgba(8, 18, 32, 0.94)),
        linear-gradient(135deg, rgba(255, 197, 75, 0.06), transparent 35%, rgba(114, 185, 255, 0.08));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 240, 202, 0.06);
}

.auth-card::before,
.hero::before,
.panel::before,
.tabbar::before,
.stats-grid article::before,
.config-card::before,
.user-item::before,
.request-card::before,
.detail-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 213, 128, 0.66), transparent);
}

.auth-card {
    width: min(100%, 560px);
    padding: 30px;
    border-radius: 34px;
    animation: rise-in 0.6s ease both;
}

.auth-card::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 10rem;
    height: 10rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 197, 75, 0.18), rgba(255, 177, 18, 0.02));
    border: 1px solid rgba(255, 197, 75, 0.12);
    transform: rotate(18deg);
}

.brand-banner {
    position: relative;
    z-index: 1;
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.brand-banner__badge {
    display: grid;
    place-items: center;
    width: 64px;
    aspect-ratio: 1;
    border-radius: 20px;
    background:
        linear-gradient(180deg, #1a2f50, #091624),
        linear-gradient(135deg, rgba(255, 197, 75, 0.22), transparent);
    border: 1px solid rgba(255, 197, 75, 0.28);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 244, 214, 0.08);
}

.brand-banner__badge span {
    font-family: "Oxanium", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffd670;
    text-shadow: 0 0 16px rgba(255, 196, 76, 0.18);
}

.brand-banner__copy {
    display: grid;
    gap: 3px;
}

.brand-banner__kicker {
    margin: 0;
    color: #d4e4fb;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-banner__title {
    font-family: "Oxanium", sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-strong);
}

.eyebrow,
.panel__eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--text-strong);
    font-family: "Oxanium", sans-serif;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4.1rem);
}

h2 {
    font-size: clamp(1.12rem, 4vw, 1.7rem);
}

h3 {
    font-size: 1.08rem;
}

.auth-copy,
.panel__copy,
.hero__subtitle,
.meta,
.empty-state {
    color: var(--muted);
    line-height: 1.5;
}

.hero__subtitle,
.auth-copy {
    max-width: 48rem;
}

.debug-auth {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.field-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--muted-strong);
}

.code-input,
.searchbar__input,
.field {
    width: 100%;
    border: 1px solid rgba(255, 196, 76, 0.14);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(9, 18, 32, 0.92), rgba(18, 33, 57, 0.9));
    color: var(--text-strong);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.code-input::placeholder,
.searchbar__input::placeholder,
.field::placeholder {
    color: rgba(191, 208, 235, 0.58);
}

.code-input:focus,
.searchbar__input:focus,
.field:focus,
.action:focus-visible,
.tabbar__button:focus-visible,
.chip:focus-visible {
    border-color: rgba(255, 197, 75, 0.56);
    box-shadow: 0 0 0 4px rgba(255, 197, 75, 0.14);
}

.action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 12px 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.action:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.action--primary {
    background: linear-gradient(180deg, #ffd56e, #ffbb27 56%, #de8f00);
    color: #1d2437;
    box-shadow: 0 14px 28px rgba(197, 123, 0, 0.28);
}

.action--ghost {
    background: linear-gradient(180deg, rgba(20, 34, 58, 0.9), rgba(10, 20, 34, 0.96));
    color: var(--text);
    border-color: rgba(255, 196, 76, 0.18);
    box-shadow: var(--shadow-md);
}

.action--secondary {
    background: linear-gradient(180deg, rgba(124, 185, 255, 0.28), rgba(32, 72, 120, 0.42));
    color: #d9eeff;
    border-color: rgba(114, 185, 255, 0.24);
}

.action--danger {
    background: linear-gradient(180deg, #ec8558, #ca5928 62%, #8f311b);
    color: #fff7f3;
    box-shadow: 0 14px 28px rgba(143, 49, 27, 0.24);
}

.app {
    display: grid;
    gap: 16px;
}

.hero,
.panel,
.stats-grid article,
.config-card,
.user-item,
.request-card,
.detail-card,
.tabbar {
    animation: rise-in 0.56s ease both;
}

.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius-xl);
}

.hero::after {
    content: "";
    position: absolute;
    right: -4rem;
    top: -4rem;
    width: 16rem;
    height: 16rem;
    border-radius: 40px;
    background:
        linear-gradient(180deg, rgba(255, 197, 75, 0.22), rgba(255, 177, 18, 0.02)),
        linear-gradient(135deg, rgba(114, 185, 255, 0.18), transparent);
    border: 1px solid rgba(255, 196, 76, 0.12);
    transform: rotate(18deg);
}

.hero__copy {
    position: relative;
    z-index: 1;
    max-width: 44rem;
}

.hero__subtitle {
    margin-top: 12px;
}

.hero__rail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 197, 75, 0.12);
    border: 1px solid rgba(255, 197, 75, 0.18);
    color: #ffd979;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-tag--steel {
    background: rgba(114, 185, 255, 0.14);
    border-color: rgba(114, 185, 255, 0.18);
    color: #d7edff;
}

.hero-tag--muted {
    background: rgba(35, 53, 82, 0.58);
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--muted-strong);
}

.hero__aside {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    justify-items: end;
}

.hero__controls {
    display: grid;
    gap: 10px;
    justify-items: end;
}

.hero-plaque {
    display: grid;
    gap: 10px;
    justify-items: stretch;
    width: min(100%, 230px);
}

.hero-plaque__frame {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 214px;
    padding: 18px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(11, 24, 40, 0.96), rgba(6, 14, 25, 0.98)),
        linear-gradient(135deg, rgba(255, 197, 75, 0.18), rgba(114, 185, 255, 0.1));
    border: 1px solid rgba(255, 197, 75, 0.28);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 244, 214, 0.08);
}

.hero-plaque__frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 197, 75, 0.08);
    pointer-events: none;
}

.hero-plaque__crest {
    display: grid;
    place-items: center;
    width: 58px;
    aspect-ratio: 1;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffd76c, #ffb21c 58%, #d78800);
    color: #16263f;
    font-family: "Oxanium", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(197, 123, 0, 0.28);
}

.hero-plaque__logo {
    display: grid;
    gap: 0;
    margin-top: auto;
    font-family: "Oxanium", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: -0.05em;
    color: #ffd46c;
    text-shadow:
        0 3px 0 rgba(153, 94, 0, 0.55),
        0 10px 24px rgba(255, 177, 18, 0.12);
}

.hero-plaque__sub {
    color: #dcecff;
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-plaque__lights {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.hero-plaque__lights span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 197, 75, 0.22);
    border: 1px solid rgba(255, 197, 75, 0.28);
    box-shadow: 0 0 12px rgba(255, 197, 75, 0.14);
}

.hero-plaque__lights span:nth-child(2) {
    background: rgba(114, 185, 255, 0.28);
    border-color: rgba(114, 185, 255, 0.3);
    box-shadow: 0 0 12px rgba(114, 185, 255, 0.14);
}

.hero-plaque__lights span:nth-child(3) {
    background: rgba(114, 219, 170, 0.28);
    border-color: rgba(114, 219, 170, 0.28);
    box-shadow: 0 0 12px rgba(114, 219, 170, 0.14);
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 213, 110, 0.22), rgba(255, 177, 18, 0.16));
    border: 1px solid rgba(255, 196, 76, 0.26);
    color: #ffd978;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    box-shadow: inset 0 1px 0 rgba(255, 244, 214, 0.08);
}

.role-badge.role--admin {
    background: linear-gradient(180deg, rgba(114, 185, 255, 0.24), rgba(42, 86, 145, 0.16));
    border-color: rgba(114, 185, 255, 0.28);
    color: #d8ecff;
}

.tabbar {
    position: sticky;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
}

.tabbar__button,
.chip {
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    padding: 12px 10px;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tabbar__button:hover,
.chip:hover {
    transform: translateY(-1px);
    color: var(--text);
}

.tabbar__button.is-active,
.chip.is-active {
    background: linear-gradient(180deg, #ffd66d, #ffb92a 58%, #de9200);
    color: #1f2739;
    border-color: rgba(255, 223, 150, 0.46);
    box-shadow: 0 12px 26px rgba(197, 123, 0, 0.24);
}

.tab {
    display: none;
    gap: 16px;
}

.tab.is-active {
    display: grid;
}

.stats-grid,
.panel-grid {
    display: grid;
    gap: 16px;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stats-grid article {
    padding: 18px;
    border-radius: 22px;
}

.stats-grid article strong {
    display: block;
    margin-top: 10px;
    color: var(--text-strong);
    font-size: 2.1rem;
    font-family: "Oxanium", sans-serif;
}

.stats-grid article .meta {
    color: #c2d5f4;
}

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

.panel-grid--users {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
}

.panel {
    padding: 18px;
    border-radius: var(--radius-lg);
}

.panel--accent {
    background:
        linear-gradient(135deg, rgba(255, 197, 75, 0.16), rgba(34, 53, 82, 0.94) 42%, rgba(114, 185, 255, 0.12)),
        linear-gradient(180deg, rgba(20, 34, 58, 0.96), rgba(8, 18, 32, 0.96));
}

.panel--danger {
    background:
        linear-gradient(135deg, rgba(221, 112, 68, 0.22), rgba(20, 34, 58, 0.96) 42%, rgba(255, 197, 75, 0.08)),
        linear-gradient(180deg, rgba(20, 34, 58, 0.96), rgba(8, 18, 32, 0.96));
    border-color: rgba(221, 112, 68, 0.22);
}

.panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.searchbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.session-list,
.leaderboard,
.user-list,
.approval-list,
.config-cards,
.config-stack {
    display: grid;
    gap: 12px;
}

.session-item,
.leaderboard__item,
.user-item,
.request-card,
.config-card,
.detail-card {
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(23, 40, 68, 0.82), rgba(13, 25, 42, 0.92)),
        linear-gradient(135deg, rgba(255, 197, 75, 0.06), transparent 40%, rgba(114, 185, 255, 0.06));
    border: 1px solid rgba(255, 196, 76, 0.12);
    padding: 14px;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 244, 214, 0.04);
}

.session-item,
.leaderboard__item,
.user-item__head,
.request-card__head,
.config-card__head,
.detail-card__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.session-item,
.leaderboard__item,
.request-card,
.config-card,
.detail-card {
    position: relative;
}

.session-item::after,
.leaderboard__item::after,
.request-card::after,
.config-card::after,
.detail-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 177, 18, 0.08), rgba(255, 213, 128, 0.34), rgba(114, 185, 255, 0.1));
}

.user-item {
    display: grid;
    gap: 10px;
    cursor: pointer;
}

.user-item.is-selected {
    border-color: rgba(255, 197, 75, 0.42);
    background:
        linear-gradient(180deg, rgba(34, 53, 82, 0.92), rgba(13, 25, 42, 0.96)),
        linear-gradient(135deg, rgba(255, 197, 75, 0.16), transparent 55%);
    box-shadow: 0 0 0 1px rgba(255, 197, 75, 0.14), var(--shadow-md);
}

.meta {
    font-size: 0.9rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: rgba(53, 75, 108, 0.58);
    color: #dce9ff;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6px 10px;
    font-size: 0.76rem;
    font-weight: 800;
}

.pill--pending {
    background: rgba(255, 197, 75, 0.18);
    color: #ffd778;
    border-color: rgba(255, 197, 75, 0.2);
}

.pill--approved {
    background: rgba(114, 219, 170, 0.16);
    color: #9ee8c2;
    border-color: rgba(114, 219, 170, 0.18);
}

.pill--rejected {
    background: rgba(221, 112, 68, 0.16);
    color: #ffb69c;
    border-color: rgba(221, 112, 68, 0.18);
}

.detail-grid,
.config-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.detail-grid > div,
.config-grid > div {
    min-width: 0;
}

.detail-value {
    margin-top: 6px;
    color: var(--text-strong);
    font-size: 1.08rem;
    font-weight: 800;
}

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

.config-actions,
.request-actions,
.detail-actions,
.user-item__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.field-group {
    display: grid;
    gap: 6px;
}

.field-group label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 700;
}

.json-block {
    margin: 0;
    padding: 12px;
    overflow: auto;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(6, 14, 25, 0.96), rgba(16, 30, 51, 0.96));
    border: 1px solid rgba(255, 196, 76, 0.12);
    color: #dce8ff;
    font-size: 0.84rem;
    box-shadow: inset 0 1px 0 rgba(255, 244, 214, 0.04);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.empty-state {
    padding: 14px;
    border-radius: 18px;
    background: rgba(18, 33, 57, 0.46);
    border: 1px dashed rgba(255, 196, 76, 0.12);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
    transform: translateX(-50%);
    max-width: min(92vw, 440px);
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(11, 22, 39, 0.96), rgba(4, 10, 19, 0.98));
    color: var(--text-strong);
    border: 1px solid rgba(255, 196, 76, 0.18);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(8, 18, 32, 0.6);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 197, 75, 0.7), rgba(99, 153, 224, 0.54));
    border-radius: 999px;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-glow {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 18px, 0);
    }
}

@media (max-width: 820px) {
    .panel-grid--users {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .shell {
        padding-left: 12px;
        padding-right: 12px;
    }

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

    .hero__aside {
        justify-items: start;
    }

    .hero__controls,
    .hero-plaque {
        width: 100%;
        justify-items: stretch;
    }

    .tabbar {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 22px;
    }

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

    .panel__header,
    .session-item,
    .leaderboard__item,
    .request-card__head,
    .config-card__head,
    .detail-card__head,
    .user-item__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .action {
        width: 100%;
    }
}
