:root {
    --bg: #070302;
    --bg2: #0d0704;
    --panel: #120904;
    --panel2: #1b0d06;
    --card: #2b1409;
    --line: rgba(255, 184, 116, .14);
    --line2: rgba(255, 210, 160, .22);
    --text: #fff7f0;
    --muted: #8f796c;
    --muted2: #cab7aa;
    --orange: #ff6a1a;
    --orange2: #ff9a4c;
    --gold: #efcf84;
    --silver: #dedad1;
    --bronze: #c98857;
    --radius: 30px;
    --shadow: 0 24px 90px rgba(0, 0, 0, .42)
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif
}

button {
    font: inherit;
    color: inherit
}

a {
    color: inherit
}

body {
    background: radial-gradient(circle at 50% -8%, rgba(255, 106, 26, .24), transparent 32%), radial-gradient(circle at 20% 26%, rgba(255, 106, 26, .12), transparent 22%), linear-gradient(180deg, #120804 0%, #050201 72%)
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image: radial-gradient(circle, rgba(255, 194, 131, .45) 1px, transparent 1.3px);
    background-size: 14px 14px;
    mask-image: radial-gradient(circle at 50% 4%, #000, transparent 50%)
}

.app-shell {
    width: min(1320px, calc(100% - 34px));
    margin: 0 auto;
    padding: 30px 0 58px;
    position: relative
}

.site-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px
}

.kicker {
    color: var(--orange2);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase
}

.site-header h1 {
    margin: 7px 0 7px;
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: -.065em;
    line-height: .9
}

.site-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.header-meta {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .035);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted2);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap
}

.stage {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: end center;
    padding: 28px 0 44px;
    margin-bottom: 14px;
    border-radius: 38px;
    background: radial-gradient(circle at 50% 38%, rgba(255, 106, 26, .18), transparent 38%), linear-gradient(180deg, rgba(42, 18, 7, .2), rgba(6, 2, 1, .42));
    overflow: hidden
}

.podium {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 22px;
    align-items: end;
    perspective: 1100px
}

.podium-slot {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    min-width: 0;
    text-align: center;
    cursor: pointer;
    position: relative;
    color: var(--text);
    transform-style: preserve-3d
}

.podium-slot:hover .podium-platform {
    transform: translateY(-6px) rotateX(0deg);
    border-color: rgba(255, 184, 116, .26)
}

.podium-person {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 22px;
    position: relative;
    z-index: 5
}

.podium-avatar,
.empty-avatar {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    object-fit: cover;
    background: #120904;
    border: 1px solid var(--line2);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .38)
}

.rank-1 .podium-avatar,
.rank-1 .empty-avatar {
    width: 112px;
    height: 112px;
    border-radius: 28px
}

.empty-avatar {
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 34px;
    font-weight: 950
}

.podium-name-row {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding-bottom: 8px;
}

.name-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    max-width: 100%
}

.podium-name,
.user-name,
.modal-name {
    font-weight: 950;
    letter-spacing: -.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.podium-name {
    font-size: 24px;
    max-width: 220px
}

.rank-1 .podium-name {
    font-size: 28px;
    max-width: 260px
}

.painted-name {
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none
}

.podium-platform {
    position: relative;
    min-height: 178px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(76, 34, 14, .98), rgba(43, 18, 7, .98) 58%, rgba(20, 8, 3, .99));
    box-shadow: inset 0 1px rgba(255, 255, 255, .06), inset 0 -42px 55px rgba(0, 0, 0, .18), 0 34px 84px rgba(0, 0, 0, .48);
    padding: 44px 28px 26px;
    transition: transform .18s ease, border-color .18s ease;
    transform: rotateX(0deg);
    overflow: visible
}

.podium-platform:before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: -34px;
    height: 46px;
    border: 1px solid rgba(255, 184, 116, .16);
    border-bottom: 0;
    border-radius: 22px 22px 8px 8px;
    background: linear-gradient(180deg, rgba(107, 50, 22, .98), rgba(57, 24, 9, .98));
    transform-origin: bottom center;
    transform: rotateX(62deg);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08)
}

.podium-platform:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 28px;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, rgba(42, 17, 7, .95), rgba(8, 3, 1, .98));
    border: 1px solid rgba(255, 184, 116, .08);
    border-top: 0;
    transform: skewX(-8deg);
    filter: brightness(.82);
    z-index: -1
}

