/* ============================================
   STATS PAGE — WARFAL Reference
   Matches actual HTML class names in stats.php
   ============================================ */

/* Layout */
.lr-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 20px;
    padding: 20px 0 40px;
    min-height: 60vh;
    align-items: start;
}
.lr-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 90px;
    min-width: 0;
}
.lr-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}
#lrSearchInfoWrap:empty { display: none; }

/* Side block */
.lr-side-block {
    background: var(--card-bg, rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 18px;
}
.lr-side-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    margin-bottom: 14px;
}

/* ====== INFO CARD (sidebar user stats) ====== */
.lr-info-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lr-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Avatar in sidebar — circular, fixed size */
.lr-info-ava {
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.1);
}
.lr-info-ava img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block !important;
}

/* Body: avatar left + stats right */
.lr-info-body {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.lr-info-body .lr-info-ava {
    width: 44px;
    height: 44px;
    align-self: center;
}
.lr-info-body .lr-info-row {
    flex: 1;
    min-width: 0;
}

.lr-info-text {
    flex: 1;
    min-width: 0;
}
.lr-info-greeting {
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
}
.lr-info-greeting span {
    font-weight: 700;
}
.lr-info-sub {
    font-size: 11px;
    color: var(--accent-orange, #ff5500);
    margin-top: 2px;
}

/* Rank badge in header — with nav arrows */
.lr-rank-badge-my {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 50%;
    background: rgba(37,99,235,.15);
    border: 2px solid rgba(37,99,235,.4);
    color: #5b9bd5;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.lr-rank-arrows {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    margin-left: auto;
}
.lr-rank-arrows i {
    font-size: 16px;
    color: rgba(255,255,255,.35);
    cursor: default;
}

/* Stats rows */
.lr-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}
.lr-info-stat {
    display: flex;
    flex-direction: column;
    padding: 2px 6px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    gap: 1px;
}
.lr-info-lbl {
    font-size: 10px;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: .3px;
}
.lr-info-val {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.lr-info-row-sm .lr-info-val {
    font-size: 16px;
}

/* Empty user */
.lr-info-empty {
    text-align: center;
    padding: 20px 0 10px;
    color: rgba(255,255,255,.25);
}
.lr-info-empty i {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}
.lr-info-empty p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* ====== SEARCH ====== */
.lr-search-box {
    position: relative;
}
.lr-search-box > i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.25);
    font-size: 16px;
    pointer-events: none;
}
.lr-search-box input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 10px 12px 10px 36px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.lr-search-box input:focus {
    border-color: #c9a834;
}
.lr-search-box input::placeholder {
    color: rgba(255,255,255,.2);
}

/* ====== SORT RADIO LIST ====== */
.lr-sort-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lr-sort-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 6px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 13px;
    transition: all .15s;
    cursor: pointer;
}
.lr-sort-opt:hover {
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.75);
}
.lr-sort-opt.active {
    color: #5b9bd5;
}

/* Radio dot */
.lr-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.2);
    flex-shrink: 0;
    position: relative;
    transition: border-color .15s;
    display: inline-block;
    box-sizing: border-box;
}
.lr-radio.on {
    border-color: #5b9bd5;
}
.lr-radio.on::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5b9bd5;
}

/* Reset button */
.lr-reset-btn {
    display: block;
    text-align: center;
    margin-top: 14px;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: opacity .15s;
}
.lr-reset-btn:hover { opacity: .85; }

