.btn-view-char {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(200,175,100,0.9);
    background: rgba(200,150,40,0.08);
    border: 1px solid rgba(200,150,40,0.3);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-view-char:hover {
    background: rgba(200,150,40,0.18);
    border-color: rgba(200,150,40,0.65);
    color: #e8cc78;
}

.rank-tabs-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 4px;
}

.char-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5,3,1,0.82);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.char-modal-box {
    position: relative;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(37,33,26,.95);
    border: .2vh solid rgba(104,91,68,.65);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.9), 0 24px 60px rgba(0,0,0,0.9);
    animation: modal-in 0.2s ease;
}
@keyframes modal-in {
    from { opacity:0; transform:translateY(16px) scale(0.97); }
    to   { opacity:1; transform:translateY(0)   scale(1);    }
}
.char-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: .2vh solid rgba(104,91,68,.65);
    background: rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}
.char-modal-header span {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(210,175,90,0.9);
}
.char-modal-close {
    background: none;
    border: none;
    color: rgba(180,140,60,0.7);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.15s;
}
.char-modal-close:hover { color: #e8cc78; }

.char-modal-body {
    padding: 18px;
}
.char-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 50px 0;
    color: rgba(160,130,70,0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.char-modal-spinner {
    width: 28px; height: 28px;
    border: 2px solid rgba(160,120,50,0.2);
    border-top-color: rgba(210,165,60,0.8);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

.char-modal-inner {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.char-modal-left  { flex: 0 0 220px; }
.char-modal-right { flex: 1; min-width: 0; }

@media (max-width: 640px) {
    .char-modal-inner { flex-direction: column; }
    .char-modal-left  { flex: none; width: 100%; }
}

/* ============================================
   ITEM TOOLTIP - by RTech (2025) - for SmartRan
   ============================================ */

#item-tooltip {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: 200px;
}

#item-tooltip.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tt-box {
    background: linear-gradient(175deg, rgba(18,13,7,0.98) 0%, rgba(28,20,8,0.98) 100%);
    border: 1px solid rgba(160,120,50,0.45);
    border-top: 2px solid rgba(220,175,70,0.85);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.9),
        0 12px 40px rgba(0,0,0,0.85),
        inset 0 1px 0 rgba(255,215,80,0.07);
    padding: 0;
    overflow: hidden;
}



.tt-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 7px;
    border-bottom: 1px solid rgba(160,120,50,0.2);
    background: rgba(0,0,0,0.25);
}

.tt-icon {
    width: 35px;
    height: 35px;
    overflow: hidden;
    border: 1px solid rgba(160,120,50,0.5);
    background: rgba(0,0,0,0.6);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.8), 0 0 6px rgba(255,180,40,0.15);
    flex-shrink: 0;
    position: relative;
}

.tt-icon img {
    width: auto;
    height: auto;
    max-width: none;
    object-fit: none;
    image-rendering: pixelated;
    display: block;
}

.tt-name-wrap {
    flex: 1;
    min-width: 0;
}

.tt-name {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.4px;
    line-height: 1.35;
    word-break: break-word;
}

.tt-slot-label {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(180,150,80,0.55);
    margin-top: 2px;
}

.tt-body {
    padding: 6px 10px 8px;
}

.tt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    padding: 2px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tt-row:last-child { border-bottom: none; }