.rank-1 .podium-platform {
    min-height: 220px;
    background: linear-gradient(180deg, rgba(92, 42, 18, .99), rgba(50, 20, 8, .99) 58%, rgba(21, 8, 3, .99))
}

.rank-1 .podium-platform:before {
    background: linear-gradient(180deg, rgba(128, 60, 26, .99), rgba(65, 28, 11, .99))
}

.rank-2 .podium-platform {
    min-height: 170px
}

.rank-3 .podium-platform {
    min-height: 160px
}

.trophy-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 226, 170, .38);
    background: linear-gradient(180deg, #f4dc94, #c6943e);
    color: #241003;
    font-size: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .36);
    z-index: 3
}

.rank-2 .trophy-badge {
    filter: saturate(.25) brightness(1.18)
}

.rank-3 .trophy-badge {
    filter: saturate(.75) sepia(.25)
}

.podium-msgs {
    margin-top: 18px;
    color: var(--muted2);
    font-size: 12px;
    font-weight: 850
}

.podium-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 170, .18), transparent);
    margin: 18px 0
}

.prize-main {
    font-size: 24px;
    font-weight: 950;
    letter-spacing: .02em
}

.rank-1 .prize-main {
    font-size: 30px
}

.prize-star {
    color: var(--orange2);
    margin-right: 6px
}

.prize-label {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800
}

.rank-note {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 9px 13px;
    color: var(--muted2);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 10px 0 18px
}

.metric-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(18, 8, 4, .78);
    backdrop-filter: blur(14px);
    padding: 18px 20px
}

.metric-card span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em
}

.metric-card b {
    display: block;
    margin-top: 9px;
    font-size: 31px;
    letter-spacing: -.055em
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 16px;
    align-items: start
}

.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(14, 7, 3, .82);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    overflow: hidden
}

.panel-head {
    min-height: 72px;
    padding: 19px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 180, 101, .1)
}

.panel-head.small {
    min-height: 64px
}

.panel-head h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -.04em
}

.panel-head p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px
}

.table {
    display: flex;
    flex-direction: column
}

.row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 120px 100px;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 180, 101, .075);
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
    cursor: pointer
}

.row.head {
    min-height: 48px;
    cursor: default;
    background: linear-gradient(90deg, rgba(80, 35, 14, .42), rgba(28, 12, 5, .28));
    color: var(--muted2);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em
}

.row.head:hover {
    transform: none
}

.row:hover,
.emote-row:hover {
    background: rgba(255, 255, 255, .025);
    transform: translateY(-2px)
}

.serial {
    color: var(--muted2);
    font-weight: 900
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0
}

.user-cell>img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line2);
    background: #170b05;
    flex: 0 0 auto
}

.user-copy {
    min-width: 0
}

.user-name {
    font-size: 15px;
    max-width: 250px
}

.value,
.prize-small {
    font-weight: 900
}

.prize-small {
    color: var(--orange2)
}

.badge-row {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto
}

.badge-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block
}

.side-panels {
    display: grid;
    gap: 16px
}

.emote-list {
    display: flex;
    flex-direction: column
}

.emote-row {
    position: relative;
    display: grid;
    grid-template-columns: 48px 52px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 11px 16px;
    border-top: 1px solid rgba(255, 180, 101, .075);
    transition: transform .16s ease, background .16s ease
}

.emote-rank {
    color: var(--muted2);
    font-weight: 950
}

.emote-preview {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    display: grid;
    place-items: center;
    overflow: hidden
}

.emote-preview img {
    max-width: 38px;
    max-height: 38px;
    object-fit: contain
}

.emote-fallback {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 106, 26, .12);
    color: var(--orange2);
    font-weight: 900
}

.emote-info {
    min-width: 0
}

.emote-info b {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px
}

.emote-info span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800
}

.emote-count {
    text-align: right;
    font-weight: 950;
    color: var(--orange2)
}

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

.split-panel>div:first-child {
    border-right: 1px solid rgba(255, 180, 101, .1)
}

.mini-list {
    padding: 7px 0
}

.mini-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 18px;
    border-top: 1px solid rgba(255, 180, 101, .075);
    font-weight: 850
}

.mini-item:first-child {
    border-top: 0
}

