/* =========================================================
   FragCity Leaderboard
   User Manual inspired redesign
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background:
        radial-gradient(circle at top, rgba(59, 130, 246, 0.10), transparent 34%),
        radial-gradient(circle at bottom, rgba(14, 165, 233, 0.06), transparent 26%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(8, 15, 28, 0.99));
    overflow-x: hidden;
}

.leaderboard-page {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 28px 28px 50px;
    direction: rtl;
    box-sizing: border-box;
    color: #E2E8F0;
    animation: leaderboardPageIn 0.35s ease both;
    min-height: 100vh;
}

.leaderboard-page a {
    color: #60A5FA;
    text-decoration: none;
}

.leaderboard-page a:hover {
    text-decoration: underline;
}

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

/* =========================================================
   Header
========================================================= */

.leaderboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.leaderboard-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.leaderboard-heading-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(59,130,246,.18), rgba(37,99,235,.08));
    border: 1px solid rgba(59,130,246,.28);
    color: #60A5FA;
    font-size: 1.45rem;
    box-shadow: 0 0 30px rgba(59,130,246,.10);
}

.leaderboard-eyebrow {
    margin-bottom: 3px;
    color: #60A5FA;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.leaderboard-header h1 {
    margin: 0;
    color: #F8FAFC;
    font-size: 1.8rem;
    line-height: 1.35;
    font-weight: 800;
}

.leaderboard-header p {
    margin: 5px 0 0;
    color: #94A3B8;
    font-size: .85rem;
}

.leaderboard-current-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 12px;
    background: rgba(15,23,42,.75);
    border: 1px solid #22304A;
    color: #94A3B8;
    font-size: .78rem;
    white-space: nowrap;
}

.leaderboard-current-sort strong { color: #E0F2FE; }
.leaderboard-current-sort i { color: #60A5FA; }

/* =========================================================
   Stats
========================================================= */

.leaderboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.leaderboard-stat-card {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 92px;
    padding: 15px 17px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(17,24,39,.94), rgba(15,23,42,.94));
    border: 1px solid #22304A;
    box-shadow: 0 15px 35px rgba(0,0,0,.14);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.leaderboard-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59,130,246,.38);
    box-shadow: 0 18px 38px rgba(59,130,246,.07);
}

.leaderboard-stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    font-size: 1.05rem;
}

.leaderboard-stat-icon.blue {
    color: #60A5FA;
    background: rgba(59,130,246,.12);
    border: 1px solid rgba(59,130,246,.20);
}
.leaderboard-stat-icon.cyan {
    color: #67E8F9;
    background: rgba(34,211,238,.10);
    border: 1px solid rgba(34,211,238,.18);
}
.leaderboard-stat-icon.purple {
    color: #C4B5FD;
    background: rgba(139,92,246,.10);
    border: 1px solid rgba(139,92,246,.18);
}
.leaderboard-stat-icon.green {
    color: #86EFAC;
    background: rgba(34,197,94,.10);
    border: 1px solid rgba(34,197,94,.18);
}

.leaderboard-stat-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.leaderboard-stat-copy span {
    color: #64748B;
    font-size: .75rem;
}

.leaderboard-stat-copy strong {
    color: #F8FAFC;
    font-size: 1.15rem;
    font-weight: 800;
}

/* =========================================================
   Main Container
========================================================= */

.leaderboard-container {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(17,24,39,.96), rgba(15,23,42,.94));
    border: 1px solid #22304A;
    box-shadow: 0 22px 60px rgba(0,0,0,.32), 0 0 50px rgba(59,130,246,.045);
}

/* =========================================================
   Toolbar
========================================================= */

.leaderboard-toolbar {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(148,163,184,.10);
    flex-wrap: wrap;
}

.leaderboard-search-wrap {
    position: relative;
    z-index: 21;
    width: min(360px, 100%);
}

.leaderboard-search-wrap > i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #64748B;
    pointer-events: none;
}

