@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("../fonts/manrope/manrope-latin-variable.woff2") format("woff2");
}

:root {
    --site-bg: #1c1d21;
    --site-bg-soft: #191a1e;
    --site-sidebar: #151619;
    --site-surface: #24262b;
    --site-surface-raised: #2b2d31;
    --site-surface-hover: #35363c;
    --site-border: #383a40;
    --site-border-strong: #474950;
    --site-text: #f2f3f5;
    --site-muted: #b5bac1;
    --site-muted-strong: #dbdee1;
    --site-gold: #d3ad62;
    --site-gold-light: #f1d697;
    --site-gold-dark: #8b692f;
    --site-live: #ef4352;
    --site-header-height: 72px;
    --site-sidebar-width: 248px;
    --site-shadow: 0 22px 55px rgba(0, 0, 0, .32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--site-border-strong) transparent;
    scrollbar-width: thin;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--site-text);
    background:
        radial-gradient(circle at 62% -9%, rgba(211, 173, 98, .07), transparent 32rem),
        radial-gradient(circle at 98% 42%, rgba(91, 64, 122, .05), transparent 26rem),
        var(--site-bg);
    font-family: "Manrope", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 450;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 2000;
    padding: .65rem 1rem;
    border-radius: .6rem;
    color: #18130b;
    background: var(--site-gold-light);
    font-weight: 700;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    min-height: var(--site-header-height);
    border-bottom: 1px solid var(--site-border);
    background: rgba(23, 24, 27, .94);
    backdrop-filter: blur(18px);
}

.site-header .navbar {
    min-height: var(--site-header-height);
}

.site-brand {
    position: relative;
    display: block;
    width: 166px;
    height: 56px;
    flex: 0 0 166px;
    overflow: hidden;
    margin-right: clamp(1.2rem, 3vw, 3.5rem);
    text-decoration: none;
}

.site-brand-logo {
    display: block;
    max-width: none;
    pointer-events: none;
    user-select: none;
}

.site-brand-logo-horizontal {
    width: 166px;
    height: 56px;
    object-fit: contain;
}

.site-brand-logo-stacked {
    display: none;
}

.header-navigation {
    align-items: center;
    gap: .2rem;
}

.header-link {
    position: relative;
    padding: .75rem .9rem;
    color: var(--site-muted);
    font-size: .94rem;
    font-weight: 650;
    text-decoration: none;
    transition: color .18s ease;
}

.header-link::after {
    position: absolute;
    right: .9rem;
    bottom: .25rem;
    left: .9rem;
    height: 2px;
    border-radius: 2px;
    background: var(--site-gold);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .18s ease, transform .18s ease;
}

.header-link:hover,
.header-link.is-active {
    color: var(--site-text);
}

.header-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(25vw, 330px);
}

.header-search i {
    position: absolute;
    left: .85rem;
    z-index: 1;
    color: #949ba4;
    pointer-events: none;
}

.header-search input {
    width: 100%;
    min-height: 40px;
    padding: .55rem .9rem .55rem 2.45rem;
    border: 1px solid var(--site-border);
    border-radius: 11px;
    outline: none;
    color: var(--site-text);
    background: var(--site-surface);
    font-size: .92rem;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.header-search input::placeholder {
    color: #949ba4;
}

.header-search input:focus {
    border-color: rgba(211, 173, 98, .55);
    box-shadow: 0 0 0 3px rgba(211, 173, 98, .1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: .75rem;
}

.btn-gold {
    --bs-btn-color: #1b160d;
    --bs-btn-bg: var(--site-gold);
    --bs-btn-border-color: var(--site-gold);
    --bs-btn-hover-color: #17120a;
    --bs-btn-hover-bg: var(--site-gold-light);
    --bs-btn-hover-border-color: var(--site-gold-light);
    --bs-btn-active-color: #17120a;
    --bs-btn-active-bg: #c49b4e;
    --bs-btn-active-border-color: #c49b4e;
    --bs-btn-focus-shadow-rgb: 211, 173, 98;
    font-weight: 750;
}

.btn-outline-light {
    --bs-btn-color: var(--site-muted-strong);
    --bs-btn-border-color: var(--site-border-strong);
    --bs-btn-hover-color: var(--site-text);
    --bs-btn-hover-bg: var(--site-surface-hover);
    --bs-btn-hover-border-color: #5b5d66;
}

.btn-login {
    --bs-btn-color: var(--site-muted-strong);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--site-text);
    --bs-btn-hover-bg: rgba(255, 255, 255, .06);
    --bs-btn-hover-border-color: transparent;
    font-weight: 650;
}

.user-account-toggle {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: .65rem;
    padding: .28rem .45rem .28rem .32rem;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--site-text);
    background: transparent;
    text-align: left;
    transition: border-color .18s ease, background .18s ease;
}