.mini-item span:first-child {
    overflow: hidden;
    text-overflow: ellipsis
}

.mini-item span:last-child {
    color: var(--orange2);
    font-weight: 950
}

.empty {
    padding: 22px;
    color: var(--muted);
    text-align: center;
    font-weight: 800
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    padding: 24px;
    z-index: 40
}

.modal.is-open {
    display: grid
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(5, 2, 1, .76);
    backdrop-filter: blur(14px)
}

.user-card {
    position: relative;
    width: min(720px, 100%);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(14, 7, 3, .94);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .55);
    overflow: hidden
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    cursor: pointer;
    z-index: 3
}

.user-card-head {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 180, 101, .1);
    background: linear-gradient(90deg, rgba(255, 106, 26, .11), transparent)
}

.profile-img {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    object-fit: cover;
    border: 1px solid var(--line2)
}

.user-card-head h3 {
    margin: 0;
    font-size: 32px;
    letter-spacing: -.055em
}

.modal-name {
    font-size: 32px;
    max-width: 470px
}

.user-card-head a {
    display: block;
    margin-top: 5px;
    color: var(--muted2);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none
}

.card-body {
    padding: 18px 24px 24px;
    display: grid;
    gap: 16px
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.stat {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .032);
    padding: 14px
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em
}

.stat b {
    display: block;
    margin-top: 7px;
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere
}

.inner-panel {
    box-shadow: none;
    border-radius: 22px
}

.connect-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px
}

.connect-shell {
    width: min(1060px, 100%)
}

.connect-head {
    text-align: center;
    margin-bottom: 20px
}

.connect-head h1 {
    margin: 9px 0 8px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: .92;
    letter-spacing: -.06em
}

.connect-head p {
    max-width: 780px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.6
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.connect-card,
.footer-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(14, 7, 3, .82);
    box-shadow: var(--shadow);
    padding: 23px
}

.connect-card h2 {
    margin: 6px 0 10px;
    font-size: 27px;
    letter-spacing: -.045em
}

.connect-card p,
.footer-card,
.connect-status p {
    color: var(--muted);
    line-height: 1.55
}

.connect-status {
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .032);
    padding: 14px;
    min-height: 88px
}

.connect-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px
}

.connect-btn {
    border: 1px solid rgba(255, 106, 26, .38);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 106, 26, .36), rgba(84, 34, 11, .5));
    color: #fff;
    padding: 12px 15px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none
}

.connect-btn.secondary {
    background: rgba(255, 255, 255, .035);
    border-color: var(--line)
}

.ok {
    color: #70d99f;
    font-weight: 900
}

.bad {
    color: #f0ca72;
    font-weight: 900
}

.scope-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px
}

.scope-pill {
    font-size: 12px;
    font-weight: 850;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted2);
    background: rgba(255, 255, 255, .035)
}

code {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 2px 6px;
    color: var(--text)
}

@media(max-width:1000px) {
    .content-grid {
        grid-template-columns: 1fr
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:860px) {
    .app-shell {
        width: min(100% - 20px, 1320px);
        padding-top: 22px
    }

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

    .podium {
        grid-template-columns: 1fr
    }

    .podium-platform,
    .rank-1 .podium-platform {
        min-height: 180px
    }

    .stage {
        min-height: auto
    }

    .stats-row {
        grid-template-columns: 1fr
    }

    .row {
        grid-template-columns: 56px minmax(0, 1fr) 84px
    }

    .row>div:nth-child(4) {
        display: none
    }

    .split-panel {
        grid-template-columns: 1fr
    }

    .split-panel>div:first-child {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 180, 101, .1)
    }

    .stat-grid,
    .connect-grid {
        grid-template-columns: 1fr
    }

    .rank-note {
        position: static;
        transform: none;
        margin-top: 16px;
        text-align: center;
        white-space: normal
    }

    .modal-name {
        max-width: 100%
    }
}

@media(max-width:560px) {
    .row {
        grid-template-columns: 46px minmax(0, 1fr) 70px;
        padding: 12px
    }

    .emote-row {
        grid-template-columns: 40px 48px minmax(0, 1fr) 54px;
        padding: 10px 12px
    }

    .user-card-head {
        flex-direction: column;
        align-items: flex-start
    }

    .site-header h1 {
        font-size: 42px
    }

    .podium-name,
    .rank-1 .podium-name {
        font-size: 22px;
        max-width: 220px
    }
}