.leaderboard-search {
    position: relative;
    z-index: 22;
    width: 100%;
    height: 44px;
    padding: 0 44px 0 42px;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid #22304A;
    background: #0B1220;
    color: #F8FAFC;
    font-family: inherit;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.leaderboard-search::placeholder { color: #64748B; }
.leaderboard-search:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}

.clear-search {
    position: absolute;
    top: 50%;
    left: 9px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #64748B;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
}
.clear-search.visible {
    opacity: 1;
    pointer-events: auto;
}
.clear-search:hover {
    background: rgba(148,163,184,.10);
    color: #E2E8F0;
}

.leaderboard-toolbar-actions {
    position: relative;
    z-index: 21;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.sort-caption {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748B;
    font-size: .78rem;
    white-space: nowrap;
}
.sort-caption i { color: #60A5FA; }

.leaderboard-sort-select {
    position: relative;
    z-index: 30;
    display: block;
    min-width: 160px;
    height: 42px;
    padding: 0 14px;
    border-radius: 11px;
    border: 1px solid #22304A;
    background: #0B1220;
    color: #E2E8F0;
    font-family: inherit;
    font-size: .82rem;
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    appearance: auto;
    -webkit-appearance: auto;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.leaderboard-sort-select:hover {
    border-color: rgba(59,130,246,.38);
    background: #10192A;
}
.leaderboard-sort-select:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59,130,246,.10);
}
.leaderboard-sort-select option {
    background: #0B1220;
    color: #F8FAFC;
}

.leaderboard-order-btn {
    position: relative;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 11px;
    border: 1px solid #22304A;
    background: #0B1220;
    color: #CBD5E1;
    font-family: inherit;
    font-size: .82rem;
    cursor: pointer;
    pointer-events: auto;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.leaderboard-order-btn:hover {
    background: rgba(59,130,246,.08);
    border-color: rgba(59,130,246,.35);
    color: #E0F2FE;
    transform: translateY(-1px);
}
.leaderboard-order-btn i {
    color: #60A5FA;
    transition: transform .25s ease;
}
.leaderboard-order-btn.is-rotating i {
    transform: rotate(180deg);
}

/* =========================================================
   Dynamic Content
========================================================= */

.leaderboard-dynamic-content {
    position: relative;
    min-width: 0;
    transition: opacity .18s ease;
}

.leaderboard-page.is-loading .leaderboard-dynamic-content {
    opacity: .45;
}

/* =========================================================
   Podium
========================================================= */

.leaderboard-podium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.podium-card {
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(17,24,39,.98), rgba(15,23,42,.95));
    border: 1px solid #22304A;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.podium-card:hover { transform: translateY(-5px); }

.podium-card::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -30px;
    height: 90px;
    filter: blur(40px);
    opacity: .14;
    pointer-events: none;
}

.podium-rank-1 { border-color: rgba(245,158,11,.30); }
.podium-rank-1::after { background: #F59E0B; }

.podium-rank-2 { border-color: rgba(148,163,184,.28); }
.podium-rank-2::after { background: #CBD5E1; }

.podium-rank-3 { border-color: rgba(180,83,9,.28); }
.podium-rank-3::after { background: #B45309; }

.podium-rank-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 1.45rem;
}

.podium-avatar-wrap {
    position: relative;
    width: 78px;
    height: 78px;
    min-width: 78px;
    min-height: 78px;
    margin-bottom: 12px;
}

.podium-avatar {
    display: block;
    width: 78px;
    height: 78px;
    min-width: 78px;
    max-width: 78px;
    min-height: 78px;
    max-height: 78px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    background: #172033;
    border: 3px solid rgba(59,130,246,.60);
    box-shadow: 0 0 25px rgba(59,130,246,.16);
    transition: transform .25s ease;
}
.podium-card:hover .podium-avatar { transform: scale(1.07); }

.podium-rank-1 .podium-avatar { border-color: rgba(245,158,11,.75); }
.podium-rank-2 .podium-avatar { border-color: rgba(203,213,225,.65); }
.podium-rank-3 .podium-avatar { border-color: rgba(180,83,9,.70); }

.podium-rank-number {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 38px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #0B1220;
    border: 1px solid #22304A;
    color: #E2E8F0;
    font-size: .70rem;
    font-weight: 800;
}

.podium-card h3 {
    max-width: 180px;
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #F8FAFC;
    font-size: .98rem;
}
.podium-steam {
    color: #64748B;
    font-family: Consolas, monospace;
    font-size: .68rem;
}
.podium-points {
    margin-top: 10px;
    color: #60A5FA;
    font-size: 1.22rem;
}
.podium-points span {
    color: #64748B;
    font-size: .70rem;
    font-weight: 600;
}
.podium-mini-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    color: #94A3B8;
    font-size: .70rem;
}
.podium-mini-stats span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.podium-mini-stats i { color: #60A5FA; }

/* =========================================================
   Result Bar
========================================================= */

.leaderboard-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 13px;
    padding: 8px 2px;
    color: #64748B;
    font-size: .76rem;
}
.leaderboard-result-bar strong { color: #CBD5E1; }

/* =========================================================
   Table Wrapper
========================================================= */

.leaderboard-table-scroll {
    width: 100%;
    min-height: 300px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(148,163,184,.08);
    border-radius: 17px;
    scrollbar-width: thin;
    scrollbar-color: #334155 #0B1220;
    contain: layout paint;
}
.leaderboard-table-scroll::-webkit-scrollbar { height: 9px; }
.leaderboard-table-scroll::-webkit-scrollbar-track { background: #0B1220; }
.leaderboard-table-scroll::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 999px;
}
.leaderboard-table-scroll::-webkit-scrollbar-thumb:hover { background: #3B82F6; }

/* =========================================================
   Table
========================================================= */

.leaderboard-table {
    width: 100%;
    min-width: 1120px;
    table-layout: fixed;
    border-collapse: collapse;
    direction: ltr;
    background: rgba(11,18,32,.72);
}

.leaderboard-table th:nth-child(1),
.leaderboard-table td:nth-child(1) { width: 65px; }
.leaderboard-table th:nth-child(2),
.leaderboard-table td:nth-child(2) { width: 250px; }
.leaderboard-table th:nth-child(3),
.leaderboard-table td:nth-child(3) { width: 145px; }
.leaderboard-table th:nth-child(4),
.leaderboard-table td:nth-child(4) { width: 90px; }
.leaderboard-table th:nth-child(5),
.leaderboard-table td:nth-child(5) { width: 90px; }
.leaderboard-table th:nth-child(6),
.leaderboard-table td:nth-child(6) { width: 80px; }
.leaderboard-table th:nth-child(7),
.leaderboard-table td:nth-child(7) { width: 90px; }
.leaderboard-table th:nth-child(8),
.leaderboard-table td:nth-child(8) { width: 120px; }
.leaderboard-table th:nth-child(9),
.leaderboard-table td:nth-child(9) { width: 90px; }
.leaderboard-table th:nth-child(10),
.leaderboard-table td:nth-child(10) { width: 105px; }

.leaderboard-table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 14px 12px;
    background: #0B1220;
    color: #93C5FD;
    border-bottom: 1px solid rgba(59,130,246,.22);
    text-align: left;
    white-space: nowrap;
    font-size: .75rem;
    font-weight: 700;
}
.leaderboard-table thead th i {
    margin-right: 5px;
    color: #60A5FA;
}

.leaderboard-table tbody tr {
    position: relative;
    transition: background .18s ease, transform .18s ease;
}
.leaderboard-table tbody tr:hover {
    background: rgba(59,130,246,.045);
    transform: translateX(-2px);
}

.leaderboard-table tbody td {
    height: 66px;
    padding: 12px;
    border-bottom: 1px solid rgba(148,163,184,.07);
    color: #CBD5E1;
    text-align: left;
    vertical-align: middle;
    font-size: .78rem;
    white-space: nowrap;
}
.leaderboard-table tbody tr:last-child td { border-bottom: none; }

/* Rank */
.rank-cell {
    width: 65px;
    text-align: center !important;
}
.rank-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.rank-medal { font-size: 1.05rem; }
.rank-number {
    color: #64748B;
    font-size: .78rem;
    font-weight: 800;
}
.rank-top-1 .rank-number { color: #F59E0B; }
.rank-top-2 .rank-number { color: #CBD5E1; }
.rank-top-3 .rank-number { color: #D97706; }

/* Player */
.player-cell { overflow: hidden; }
.player-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    height: 46px;
}
.player-avatar-wrap {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    position: relative;
    flex: 0 0 42px;
}
.player-avatar {
    display: block;
    width: 42px;
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    max-height: 42px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    flex: 0 0 42px;
    background: #172033;
    border-radius: 50%;
    border: 2px solid rgba(59,130,246,.45);
    box-shadow: 0 0 14px rgba(59,130,246,.10);
    transition: transform .22s ease, box-shadow .22s ease;
}
.leaderboard-table tbody tr:hover .player-avatar {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(59,130,246,.22);
}

.player-info {
    min-width: 0;
    overflow: hidden;
}
.player-name-row {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}
.player-name {
    display: block;
    width: 150px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #F8FAFC;
    font-size: .82rem;
    font-weight: 700;
}
.player-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}
.player-steam {
    color: #64748B;
    font-family: Consolas, monospace;
    font-size: .64rem;
    direction: ltr;
}
.copy-steam-btn {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 7px;
    background: transparent;
    color: #64748B;
    cursor: pointer;
    transition: .2s ease;
}
.copy-steam-btn:hover {
    background: rgba(59,130,246,.10);
    color: #60A5FA;
}

/* Badges */
.player-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    border-radius: 999px;
    font-size: .58rem;
    font-weight: 700;
}
.badge-sharpshooter { color: #FDE68A; background: rgba(245,158,11,.10); }
.badge-accurate { color: #93C5FD; background: rgba(59,130,246,.10); }
.badge-good-aim { color: #86EFAC; background: rgba(34,197,94,.10); }

/* Points */
.metric-progress-wrap { min-width: 125px; }
.metric-number {
    margin-bottom: 6px;
    color: #60A5FA;
    font-size: .84rem;
    font-weight: 800;
}
.metric-progress {
    width: 115px;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #172033;
}
.metric-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563EB, #60A5FA);
}

/* Numbers */
.number-cell { color: #CBD5E1; font-variant-numeric: tabular-nums; }
.kills-cell { color: #93C5FD !important; }
.deaths-cell { color: #FCA5A5 !important; }
.wins-cell { color: #86EFAC !important; }

/* K/D */
.kd-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: .74rem;
    font-weight: 800;
}
.kd-value.is-excellent { color: #86EFAC; background: rgba(34,197,94,.10); }
.kd-value.is-good { color: #93C5FD; background: rgba(59,130,246,.10); }
.kd-value.is-average { color: #FDE68A; background: rgba(245,158,11,.10); }
.kd-value.is-low { color: #FCA5A5; background: rgba(239,68,68,.10); }

/* Headshots */
.headshot-cell { min-width: 115px; }
.headshot-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}
.headshot-value strong { color: #E2E8F0; }
.headshot-value span {
    color: #64748B;
    font-size: .68rem;
}
.headshot-progress {
    width: 100px;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #172033;
}
.headshot-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563EB, #60A5FA);
}

/* Playtime */
.playtime-cell { color: #94A3B8 !important; }
.playtime-cell i {
    margin-right: 5px;
    color: #60A5FA;
}

/* Top 3 Row */
.rank-top-1 { background: rgba(245,158,11,.025); }
.rank-top-2 { background: rgba(203,213,225,.018); }
.rank-top-3 { background: rgba(180,83,9,.020); }

/* Empty State */
.leaderboard-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    text-align: center;
}
.leaderboard-empty-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 20px;
    background: rgba(59,130,246,.08);
    border: 1px solid rgba(59,130,246,.18);
    color: #60A5FA;
    font-size: 1.7rem;
}
.leaderboard-empty-state h3 {
    margin: 0 0 7px;
    color: #F8FAFC;
    font-size: 1.05rem;
}
.leaderboard-empty-state p {
    margin: 0;
    color: #64748B;
    font-size: .84rem;
}

/* Toast */
.leaderboard-toast {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 11px;
    background: #111827;
    border: 1px solid rgba(59,130,246,.22);
    color: #E2E8F0;
    box-shadow: 0 18px 38px rgba(0,0,0,.28);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: .25s ease;
}
.leaderboard-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1200px) {
    .leaderboard-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .leaderboard-podium { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .leaderboard-page { padding: 22px 18px 36px; }
    .leaderboard-header { align-items: flex-start; }
    .leaderboard-header h1 { font-size: 1.45rem; }
    .leaderboard-container { padding: 16px; border-radius: 20px; }
    .leaderboard-toolbar { align-items: flex-start; }
    .leaderboard-table { min-width: 900px; }
}

@media (max-width: 768px) {
    .leaderboard-stats-grid { grid-template-columns: 1fr; }
    .leaderboard-search-wrap { width: 100%; }
    .leaderboard-toolbar-actions { width: 100%; }
    .leaderboard-sort-select { min-width: 0; width: 100%; }
    .leaderboard-order-btn { width: 100%; }
    .leaderboard-table thead th,
    .leaderboard-table tbody td { padding: 10px 9px; font-size: .72rem; }
    .player-avatar { width: 36px; height: 36px; }
    .player-avatar-wrap { width: 36px; height: 36px; min-width: 36px; min-height: 36px; flex-basis: 36px; }
    .leaderboard-toast { left: 12px; right: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
    .leaderboard-page { padding: 16px 12px 28px; }
    .leaderboard-header h1 { font-size: 1.25rem; }
    .leaderboard-heading-icon { width: 48px; height: 48px; font-size: 1.15rem; border-radius: 14px; }
    .leaderboard-stat-card { padding: 13px 14px; min-height: 82px; }
    .leaderboard-table { min-width: 840px; }
    .player-name { width: 110px; max-width: 110px; }
}