.tt-label {
    color: rgba(170,145,90,0.75);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.tt-val {
    font-weight: bold;
    color: #e0d8c0;
    text-align: right;
}
.tt-val.v-upgrade { text-shadow: 0 0 5px currentColor; }
.tt-val.v-qty     { color: #88ccff; }
.tt-val.v-suit { color: #c8a84b; letter-spacing: 0.4px; }
.tt-val.v-jobchar { color: #9db8ff; letter-spacing: 0.4px; font-size: 9px; }
.tt-val.v-stats { color: #aaffaa; letter-spacing: 0.4px; }
.tt-val.v-stats { color: #aaffaa; letter-spacing: 0.4px; }
.tt-val.v-attack-percent-positive { color: #f5d77f; letter-spacing: 0.4px; text-shadow: 0 0 4px #ff994480; }
.tt-val.v-attack-percent-negative { color: #f5d77f; letter-spacing: 0.4px; text-shadow: 0 0 4px #ff444480; }

.tt-empty-state {
    padding: 10px;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(140,115,70,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.slot { 
    transition: box-shadow 0.12s ease, border-color 0.12s ease; 
    cursor: pointer;
    overflow: hidden;
}

.slot.tt-active {
    border-color: rgba(255,195,60,0.7) !important;
    box-shadow: 0 0 10px rgba(255,170,30,0.35),
                inset 0 0 6px rgba(255,170,30,0.1);
    z-index: 5;
}

.slot-type-badge {
    position: absolute;
    bottom: 1px;
    left: 2px;
    font-size: 6.5px;
    letter-spacing: 0.3px;
    color: rgb(163 163 163 / 9%);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    pointer-events: none;
    line-height: 1;
}
.costume-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    line-height: 1;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.9));
    animation: costume-glow 2.4s ease-in-out infinite;
}

@keyframes costume-glow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(255, 206, 100, 0.3)); }
    50%       { filter: drop-shadow(0 0 6px rgba(255, 162, 100, 0.85)); }
}

.elem-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
}

.elem-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.elem-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.elem-item img {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.elem-item span {
    font-size: 10px;
    color: #e0d8c0;
    font-family: 'Courier New', monospace;
}

.rank-tabs {
    display: flex;
    gap: 6px;
}

.rank-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(160, 140, 90, 0.7);
    background: linear-gradient(160deg, #1a1710, #0e0d09);
    border: 1px solid rgba(100, 85, 40, 0.35);
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
}

.rank-tab:hover {
    color: rgba(210, 185, 110, 0.95);
    background: linear-gradient(160deg, #252010, #181408);
    border-color: rgba(160, 130, 50, 0.55);
    text-decoration: none;
}

.rank-tab.active {
    color: #d4a832;
    background: linear-gradient(160deg, #2a2010, #1a1508);
    border-color: rgba(180, 140, 40, 0.7);
    box-shadow: 0 0 8px rgba(160, 120, 20, 0.2), inset 0 1px 0 rgba(200, 160, 50, 0.15);
}

.rank-tab-icon {
    font-size: 13px;
    opacity: 0.8;
	width: 15px;
	height: 20px;
}
.rank-tab-icon img {
	width: 20px;
	height: 20px;
}

.rank-school-filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-school-select {
    appearance: none;
    -webkit-appearance: none;
    background: linear-gradient(160deg, #1a1710, #0e0d09) no-repeat right 10px center;
    background-image: linear-gradient(160deg, #1a1710, #0e0d09),
                      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a07830'/%3E%3C/svg%3E");
    background-position: left 0, right 10px center;
    background-size: 100% 100%, 10px 6px;
    border: 1px solid rgba(100, 85, 40, 0.4);
    color: rgba(180, 155, 90, 0.85);
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 7px 30px 7px 12px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    min-width: 160px;
}

.rank-school-select:focus {
    border-color: rgba(160, 130, 50, 0.7);
}

.rank-school-select option {
    background: #1a1710;
    color: rgba(180, 155, 90, 0.9);
}

.rank-school-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(80, 30, 20, 0.5);
    border: 1px solid rgba(140, 60, 40, 0.4);
    color: rgba(200, 100, 80, 0.8);
    font-size: 11px;
    text-decoration: none;
    transition: all 0.2s;
}
.rank-school-clear:hover {
    background: rgba(120, 40, 25, 0.6);
    color: rgba(230, 130, 100, 1);
    text-decoration: none;
}

.rank-school-badge {
    display: inline-block;
    font-size: 13px;
    font-family: 'Georgia', serif;
    font-weight: normal;
    color: rgba(180, 145, 60, 0.85);
    border: 1px solid rgba(140, 110, 40, 0.4);
    padding: 2px 10px;
    margin-left: 10px;
    vertical-align: middle;
    letter-spacing: 1px;
}

.rank-stat-value {
    font-size: 13px;
    color: rgba(190, 170, 110, 0.9);
    letter-spacing: 0.5px;
}

.rank-gold-value {
    color: rgba(210, 170, 50, 0.9);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 768px) {
    .rank-tabs-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .rank-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        width: 100%;
    }

    .rank-tab {
        justify-content: center;
        padding: 9px 8px;
        font-size: 11px;
        letter-spacing: 1px;
        text-align: center;
    }

    .rank-tab-icon {
        width: 13px;
        height: 13px;
    }
    .rank-tab-icon img {
        width: 13px;
        height: 13px;
    }

    .rank-school-filter {
        width: 100%;
    }

    .rank-school-select {
        flex: 1;
        min-width: 0;
        width: 100%;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .rank-tab {
        padding: 8px 4px;
        font-size: 10px;
        letter-spacing: 0.8px;
        gap: 4px;
    }
}

.spender-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.spender-header {
    text-align: center;
    margin-bottom: 30px;
}

.spender-header-title {
    font-size: 32px;
    font-weight: bold;
    color: rgba(230, 180, 80, 0.95);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 8px;
}

.spender-header-desc {
    font-size: 12px;
    color: rgba(160, 130, 70, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spender-info-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.spender-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(104, 91, 68, 0.15);
    border: 1px solid rgba(200, 150, 40, 0.3);
    border-radius: 4px;
}

.spender-stat-label {
    font-size: 10px;
    color: rgba(170, 145, 90, 0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.spender-stat-value {
    font-size: 16px;
    font-weight: bold;
    color: rgba(230, 180, 80, 0.9);
}

/* ========== SPENDER TABLE STYLES ========== */

.table-responsive-custom {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.spender-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(37, 33, 26, 0.5);
    border: 1px solid rgba(104, 91, 68, 0.65);
}

.spender-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(60, 50, 35, 0.9);
    border-bottom: 2px solid rgba(200, 150, 40, 0.4);
}

.spender-table th {
    padding: 14px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: bold;
    color: rgba(210, 175, 90, 0.9);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-right: 1px solid rgba(104, 91, 68, 0.3);
}

.spender-table th:last-child {
    border-right: none;
}

.spender-table th.text-center {
    text-align: center;
}

.spender-table tbody tr {
    border-bottom: 1px solid rgba(104, 91, 68, 0.3);
    transition: background 0.15s ease;
}

.spender-table tbody tr:hover {
    background: rgba(104, 91, 68, 0.2);
}

.spender-table tbody tr:last-child {
    border-bottom: none;
}

.spender-table td {
    padding: 12px;
    font-size: 12px;
    color: #e0d8c0;
    border-right: 1px solid rgba(104, 91, 68, 0.2);
}

.spender-table td:last-child {
    border-right: none;
}

.spender-table td.text-center {
    text-align: center;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.rank-badge-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.6);
    color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.rank-badge-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3), rgba(169, 169, 169, 0.2));
    border: 2px solid rgba(192, 192, 192, 0.6);
    color: #c0c0c0;
    box-shadow: 0 0 8px rgba(192, 192, 192, 0.3);
}

.rank-badge-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.3), rgba(184, 115, 51, 0.2));
    border: 2px solid rgba(205, 127, 50, 0.6);
    color: #cd7f32;
    box-shadow: 0 0 8px rgba(205, 127, 50, 0.3);
}

.rank-badge-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
   /* border: 1px solid rgba(200, 150, 40, 0.3);
    border-radius: 50%;
    background: rgba(104, 91, 68, 0.2);*/
    color: rgba(210, 175, 90, 0.8);
    font-weight: bold;
    font-size: 12px;
}

.spender-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spender-username {
    font-weight: bold;
    color: #e8cc78;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.spender-charname {
    font-size: 11px;
    color: rgba(160, 130, 70, 0.8);
    letter-spacing: 0.3px;
}

.icon-cell {
    text-align: center;
}

.rank-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(200, 150, 40, 0.4);
    border-radius: 3px;
    transition: transform 0.12s, box-shadow 0.12s;
}

.rank-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(200, 150, 40, 0.6);
}