/* ====== SEARCH INFO BAR ====== */
.lr-search-info {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    background: rgba(201,168,52,.08);
    border: 1px solid rgba(201,168,52,.15);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lr-search-info b { color: #c9a834; }
.lr-search-info a {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    margin-left: auto;
    font-size: 13px;
}
.lr-search-info a:hover { color: #e74c3c; }

/* ====== TABLE ====== */
.lr-table-wrap {
    background: var(--card-bg, rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.lr-table {
    width: 100%;
    border-collapse: collapse;
}

/* Header */
.lr-table thead th {
    padding: 14px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.4);
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.06);
    white-space: nowrap;
    background: rgba(255,255,255,.02);
}
.lr-th-pos { width: 48px; text-align: center !important; }
.lr-th-player { }
.lr-th-rank { width: 80px; text-align: center !important; }
.lr-th-num { width: 85px; text-align: right !important; }
.lr-th-date { width: 155px; text-align: right !important; }

/* Rows */
.lr-row {
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: background .15s;
}
.lr-row:hover { background: rgba(255,255,255,.025); }
.lr-row:last-child { border-bottom: none; }
.lr-row td {
    padding: 10px 12px;
    font-size: 14px;
    color: rgba(255,255,255,.75);
    vertical-align: middle;
}

/* Top row highlights */
.lr-row-gold {
    background: linear-gradient(90deg, rgba(255,215,0,.1) 0%, rgba(255,215,0,.03) 40%, transparent 100%) !important;
}
.lr-row-gold:hover {
    background: linear-gradient(90deg, rgba(255,215,0,.15) 0%, rgba(255,215,0,.05) 40%, transparent 100%) !important;
}
.lr-row-silver { background: rgba(192,192,192,.035); }
.lr-row-bronze { background: rgba(205,127,50,.035); }

/* Position */
.lr-td-pos {
    text-align: center;
    width: 48px;
    font-weight: 500;
    color: rgba(255,255,255,.3);
    font-size: 14px;
}

/* Medal icons for top 3 */
.lr-medal { width: 1.6rem; height: 1.6rem; display: block; margin: 0 auto; max-width: none; }
.lr-medal-1 { filter: invert(79%) sepia(67%) saturate(1000%) hue-rotate(360deg) brightness(105%) contrast(105%); }
.lr-medal-2 { filter: invert(95%) sepia(0%) saturate(100%) brightness(85%) contrast(85%); }
.lr-medal-3 { filter: invert(60%) sepia(40%) saturate(700%) hue-rotate(350deg) brightness(90%) contrast(85%); }

/* Player cell (avatar + name) */
.lr-td-player { }
.lr-player-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Avatar wrapper for online indicator */
.lr-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.lr-online-dot {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    border: 2px solid var(--bg-card, #1a1d23);
    box-shadow: 0 0 4px rgba(74, 222, 128, 0.5);
    z-index: 1;
}

/* Table avatar */
.lr-avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid transparent;
    box-sizing: content-box;
}
.lr-avatar-1 { border-color: #ffd700; }
.lr-avatar-2 { border-color: #c0c0c0; }
.lr-avatar-3 { border-color: #cd7f32; }
.lr-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
}

/* Player name */
.lr-pname {
    font-weight: 400;
    font-size: 14px;
    max-width: 180px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
/* Position-colored names */
.lr-pname-gold, a.lr-pname-link.lr-pname-gold { color: #ffd700 !important; }
.lr-pname-silver, a.lr-pname-link.lr-pname-silver { color: #c0c0c0 !important; }
.lr-pname-bronze, a.lr-pname-link.lr-pname-bronze { color: #cd7f32 !important; }
a.lr-pname-link {
    text-decoration: none;
    color: #fff;
    transition: color .2s ease;
}
a.lr-pname-link:hover {
    color: var(--accent-orange, #ff5500);
}

/* Player badges (VIP + Admin in one) */
.lr-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 15px;
    flex-shrink: 0;
    cursor: help;
    position: relative;
    background: rgba(255,255,255,0.06);
}
.lr-badge-combo {
    background: rgba(255,255,255,0.06);
}
.lr-badge-combo:hover {
    background: rgba(255,255,255,0.1);
}
.lr-badge-svg {
    width: 20px;
    height: 20px;
    display: block;
    pointer-events: none;
}
.lr-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    padding: 2px;
}
.lr-badge-svg-vip {
    filter: brightness(0) saturate(100%) invert(72%) sepia(58%) saturate(557%) hue-rotate(5deg) brightness(101%) contrast(93%);
}
.lr-badge-svg-admin {
    filter: brightness(0) saturate(100%) invert(62%) sepia(67%) saturate(410%) hue-rotate(176deg) brightness(100%) contrast(94%);
}
.lr-badge-banned {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    filter: drop-shadow(0 0 3px rgba(239,68,68,0.3));
}
.lr-badge-banned:hover {
    filter: drop-shadow(0 0 6px rgba(239,68,68,0.6));
}
.lr-pname-banned,
a.lr-pname-link.lr-pname-banned {
    color: #ef4444 !important;
    text-decoration: line-through !important;
    text-decoration-color: rgba(239,68,68,0.6);
}

/* ====== RANK PILL BADGE ====== */
.lr-td-rank { text-align: center; }
.lr-rank-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding: 4px 10px;
    border-radius: 14px;
    border: 1.5px solid;
    white-space: nowrap;
    line-height: 1;
    background: #555;
    border-color: #444;
}
.lr-rk-arrow {
    font-size: 10px;
    opacity: .7;
}

/* Rank colors by data attribute */
.lr-rank-pill[data-rank="1"],
.lr-rank-pill[data-rank="2"],
.lr-rank-pill[data-rank="3"],
.lr-rank-pill[data-rank="4"],
.lr-rank-pill[data-rank="5"],
.lr-rank-pill[data-rank="6"] {
    background: #8b9298; border-color: #6b7278;
}
.lr-rank-pill[data-rank="7"],
.lr-rank-pill[data-rank="8"],
.lr-rank-pill[data-rank="9"],
.lr-rank-pill[data-rank="10"] {
    background: #c9a834; border-color: #a08628;
}
.lr-rank-pill[data-rank="11"],
.lr-rank-pill[data-rank="12"],
.lr-rank-pill[data-rank="13"] {
    background: #4a9fd5; border-color: #3580b0;
}
.lr-rank-pill[data-rank="14"],
.lr-rank-pill[data-rank="15"] {
    background: #c27a2a; border-color: #a06520;
}
.lr-rank-pill[data-rank="16"] {
    background: #9b59b6; border-color: #7d3f9b;
}
.lr-rank-pill[data-rank="17"] {
    background: #e74c3c; border-color: #c0392b;
}
.lr-rank-pill[data-rank="18"] {
    background: linear-gradient(135deg, #ffd700, #daa520);
    border-color: #b8860b;
    text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

/* ====== RANK IMAGES ====== */
.lr-rank-img {
    height: 28px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    vertical-align: middle;
}
.lr-rank-img-card {
    object-fit: contain;
    max-width: 4rem;
    margin-left: auto;
    flex-shrink: 0;
    width: 5rem;
}

/* Numeric cells */
.lr-td-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}
.lr-kd {
    color: #5b9bd5 !important;
    font-weight: 600 !important;
}

/* Date cell */
.lr-td-date {
    text-align: right;
    font-size: 12px !important;
    color: rgba(255,255,255,.4) !important;
    white-space: nowrap;
}

/* Empty table */
.lr-empty-td {
    text-align: center !important;
    padding: 50px !important;
    color: rgba(255,255,255,.25) !important;
    font-size: 14px !important;
}
.lr-empty-td i { font-size: 28px; display: block; margin-bottom: 8px; }

/* Unavailable page */
.lr-empty {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,.35);
}
.lr-empty i { font-size: 64px; color: rgba(255,255,255,.08); display: block; margin-bottom: 16px; }
.lr-empty h2 { color: rgba(255,255,255,.5); font-size: 20px; margin: 0 0 8px; }
.lr-empty p { font-size: 14px; color: rgba(255,255,255,.25); }

/* ====== PAGINATION ====== */
.lr-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}
.lr-pg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    margin-left: -1px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .15s;
    cursor: pointer;
}
.lr-pg:first-child { border-radius: 6px 0 0 6px; margin-left: 0; }
.lr-pg:last-child { border-radius: 0 6px 6px 0; }
.lr-pg:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
    z-index: 1;
}
.lr-pg.active {
    background: var(--accent-orange, #ff5500);
    border-color: var(--accent-orange, #ff5500);
    color: #fff;
    font-weight: 700;
    z-index: 2;
}

/* ====== FIELDSET / TOGGLE ====== */
.lr-sidebar-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lr-fieldset {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 10px 14px 14px;
    margin: 0;
    background: transparent;
}
.lr-fieldset > legend {
    padding: 0 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.4);
    line-height: 1;
}
.lr-sidebar-card > .lr-fieldset {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lr-sort-section-title {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin-bottom: 10px;
}
.lr-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin: 0;
}
.lr-toggle-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.lr-toggle-opt input { display: none; }
.lr-toggle-switch {
    width: 38px;
    height: 23px;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 11px;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}
.lr-toggle-knob {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}
.lr-toggle-opt input:checked ~ .lr-toggle-switch {
    background: var(--accent-orange, #ff5500);
    border-color: var(--accent-orange, #ff5500);
}
.lr-toggle-opt input:checked ~ .lr-toggle-switch .lr-toggle-knob {
    transform: translateX(16px);
}
.lr-toggle-label {
    font-size: 14px;
    color: rgba(255,255,255,.7);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
    .lr-layout { grid-template-columns: 1fr; gap: 12px; }
    .lr-sidebar { position: static; }
    .lr-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .lr-table { min-width: 650px; }
}
@media (max-width: 700px) {
    .lr-layout { padding: 10px 0 30px; }
    .lr-pname { max-width: 110px; }
    .lr-info-val { font-size: 16px; }
    .lr-info-row-sm .lr-info-val { font-size: 14px; }
    .lr-info-ava { width: 44px; height: 44px; }
    .lr-table { min-width: 600px; }
    .lr-side-block { padding: 14px; }
}
@media (max-width: 480px) {
    .lr-table { min-width: 550px; }
    .lr-table thead th { padding: 10px 8px; font-size: 11px; }
    .lr-table tbody td { padding: 8px; }
    .lr-pname { max-width: 90px; font-size: 12px; }
    .lr-info-val { font-size: 14px; }
    .lr-side-block { padding: 12px; }
    .lr-side-title { font-size: 14px; margin-bottom: 10px; }

    /* Info card header: prevent rank image overflow */
    .lr-info-header {
        flex-wrap: nowrap;
        gap: 8px;
    }
    .lr-rank-img-card {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }
    .lr-rank-arrows {
        flex-shrink: 0;
    }
    .lr-rank-badge-my {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
    }

    /* Info body: avatar + stats */
    .lr-info-body {
        gap: 8px;
    }
    .lr-info-body .lr-info-ava {
        width: 56px;
        height: 56px;
    }
    .lr-info-stat {
        padding: 4px 6px;
    }
    .lr-info-lbl {
        font-size: 9px;
    }
    .lr-info-val {
        font-size: 13px;
    }
    .lr-info-row {
        gap: 4px;
    }
    .lr-info-row-sm {
        gap: 4px;
    }
    .lr-info-row-sm .lr-info-val {
        font-size: 13px;
    }
}
/* ══════ Game Switcher ══════ */
.lr-game-switcher {
    display: flex;
    gap: 3px;
    padding: 3px;
    background: rgba(0,0,0,0.2);
    border-radius: 9px;
    margin-bottom: 1.25rem;
    width: fit-content;
}
.lr-game-tab {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
}
.lr-game-tab:hover {
    background: rgba(255,255,255,0.04);
}
.lr-game-tab.active {
    background: rgba(255,255,255,0.06);
}
.lr-game-tab-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    line-height: 1.2;
}
.lr-game-tab-cs2 {
    background: rgba(59,130,246,0.1);
    color: #3b82f6;
}
.lr-game-tab.active .lr-game-tab-cs2 {
    background: rgba(59,130,246,0.2);
    color: #60a5fa;
}
.lr-game-tab-csgo {
    background: rgba(234,179,8,0.1);
    color: #eab308;
}
.lr-game-tab.active .lr-game-tab-csgo {
    background: rgba(234,179,8,0.2);
    color: #facc15;
}

/* ====== FACEIT Column ====== */
.lr-th-faceit {
    text-align: center;
    width: 48px;
    min-width: 48px;
}
.lr-faceit-header-icon {
    width: 18px;
    height: 18px;
    color: #ff5500;
    opacity: 0.6;
}
.lr-td-faceit {
    text-align: center;
    width: 48px;
    min-width: 48px;
    vertical-align: middle;
    padding: 4px !important;
}
.lr-faceit-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.lr-faceit-icon {
    display: block;
    width: 1.7rem !important;
    height: 1.7rem !important;
    min-width: 1.7rem;
    min-height: 1.7rem;
    object-fit: contain;
    flex-shrink: 0;
    margin: 0 auto;
}
.lr-faceit-elo {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.lr-faceit-none {
    color: rgba(255,255,255,0.15);
    font-size: 13px;
}
.lr-faceit-loading {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.06);
    border-top-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: lrFaceitSpin 0.6s linear infinite;
}
@keyframes lrFaceitSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .lr-th-faceit, .lr-td-faceit { width: 44px; }
    .lr-faceit-icon { width: 1.4rem !important; height: 1.4rem !important; }
    .lr-faceit-elo { font-size: 11px; }
}
.lr-faceit-lvl {
    font-size: 15px;
    font-weight: 800;
    min-width: 24px;
    text-align: center;
}

/* ====== Server Tabs ====== */
/* Server dropdown */
.lr-server-dropdown {
    position: relative;
    margin-bottom: 8px;
}
.lr-server-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}
.lr-server-dropdown-toggle:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
}
.lr-server-dropdown-toggle i {
    font-size: 18px;
    opacity: .5;
    transition: transform .2s;
}
.lr-server-dropdown.open .lr-server-dropdown-toggle {
    border-color: rgba(255,85,0,.3);
    background: rgba(255,85,0,.05);
}
.lr-server-dropdown.open .lr-server-dropdown-toggle i {
    transform: rotate(180deg);
}
.lr-server-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 50;
    background: #1a1c22;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.lr-server-dropdown.open .lr-server-dropdown-menu {
    display: block;
}
.lr-server-dropdown-item {
    display: block;
    padding: 9px 14px;
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
}
.lr-server-dropdown-item:hover {
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.8);
    text-decoration: none;
}
.lr-server-dropdown-item.active {
    background: rgba(255,85,0,.08);
    color: #ff5500;
    font-weight: 600;
}