/* v6 polish fixes */
body {
    background: linear-gradient(180deg, #100804 0%, #070302 78%);
}

body:before {
    opacity: .14;
    mask-image: linear-gradient(180deg, #000 0%, transparent 42%)
}

.stage {
    background: transparent;
    box-shadow: none;
    border: 0;
    min-height: 420px;
    padding-top: 16px;
    overflow: visible;
}

.stage:before {
    display: none
}

.podium {
    gap: 26px;
    align-items: end
}

.podium-slot:hover .podium-platform {
    transform: translateY(-5px)
}

.podium-person {
    margin-bottom: 18px
}

.podium-platform {
    border-radius: 22px 22px 26px 26px;
    background: linear-gradient(180deg, #5a2b13 0%, #3b1a0b 46%, #1c0903 100%);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08), inset 0 -46px 60px rgba(0, 0, 0, .28), 0 28px 50px rgba(0, 0, 0, .44);
}

.podium-platform:before {
    left: 0;
    right: 0;
    top: -38px;
    height: 46px;
    border-radius: 20px 20px 7px 7px;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
    transform: rotateX(58deg);
    background: linear-gradient(180deg, #79401f, #4a210d);
}

.podium-platform:after {
    left: 0;
    right: 0;
    bottom: -22px;
    height: 34px;
    transform: none;
    background: linear-gradient(180deg, #2b1006, #0a0301);
    border-radius: 0 0 28px 28px;
}

.rank-1 .podium-platform {
    background: linear-gradient(180deg, #6b3518 0%, #421c0c 48%, #1d0903 100%)
}

.rank-1 .podium-platform:before {
    background: linear-gradient(180deg, #8a4825, #542610)
}

.podium-name-row .badge-row {
    gap: 5px;
    margin-right: 2px
}

.podium-name-row .badge-img {
    width: 22px;
    height: 22px
}

.podium-name {
    font-size: 27px;
    line-height: 1.05
}

.rank-1 .podium-name {
    font-size: 31px
}

.user-cell>img {
    width: 50px;
    height: 50px
}

.row {
    min-height: 74px
}

.user-name {
    font-size: 18px;
    line-height: 1.05
}

.user-copy .badge-img {
    width: 20px;
    height: 20px
}

.user-copy .name-line {
    gap: 7px
}

.serial,
.value,
.prize-small {
    font-size: 15px
}

.modal-name {
    font-size: 34px;
    line-height: 1.05
}

.user-card-head h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.user-card-head .badge-img {
    width: 26px;
    height: 26px
}

.user-card-head .name-line {
    gap: 7px
}

.profile-img {
    width: 90px;
    height: 90px
}

.loading-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 9px;
    color: var(--muted2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .035)
}

.emote-preview {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    padding: 4px;
    background: rgba(255, 255, 255, .025)
}

.emote-preview img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    display: block
}

.emote-row {
    grid-template-columns: 48px 58px minmax(0, 1fr) 72px;
    min-height: 72px
}

.emote-info b {
    font-size: 15px
}

.search-panel {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(14, 7, 3, .72);
    backdrop-filter: blur(14px);
    padding: 16px 18px;
    margin: 0 0 14px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, .25)
}

.search-panel span {
    display: block;
    color: var(--orange2);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase
}

.search-panel p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750
}

.search-wrap {
    position: relative
}

.search-wrap input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    outline: none;
    padding: 0 18px;
    font: inherit;
    font-weight: 800
}

.search-wrap input:focus {
    border-color: rgba(255, 154, 76, .45)
}

.search-wrap input::placeholder {
    color: rgba(202, 183, 170, .55)
}

.search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 30;
    display: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(18, 8, 4, .98);
    box-shadow: 0 24px 74px rgba(0, 0, 0, .5);
    backdrop-filter: blur(18px)
}

.search-results.is-open {
    display: block
}

.search-result {
    appearance: none;
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(255, 180, 101, .08);
    background: transparent;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    text-align: left;
    cursor: pointer
}

.search-result:first-child {
    border-top: 0
}

.search-result:hover {
    background: rgba(255, 255, 255, .045)
}

.search-result img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line)
}

.search-result b {
    text-align: right;
    color: var(--orange2);
    font-size: 13px
}