.char-stats-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-line {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding: 2px 0;
}

.stat-label {
    color: rgba(170, 145, 90, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-value {
    color: #e0d8c0;
    font-weight: bold;
    text-align: right;
}

.stat-value.level {
    color: #9db8ff;
}

.stat-value.school {
    color: #c8a84b;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 10px;
}

.stat-value.class {
    color: #b8d8ff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 10px;
}

.spend-amount {
    font-weight: bold;
    font-size: 13px;
    color: #ffd700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.spend-currency {
    font-size: 10px;
    color: rgba(255, 215, 0, 0.7);
}

.status-indicator {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-online {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.status-offline {
    background: rgba(108, 117, 125, 0.2);
    border: 1px solid rgba(108, 117, 125, 0.5);
    color: #6c757d;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(140, 115, 70, 0.4);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .spender-info-box {
        gap: 15px;
    }

    .spender-stat-item {
        padding: 8px 12px;
        font-size: 10px;
    }

    .spender-table th,
    .spender-table td {
        padding: 8px;
        font-size: 10px;
    }

    .spender-username {
        font-size: 11px;
    }

    .spender-charname {
        font-size: 10px;
    }

    .rank-icon {
        width: 24px;
        height: 24px;
    }

    .spend-amount {
        font-size: 12px;
    }

    .stat-line {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .spender-header-title {
        font-size: 22px;
    }

    .spender-info-box {
        gap: 10px;
        flex-direction: column;
    }

    .spender-stat-item {
        width: 100%;
    }

    .spender-table {
        font-size: 9px;
    }

    .spender-table th,
    .spender-table td {
        padding: 6px;
    }

    .rank-badge {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Pagination */
.pagination-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    text-decoration: none;
    color: rgba(210, 175, 90, 0.7);
    background: rgba(104, 91, 68, 0.2);
    border: 1px solid rgba(104, 91, 68, 0.3);
    font-size: 11px;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.pagination a:hover {
    color: #e8cc78;
    background: rgba(200, 150, 40, 0.15);
    border-color: rgba(200, 150, 40, 0.5);
}

.pagination .active span {
    color: #e8cc78;
    background: rgba(200, 150, 40, 0.25);
    border-color: rgba(200, 150, 40, 0.6);
}

.pagination .disabled span {
    color: rgba(140, 115, 70, 0.3);
    background: rgba(104, 91, 68, 0.1);
    border-color: rgba(104, 91, 68, 0.2);
    cursor: not-allowed;
}

/*spin*/
#winner-feed-box {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #363124 #1a1a1a;
    padding: 6px 12px;
    background: rgba(0,0,0,0.35);
    border: 0.2vh solid rgba(104, 91, 68, 0.65);
    border-radius: 4px;
    margin-bottom: 8px;
    display: list-item;
}
#winner-feed-box::-webkit-scrollbar { width: 4px; }
#winner-feed-box::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 4px; }
#winner-feed-box::-webkit-scrollbar-thumb { background: linear-gradient(90deg, rgb(255 126 102 / 16%), rgb(20 13 8 / 66%)); }

#winner-feed-box .feed-item {
    font-size: 0.82em;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    white-space: normal;
    word-break: break-word;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
    animation: feedFadeIn 0.4s ease;
}
#winner-feed-box .feed-item strong { flex-shrink: 0; }
#winner-feed-box .feed-item span   { flex-shrink: 0; margin-left: auto; }

@media (max-width: 480px) {
    #winner-feed-box .feed-item {
        font-size: 0.78em;
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
    }
    #winner-feed-box .feed-item span {
        margin-left: 0;
    }
}
#winner-feed-box .feed-item:last-child { border-bottom: none; }

@keyframes feedFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* spin */
#winner-feed-box {
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: #363124 #1a1a1a;
	padding: 6px 12px;
	background: rgba(0,0,0,0.35);
	border: 0.2vh solid rgba(104, 91, 68, 0.65);
	border-radius: 4px;
	margin-bottom: 8px;
	display: list-item;
}
#winner-feed-box::-webkit-scrollbar { width: 4px; }
#winner-feed-box::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 4px; }
#winner-feed-box::-webkit-scrollbar-thumb { background: linear-gradient(90deg, rgb(255 126 102 / 16%), rgb(20 13 8 / 66%)); }

#winner-feed-box .feed-item {
	font-size: 0.82em;
	padding: 3px 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	animation: feedFadeIn 0.4s ease;
}
#winner-feed-box .feed-item:last-child { border-bottom: none; }

@keyframes feedFadeIn {
	from { opacity: 0; transform: translateY(-5px); }
	to   { opacity: 1; transform: translateY(0); }
}