.user-account-toggle:hover,
.user-account-toggle[aria-expanded="true"] {
    border-color: var(--site-border);
    background: var(--site-surface);
}

.user-account-toggle:focus-visible {
    outline: 3px solid rgba(211, 173, 98, .2);
    outline-offset: 2px;
}

.user-avatar-monogram {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(241, 214, 151, .4);
    border-radius: 10px;
    color: #21190c;
    background: linear-gradient(145deg, var(--site-gold-light), #ac7d34);
    box-shadow: inset 0 1px rgba(255, 255, 255, .46);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .02em;
}

.user-account-copy {
    min-width: 0;
    max-width: 145px;
    flex-direction: column;
    line-height: 1.15;
}

.user-account-copy strong,
.user-account-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-account-copy strong {
    font-size: .82rem;
    font-weight: 750;
}

.user-account-copy small {
    margin-top: .22rem;
    color: var(--site-muted);
    font-size: .68rem;
    font-weight: 600;
}

.user-account-chevron {
    color: var(--site-muted);
    font-size: .65rem;
    transition: transform .18s ease;
}

.user-account-toggle[aria-expanded="true"] .user-account-chevron {
    transform: rotate(180deg);
}

.user-account-menu {
    --bs-dropdown-link-active-bg: rgba(211, 173, 98, .11);
    --bs-dropdown-link-active-color: var(--site-gold-light);
    min-width: 270px;
    margin-top: .55rem !important;
    padding: .5rem;
    border: 1px solid var(--site-border-strong);
    border-radius: 14px;
    color: var(--site-text);
    background: rgba(43, 45, 49, .98);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .44);
    backdrop-filter: blur(18px);
}

.user-account-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .75rem;
    padding: .55rem .55rem .65rem;
}

.user-avatar-monogram-lg {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: .88rem;
}

.user-account-summary strong,
.user-account-summary small,
.user-account-summary em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-account-summary strong {
    font-size: .88rem;
    font-weight: 760;
}

.user-account-summary small {
    margin-top: .1rem;
    color: var(--site-muted);
    font-size: .72rem;
}

.user-account-summary em {
    margin-top: .25rem;
    color: var(--site-gold-light);
    font-size: .68rem;
    font-style: normal;
    font-weight: 700;
}

.user-account-menu .dropdown-divider {
    margin: .35rem .3rem;
    border-color: var(--site-border);
}

.user-account-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: .72rem;
    padding: .63rem .7rem;
    border: 0;
    border-radius: 9px;
    color: var(--site-muted-strong);
    background: transparent;
    font-size: .82rem;
    font-weight: 650;
}

.user-account-menu .dropdown-item i {
    width: 18px;
    color: var(--site-muted);
    text-align: center;
}

.user-account-menu .user-menu-meta {
    margin-left: auto;
    color: var(--site-muted);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .01em;
}

.user-account-menu .dropdown-item:hover .user-menu-meta,
.user-account-menu .dropdown-item:focus .user-menu-meta {
    color: var(--site-muted-strong);
}