.search-name {
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -.035em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.search-result .badge-img {
    width: 18px;
    height: 18px
}

.search-empty {
    padding: 16px;
    color: var(--muted2);
    font-size: 13px;
    font-weight: 800;
    text-align: center
}

@media(max-width:860px) {
    .search-panel {
        grid-template-columns: 1fr
    }

    .podium {
        gap: 44px
    }

    .podium-platform:before {
        top: -30px;
        height: 38px
    }

    .podium-name,
    .rank-1 .podium-name {
        font-size: 24px
    }

    .podium-name-row .badge-img {
        width: 20px;
        height: 20px
    }
}

/* v7 header/search/mobile polish */
:root {
    scrollbar-color: #8b441f #080302;
    scrollbar-width: thin
}

html {
    scrollbar-color: #8b441f #080302;
    scrollbar-width: thin
}

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

::-webkit-scrollbar-track {
    background: #080302
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #b8662e, #53240f);
    border: 3px solid #080302;
    border-radius: 999px
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d47a38, #6d3014)
}

.site-header-simple {
    margin-bottom: 18px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(255, 180, 101, .1);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none
}

.header-title-block {
    max-width: 760px
}

.site-header-simple h1 {
    margin: 7px 0 6px;
    font-size: clamp(38px, 5.2vw, 70px);
    line-height: .9;
    letter-spacing: -.07em
}

.site-header-simple p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.55
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap
}

.header-btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(255, 180, 101, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: var(--text);
    text-decoration: none;
    padding: 0 14px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .02em;
    cursor: pointer
}

.header-btn.primary {
    border-color: rgba(255, 106, 26, .45);
    background: linear-gradient(180deg, rgba(255, 106, 26, .33), rgba(74, 30, 10, .45))
}

.header-btn:hover {
    border-color: rgba(255, 180, 101, .36)
}

.header-meta {
    min-height: 42px;
    display: inline-flex;
    align-items: center
}

.search-panel {
    display: none !important
}

.search-modal {
    z-index: 55
}

.search-card {
    position: relative;
    width: min(620px, 100%);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(14, 7, 3, .96);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .58);
    overflow: visible
}

.search-card-head {
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(255, 180, 101, .1)
}

.search-card-head h2 {
    margin: 6px 0 6px;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -.055em
}

.search-card-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55
}

.search-card-body {
    padding: 18px 24px 24px
}

.search-card .search-wrap input {
    height: 54px;
    font-size: 16px
}

.search-results-modal {
    position: static !important;
    display: block !important;
    margin-top: 12px;
    max-height: 360px;
    overflow: auto;
    border-radius: 20px
}

.search-results-modal:not(.is-open) {
    display: block !important
}

.search-results-modal:empty {
    display: none !important
}

.search-card .search-empty {
    border: 1px solid rgba(255, 180, 101, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .026)
}

.user-emote-list .emote-row:nth-child(n+5) {
    display: none
}

.user-emote-list .emote-row {
    min-height: 68px
}

.card-body .inner-panel .panel-head p {
    content: 'Top 4 from this user'
}

@media(max-width:860px) {
    .site-header-simple {
        align-items: flex-start
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start
    }

    .header-meta {
        order: 3;
        width: 100%;
        justify-content: flex-start
    }

    .stage {
        padding-top: 6px
    }

    .podium {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        align-items: end;
        overflow: visible
    }

    .podium-slot {
        min-width: 0
    }

    .podium-slot.rank-1 {
        order: 2
    }

    .podium-slot.rank-2 {
        order: 1
    }

    .podium-slot.rank-3 {
        order: 3
    }

    .podium-person {
        margin-bottom: 10px
    }

    .podium-avatar {
        width: 58px;
        height: 58px;
        border-radius: 16px
    }

    .rank-1 .podium-avatar {
        width: 70px;
        height: 70px
    }

    .podium-name-row {
        max-width: 100%;
        justify-content: center
    }

    .podium-name,
    .rank-1 .podium-name {
        font-size: 15px !important;
        max-width: 78px;
        text-align: center
    }

    .podium-name-row .badge-row {
        gap: 2px
    }

    .podium-name-row .badge-img {
        width: 14px !important;
        height: 14px !important
    }

    .podium-platform,
    .rank-1 .podium-platform {
        min-height: 130px;
        padding: 36px 6px 14px;
        border-radius: 16px 16px 20px 20px
    }

    .podium-platform:before {
        top: -23px;
        height: 30px;
        border-radius: 14px 14px 5px 5px
    }

    .podium-platform:after {
        bottom: -12px;
        height: 20px;
        border-radius: 0 0 18px 18px
    }

    .rank-1 .podium-platform {
        min-height: 160px
    }

    .trophy-badge {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 15px
    }

    .podium-msgs {
        font-size: 10px;
        line-height: 1.2
    }

    .podium-divider {
        margin: 10px 0
    }

    .prize-main {
        font-size: 15px;
        gap: 3px
    }

    .rank-1 .prize-main {
        font-size: 18px
    }

    .prize-label {
        font-size: 10px
    }

    .rank-note {
        font-size: 11px;
        padding: 8px 10px
    }

    .stats-row {
        margin-top: 18px
    }
}

@media(max-width:560px) {
    .app-shell {
        width: min(100% - 18px, 1320px)
    }

    .site-header-simple h1 {
        font-size: 40px
    }

    .site-header-simple p {
        font-size: 13px
    }

    .header-btn,
    .header-meta {
        min-height: 39px
    }

    .stage {
        margin-top: 8px
    }

    .podium {
        gap: 6px
    }

    .podium-avatar {
        width: 48px;
        height: 48px
    }

    .rank-1 .podium-avatar {
        width: 60px;
        height: 60px
    }

    .podium-name,
    .rank-1 .podium-name {
        font-size: 13px !important;
        max-width: 68px
    }

    .podium-platform,
    .rank-1 .podium-platform {
        min-height: 118px;
        padding-left: 4px;
        padding-right: 4px
    }

    .rank-1 .podium-platform {
        min-height: 145px
    }

    .trophy-badge {
        width: 28px;
        height: 28px
    }

    .podium-msgs {
        font-size: 9px
    }

    .prize-main {
        font-size: 13px
    }

    .rank-1 .prize-main {
        font-size: 16px
    }

    .search-card-head h2 {
        font-size: 30px
    }

    .search-card {
        border-radius: 24px
    }

    .search-card-head,
    .search-card-body {
        padding-left: 18px;
        padding-right: 18px
    }
}

/* v9 ultra-simple header + no on-page search/connect */
.site-header-simple {
    display: block !important;
    margin: 0 0 24px !important;
    padding: 0 0 20px !important;
    border-bottom: 1px solid rgba(255, 180, 101, .10) !important;
    background: transparent !important;
}

.header-title-block {
    max-width: 780px !important
}

.site-header-simple h1 {
    margin: 7px 0 8px !important
}

.site-header-simple p {
    margin: 0 !important;
    color: var(--muted) !important
}

.header-meta {
    display: inline-flex !important;
    margin-top: 13px !important;
    min-height: unset !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
    background: rgba(255, 255, 255, .028) !important
}

.header-actions,
.search-panel,
.search-modal {
    display: none !important
}

/* v10 simple header + panel search button */
.clean-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin: 0 0 20px !important;
    padding: 0 0 16px !important;
    border-bottom: 1px solid rgba(255, 180, 101, .1) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.clean-header h1 {
    margin: 0 !important;
    font-size: clamp(32px, 4vw, 54px) !important;
    line-height: .96 !important;
    letter-spacing: -.06em !important;
}

.clean-header .header-meta {
    margin: 0 !important;
    min-height: unset !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
    background: rgba(255, 255, 255, .028) !important;
    flex: 0 0 auto !important;
}

.top-users-head {
    align-items: center !important
}

.panel-search-btn {
    appearance: none;
    border: 1px solid rgba(255, 180, 101, .18);
    background: rgba(255, 255, 255, .035);
    color: var(--muted2);
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.panel-search-btn:hover {
    border-color: rgba(255, 154, 76, .42);
    color: var(--text);
    background: rgba(255, 106, 26, .08)
}

.search-modal {
    display: none !important;
    z-index: 55 !important
}

.search-modal.is-open {
    display: grid !important
}

.search-card {
    position: relative;
    width: min(560px, 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(14, 7, 3, .98);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .58);
    overflow: visible;
}

.search-card-head {
    padding: 22px 22px 14px;
    border-bottom: 1px solid rgba(255, 180, 101, .1)
}

.search-card-head h2 {
    margin: 0 0 6px;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -.05em
}

.search-card-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750
}