.user-account-menu .dropdown-item:hover,
.user-account-menu .dropdown-item:focus,
.user-account-menu .dropdown-item.active {
    color: var(--site-text);
    background: var(--site-surface-hover);
}

.user-account-menu .dropdown-item.active i {
    color: var(--site-gold-light);
}

.user-account-menu .user-menu-logout {
    width: 100%;
    color: #ffb3b8;
}

.user-account-menu .user-menu-logout i {
    color: #f17a84;
}

.user-account-menu .user-menu-logout:hover,
.user-account-menu .user-menu-logout:focus {
    color: #ffd1d5;
    background: rgba(239, 67, 82, .1);
}

.site-shell {
    display: grid;
    grid-template-columns: var(--site-sidebar-width) minmax(0, 1fr);
    min-height: calc(100vh - var(--site-header-height));
}

.site-sidebar {
    position: sticky;
    top: var(--site-header-height);
    align-self: start;
    height: calc(100vh - var(--site-header-height));
    padding: 1.3rem .9rem 1rem;
    overflow-y: auto;
    border-right: 1px solid var(--site-border);
    background: var(--site-sidebar);
}

.site-sidebar section + section {
    margin-top: 1.7rem;
}

.sidebar-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 .65rem .55rem;
    color: #949ba4;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.live-pulse,
.online-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35cb8b;
    box-shadow: 0 0 0 4px rgba(53, 203, 139, .09);
}

.streamer-link {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .62rem;
    min-height: 52px;
    padding: .42rem .58rem;
    border-radius: 10px;
    color: var(--site-muted-strong);
    text-decoration: none;
    transition: color .16s ease, background .16s ease;
}

.streamer-link:hover,
.streamer-link.is-active {
    color: var(--site-text);
    background: var(--site-surface-hover);
}

.streamer-link.is-active {
    box-shadow: inset 2px 0 var(--site-gold);
}

.streamer-link .bi-broadcast-pin {
    color: var(--site-live);
    font-size: .88rem;
}

.streamer-rank {
    width: 20px;
    color: #949ba4;
    font-size: .78rem;
    font-weight: 800;
}

.streamer-avatar,
.host-avatar {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--site-muted-strong);
    background: var(--site-surface-hover);
    font-size: .74rem;
    font-weight: 800;
}

.streamer-avatar {
    width: 30px;
    height: 30px;
    border-radius: 9px;
}

.avatar-gold { color: #1d170c; background: linear-gradient(135deg, #f0d493, #96702d); }
.avatar-blue { background: linear-gradient(135deg, #497db4, #233a62); }
.avatar-red { background: linear-gradient(135deg, #be5d57, #61262d); }
.avatar-purple { background: linear-gradient(135deg, #8b67bc, #45305f); }
.avatar-green { background: linear-gradient(135deg, #4a987b, #214c41); }

.streamer-link strong,
.streamer-link small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.streamer-link strong {
    font-size: .9rem;
    font-weight: 680;
}

.streamer-link small {
    margin-top: .12rem;
    color: var(--site-muted);
    font-size: .78rem;
}

.sidebar-categories button {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    width: 100%;
    padding: .58rem .65rem;
    border: 0;
    border-radius: 9px;
    color: var(--site-muted-strong);
    background: transparent;
    font-size: .9rem;
    font-weight: 550;
    text-align: left;
}

.sidebar-categories button:hover {
    color: var(--site-text);
    background: var(--site-surface-hover);
}

.sidebar-categories button i {
    color: #949ba4;
}

.sidebar-categories button small {
    color: var(--site-muted);
    font-size: .78rem;
}

.sidebar-community {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .7rem;
    margin: 1.7rem .25rem 0;
    padding: .85rem;
    border: 1px solid rgba(211, 173, 98, .2);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(211, 173, 98, .1), rgba(211, 173, 98, .025));
}

.sidebar-community > i {
    color: var(--site-gold);
}

.sidebar-community strong,
.sidebar-community small {
    display: block;
}

.sidebar-community strong {
    font-size: .86rem;
}

.sidebar-community small {
    margin-top: .25rem;
    color: var(--site-muted);
    font-size: .76rem;
    line-height: 1.45;
}

.account-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem .8rem;
}

.account-sidebar-user {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .72rem;
    padding: .75rem;
    border: 1px solid var(--site-border);
    border-radius: 13px;
    color: var(--site-text);
    background: linear-gradient(145deg, rgba(211, 173, 98, .09), rgba(255, 255, 255, .018));
    text-decoration: none;
}

.account-sidebar-user:hover {
    border-color: rgba(211, 173, 98, .36);
    color: var(--site-text);
}

.account-sidebar-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(241, 214, 151, .4);
    border-radius: 12px;
    color: #20180b;
    background: linear-gradient(145deg, #f1d697, #ba8b3e);
    font-size: .82rem;
    font-weight: 800;
}

.account-sidebar-user small,
.account-sidebar-user strong,
.account-sidebar-user em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-sidebar-user small {
    color: var(--site-gold-light);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.account-sidebar-user strong {
    margin-top: .08rem;
    font-size: .9rem;
    font-weight: 730;
}

.account-sidebar-user em {
    margin-top: .08rem;
    color: var(--site-muted);
    font-size: .74rem;
    font-style: normal;
}

.account-navigation {
    display: grid;
    gap: 1.2rem;
}

.account-sidebar .account-navigation-group + .account-navigation-group {
    margin-top: 0;
}

.account-navigation-heading {
    margin: 0 .6rem .38rem;
    color: #949ba4;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.account-navigation-links {
    display: grid;
    gap: .16rem;
}

.account-navigation-link {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: .55rem;
    min-height: 43px;
    padding: .5rem .62rem;
    border-radius: 9px;
    color: var(--site-muted-strong);
    font-size: .88rem;
    font-weight: 620;
    text-decoration: none;
    transition: color .16s ease, background .16s ease, box-shadow .16s ease;
}

.account-navigation-link > i:first-child {
    color: #949ba4;
    font-size: .92rem;
    text-align: center;
}

.account-navigation-link:hover,
.account-navigation-link.is-active {
    color: var(--site-text);
    background: var(--site-surface-hover);
}

.account-navigation-link.is-active {
    box-shadow: inset 2px 0 var(--site-gold);
}

.account-navigation-link.is-active > i:first-child {
    color: var(--site-gold-light);
}

.account-navigation-chevron {
    color: #737780;
    font-size: .67rem;
}

.account-sidebar-help {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: .65rem;
    margin-top: auto;
    padding: .75rem;
    border: 1px solid var(--site-border);
    border-radius: 11px;
    color: var(--site-muted);
    background: rgba(255, 255, 255, .018);
}

.account-sidebar-help > i {
    color: var(--site-gold);
}

.account-sidebar-help strong,
.account-sidebar-help small {
    display: block;
}

.account-sidebar-help strong {
    color: var(--site-muted-strong);
    font-size: .8rem;
}

.account-sidebar-help small {
    margin-top: .18rem;
    font-size: .73rem;
    line-height: 1.42;
}

.site-content {
    min-width: 0;
    max-width: 1680px;
    padding: clamp(1.25rem, 2.5vw, 2.5rem) clamp(1rem, 3.4vw, 3.8rem) 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .012), transparent 28rem);
}

.section-kicker {
    margin: 0 0 .35rem;
    color: var(--site-gold);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.account-content-page {
    width: min(100%, 1100px);
    margin-inline: auto;
}

.account-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.account-page-heading h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 790;
    letter-spacing: -.045em;
}

.account-page-heading > div > p:last-child {
    max-width: 680px;
    margin: .5rem 0 0;
    color: var(--site-muted);
    font-size: .91rem;
    line-height: 1.55;
}

.account-page-badge {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    flex: 0 0 auto;
    padding: .42rem .68rem;
    border: 1px solid rgba(211, 173, 98, .26);
    border-radius: 999px;
    color: var(--site-gold-light);
    background: rgba(211, 173, 98, .08);
    font-size: .73rem;
    font-weight: 720;
}

.account-panel {
    padding: clamp(1.15rem, 2.4vw, 1.55rem);
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: var(--site-surface);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
}

.account-panel-heading {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.account-panel-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: var(--site-gold-light);
    background: rgba(211, 173, 98, .1);
}

.account-panel-heading h2 {
    margin: 0;
    color: var(--site-text);
    font-size: 1rem;
    font-weight: 750;
}

.account-panel-heading p {
    margin: .2rem 0 0;
    color: var(--site-muted);
    font-size: .82rem;
}

.account-empty-state {
    display: grid;
    min-height: 270px;
    margin-top: 1.15rem;
    padding: 2rem;
    place-items: center;
    border: 1px dashed var(--site-border-strong);
    border-radius: 13px;
    background: rgba(15, 16, 18, .22);
    text-align: center;
}

.account-empty-state > div {
    max-width: 480px;
}

.account-empty-state i {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto .85rem;
    place-items: center;
    border-radius: 16px;
    color: var(--site-gold-light);
    background: rgba(211, 173, 98, .1);
    font-size: 1.35rem;
}

.account-empty-state h2,
.account-empty-state h3 {
    margin: 0;
    color: var(--site-text);
    font-size: 1.03rem;
    font-weight: 750;
}

.account-empty-state p {
    margin: .45rem 0 0;
    color: var(--site-muted);
    font-size: .84rem;
    line-height: 1.6;
}

.account-information-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.account-information-card {
    min-height: 168px;
    padding: 1.15rem;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    background: var(--site-surface);
}

.account-information-card > i {
    color: var(--site-gold-light);
    font-size: 1.1rem;
}

.account-information-card h2 {
    margin: .75rem 0 .3rem;
    color: var(--site-text);
    font-size: .96rem;
    font-weight: 750;
}

.account-information-card p {
    margin: 0;
    color: var(--site-muted);
    font-size: .8rem;
    line-height: 1.55;
}

.account-information-card small {
    display: inline-block;
    margin-top: .75rem;
    color: var(--site-gold-light);
    font-size: .7rem;
    font-weight: 700;
}

.account-panel-spaced {
    margin-top: .9rem;
}

.account-empty-state-compact {
    min-height: 190px;
    margin-top: 0;
}

.account-information-card-danger > i,
.account-information-card-danger small {
    color: #f09aa2;
}

.site-footer {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.5rem;
    padding: 1.45rem .2rem .65rem;
    border-top: 1px solid var(--site-border-strong);
    color: var(--site-muted);
    font-size: .88rem;
    font-weight: 550;
}

.site-footer-identity {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.site-footer-brand {
    display: block;
    width: 116px;
    height: 38px;
    overflow: hidden;
}

.site-footer-brand img {
    display: block;
    width: 116px;
    height: 38px;
    object-fit: contain;
}

.site-footer nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-footer a {
    padding: .3rem 0;
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--site-gold-light);
}

.mobile-navigation {
    display: none;
}

.not-found-page {
    display: flex;
    min-height: 65vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 640px;
}

.not-found-code {
    color: rgba(211, 173, 98, .22);
    font-size: clamp(5rem, 14vw, 10rem);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .8;
}

.not-found-page h1 {
    margin: .2rem 0 .7rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
}

.not-found-page > p:not(.section-kicker) {
    margin-bottom: 1.4rem;
    color: var(--site-muted);
}

@media (max-width: 1199.98px) {
    :root {
        --site-sidebar-width: 214px;
    }

    .header-search {
        width: min(24vw, 260px);
    }
}

@media (max-width: 991.98px) {
    .site-shell {
        grid-template-columns: 1fr;
    }

    .site-sidebar {
        display: none;
    }

    .site-sidebar.account-sidebar {
        position: sticky;
        top: var(--site-header-height);
        z-index: 1015;
        display: block;
        height: auto;
        padding: .55rem .9rem;
        overflow-x: auto;
        overflow-y: hidden;
        border-right: 0;
        border-bottom: 1px solid var(--site-border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
        scrollbar-width: none;
    }

    .site-sidebar.account-sidebar::-webkit-scrollbar {
        display: none;
    }

    .account-sidebar-user,
    .account-sidebar-help,
    .account-navigation-heading {
        display: none;
    }

    .account-navigation {
        display: flex;
        width: max-content;
        gap: .25rem;
    }

    .account-navigation-group,
    .account-navigation-links {
        display: contents;
    }

    .account-navigation-link {
        display: inline-flex;
        min-height: 38px;
        gap: .42rem;
        padding: .45rem .68rem;
        white-space: nowrap;
    }

    .account-navigation-link.is-active {
        box-shadow: inset 0 -2px var(--site-gold);
    }

    .account-navigation-chevron {
        display: none;
    }

    .header-search {
        width: min(35vw, 260px);
    }
}

@media (max-width: 767.98px) {
    :root {
        --site-header-height: 64px;
    }

    body {
        padding-bottom: 76px;
    }

    .site-brand {
        width: 122px;
        height: 44px;
        flex-basis: 122px;
        margin-right: .6rem;
    }

    .site-brand-logo-horizontal {
        width: 122px;
        height: 44px;
    }

    .header-search {
        width: 42px;
        margin-left: auto;
    }

    .header-search input {
        width: 42px;
        padding: 0;
        color: transparent;
        cursor: pointer;
    }

    .header-search input::placeholder {
        color: transparent;
    }

    .header-search input:focus {
        position: fixed;
        top: 11px;
        right: .75rem;
        left: .75rem;
        z-index: 10;
        width: calc(100% - 1.5rem);
        padding: .55rem .9rem .55rem 2.45rem;
        color: var(--site-text);
        cursor: text;
    }

    .header-search:focus-within i {
        position: fixed;
        top: 31px;
        left: 1.6rem;
        z-index: 11;
    }

    .header-actions {
        margin-left: .45rem;
    }

    .site-content {
        padding: 1.1rem .9rem 1rem;
    }

    .account-page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-information-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-navigation {
        position: fixed;
        right: .65rem;
        bottom: .65rem;
        left: .65rem;
        z-index: 1040;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        min-height: 62px;
        padding: .35rem;
        border: 1px solid var(--site-border-strong);
        border-radius: 17px;
        background: rgba(43, 45, 49, .96);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .48);
        backdrop-filter: blur(18px);
    }

    .mobile-navigation a,
    .mobile-navigation button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .15rem;
        border: 0;
        border-radius: 11px;
        color: var(--site-muted);
        background: transparent;
        font-size: .74rem;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-navigation i {
        font-size: 1.05rem;
    }

    .mobile-navigation .is-active {
        color: var(--site-gold-light);
        background: rgba(211, 173, 98, .08);
    }
}

@media (max-width: 479.98px) {
    .site-brand {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        overflow: visible;
    }

    .site-brand-logo-horizontal {
        display: none;
    }

    .site-brand-logo-stacked {
        display: block;
        width: 46px;
        height: 46px;
        object-fit: contain;
    }

    .header-actions .btn-gold {
        padding-inline: .65rem;
        font-size: .72rem;
    }

    .user-account-toggle {
        min-height: 42px;
        gap: .4rem;
        padding: .2rem .3rem;
    }

    .user-account-menu {
        min-width: min(270px, calc(100vw - 1.5rem));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
.seller-inline-avatar{display:inline-flex;width:24px;height:24px;border-radius:50%;overflow:hidden;vertical-align:middle;margin-right:6px;flex-shrink:0}
[data-avatar-preview][hidden]{display:none!important}