.search-card-body {
    padding: 18px 22px 22px
}

.search-card .search-wrap {
    position: relative
}

.search-card .search-wrap input {
    width: 100%;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    outline: none;
    padding: 0 15px;
    font: inherit;
    font-size: 16px;
    font-weight: 850;
}

.search-card .search-wrap input:focus {
    border-color: rgba(255, 154, 76, .45)
}

.search-results-modal {
    position: static !important;
    display: block !important;
    margin-top: 12px;
    max-height: 360px;
    overflow: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 180, 101, .1);
    background: rgba(7, 3, 1, .38)
}

.search-results-modal:not(.is-open) {
    display: none !important
}

.search-results-modal:empty {
    display: none !important
}

.search-result {
    appearance: none;
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(255, 180, 101, .08);
    background: transparent;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    text-align: left;
    cursor: pointer
}

.search-result:first-child {
    border-top: 0
}

.search-result:hover {
    background: rgba(255, 255, 255, .045)
}

.search-result img {
    width: 42px;
    height: 42px;
    border-radius: 20%;
    object-fit: cover;
    border: 1px solid var(--line)
}

.search-result b {
    text-align: right;
    color: var(--orange2);
    font-size: 13px
}

.search-name {
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -.035em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.search-empty {
    padding: 16px;
    color: var(--muted2);
    font-size: 13px;
    font-weight: 800;
    text-align: center
}

@media(max-width:760px) {
    .clean-header {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 10px !important
    }

    .clean-header h1 {
        font-size: 38px !important
    }

    .top-users-head {
        flex-direction: row !important
    }

    .panel-search-btn {
        padding: 9px 10px
    }
}

@media(max-width:520px) {
    .clean-header h1 {
        font-size: 34px !important
    }

    .panel-head.top-users-head {
        align-items: flex-start !important
    }

    .panel-search-btn {
        margin-top: 2px
    }
}


@keyframes skeletonMove {
    0% {
        background-position: 160% 0;
    }

    100% {
        background-position: -160% 0;
    }
}

body.cosmetic-loading .podium-avatar,
body.cosmetic-loading .user-cell>img,
body.cosmetic-loading .profile-img,
body.cosmetic-loading .badge-img,
body.cosmetic-loading .painted-name,
body.cosmetic-loading .podium-name,
body.cosmetic-loading .user-name,
body.cosmetic-loading .modal-name,
body.cosmetic-loading .search-name {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
    filter: none !important;
    border-color: transparent !important;

    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0.055) 0%,
            rgba(255, 255, 255, 0.13) 45%,
            rgba(255, 255, 255, 0.055) 90%) !important;

    background-size: 220% 100% !important;
    background-position: 160% 0;
    animation: skeletonMove 1.1s ease-in-out infinite !important;
    overflow: hidden;
}

body.cosmetic-loading .podium-avatar,
body.cosmetic-loading .user-cell>img,
body.cosmetic-loading .profile-img,
body.cosmetic-loading .badge-img {
    object-position: -9999px -9999px !important;
}

body.cosmetic-loading .podium-avatar,
body.cosmetic-loading .user-cell>img,
body.cosmetic-loading .profile-img {
    background-color: rgba(255, 255, 255, 0.06) !important;
}

body.cosmetic-loading .badge-img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 5px !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
}


body.cosmetic-loading .painted-name,
body.cosmetic-loading .podium-name,
body.cosmetic-loading .user-name,
body.cosmetic-loading .modal-name,
body.cosmetic-loading .search-name {
    display: inline-block !important;
    border-radius: 8px !important;
    min-width: 110px;
    min-height: 1.1em;
    vertical-align: middle;
}

body.cosmetic-loading .podium-name {
    min-width: 145px;
    min-height: 1.2em;
}

body.cosmetic-loading .modal-name {
    min-width: 180px;
    min-height: 1.2em;
}

body.cosmetic-loading .name-line {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

@media (max-width: 760px) {
    .podium {
        display: grid !important;
        grid-template-columns: 1fr 1.12fr 1fr !important;
        align-items: end !important;
        gap: 7px !important;
        padding: 10px 6px !important;
        min-height: 310px !important;
    }

    /* child 1 = 2nd place, left */
    .podium>.podium-slot:nth-child(1) {
        order: 1 !important;
        height: 230px !important;
        min-height: 230px !important;
        max-height: 230px !important;
        align-self: end !important;
    }

    /* child 2 = 1st place, middle/tallest */
    .podium>.podium-slot:nth-child(2) {
        order: 2 !important;
        height: 285px !important;
        min-height: 285px !important;
        max-height: 285px !important;
        align-self: end !important;
    }

    /* child 3 = 3rd place, right/shortest */
    .podium>.podium-slot:nth-child(3) {
        order: 3 !important;
        height: 205px !important;
        min-height: 205px !important;
        max-height: 205px !important;
        align-self: end !important;
    }

    .podium-slot {
        width: 100% !important;
        min-width: 0 !important;
        padding: 7px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .podium-person {
        min-height: 88px !important;
        padding: 0 !important;
    }

    .podium-platform {
        padding: 8px 5px !important;
        min-height: auto !important;
    }

    .podium-avatar {
        width: 48px !important;
        height: 48px !important;
        border-radius: 14px !important;
    }

    .podium-name-row {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }

    .podium-name {
        font-size: 11px !important;
        max-width: 72px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .podium-name-row .badge-img {
        width: 13px !important;
        height: 13px !important;
    }

    .podium-msgs {
        font-size: 10px !important;
        line-height: 1.1 !important;
    }

    .trophy-badge {
        width: 28px !important;
        height: 28px !important;
        font-size: 14px !important;
    }

    .prize-main {
        font-size: 12px !important;
        line-height: 1.1 !important;
    }

    .prize-label {
        font-size: 8px !important;
    }
}

@media (max-width: 760px) {
    .modal {
        align-items: flex-start !important;
        padding: 12px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .user-card {
        width: 100% !important;
        max-height: calc(100vh - 24px) !important;
        overflow-y: auto !important;
        border-radius: 22px !important;
    }

    .user-card-head {
        padding: 18px !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .profile-img {
        width: 58px !important;
        height: 58px !important;
        border-radius: 16px !important;
        flex: 0 0 auto !important;
    }

    .user-card-head h3 {
        font-size: 20px !important;
        line-height: 1.1 !important;
        padding-right: 38px !important;
    }

    .modal-name {
        font-size: 20px !important;
    }

    .user-card-head .badge-img {
        width: 17px !important;
        height: 17px !important;
    }

    .card-body {
        padding: 14px !important;
    }

    .stat-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .close-btn {
        position: sticky !important;
        top: 10px !important;
        margin-left: auto !important;
        z-index: 50 !important;
        width: 38px !important;
        height: 38px !important;
    }
}

.supporter-boards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.supporter-board {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 18px;
    overflow: hidden;
}

.supporter-head {
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.supporter-head h3 {
    margin: 0;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.supporter-head span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.supporter-list {
    display: flex;
    flex-direction: column;
}

.supporter-row {
    display: grid;
    grid-template-columns: 38px 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    cursor: pointer;
}

.supporter-row:first-child {
    border-top: 0;
}

.supporter-row:hover {
    background: rgba(255, 255, 255, 0.035);
}

.supporter-rank {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.supporter-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: cover;
}

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

.supporter-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.supporter-total {
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.small-empty {
    padding: 16px;
}

@media (max-width: 760px) {
    .supporter-boards {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .supporter-row {
        grid-template-columns: 34px 32px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .supporter-total {
        font-size: 11px;
    }
}

.top-code-bar {
    width: 100%;
    height: 38px;
    background: #e51b2c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.top-code-track {
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    white-space: nowrap;
}

.top-code-track b {
    color: #ffffff;
    font-weight: 950;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    margin: 0 2px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 6px;
}

.top-code-label {
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.10em;
    padding: 3px 7px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.24);
}

.top-code-dot {
    opacity: 0.65;
}

@media (max-width: 760px) {
    .top-code-bar {
        height: 34px;
    }

    .top-code-track {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 12px;
        gap: 8px;
        font-size: 11px;
        scrollbar-width: none;
    }

    .top-code-track::-webkit-scrollbar {
        display: none;
    }

    .top-code-label {
        font-size: 9px;
        padding: 3px 6px;
    }

    .top-code-track b {
        padding: 2px 6px;
    }
}

.support-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.support-label-emoji {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}