<style>
.top-hero{
    max-width:900px;
    margin:0 auto;
}
.top-panel{
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.015));
    box-shadow:0 18px 40px rgba(0,0,0,.22);
    backdrop-filter:blur(8px);
}
.top-note{
    font-size:.9rem;
    color:rgba(255,255,255,.66);
}
.top-empty{
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.02);
}
.top-table-wrap{
    overflow-x:auto;
}
.top-table{
    width:100%;
    border-collapse:collapse;
}
.top-table th,
.top-table td{
    padding:12px 12px;
    border-bottom:1px solid rgba(255,255,255,.08);
    text-align:left;
    white-space:nowrap;
}
.top-table th{
    font-size:.82rem;
    color:rgba(255,255,255,.62);
    font-weight:800;
}
.top-player-cell{
    display:flex;
    align-items:center;
    gap:10px;
}
.top-player-icon{
    width:36px;
    height:36px;
    object-fit:contain;
    border-radius:10px;
    flex:0 0 36px;
}
.top-rank{
    font-weight:900;
    font-size:1rem;
}
.top-tag{
    font-size:.82rem;
    color:rgba(255,255,255,.62);
}
.top-link{
    text-decoration:none;
}
.top-link .btn{
    white-space:nowrap;
}

body.light-mode .top-panel,
body.light-mode .top-empty{
    background:#fff;
    border-color:#e5e7eb;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}
body.light-mode .top-note,
body.light-mode .top-table th,
body.light-mode .top-tag{
    color:#6b7280;
}
body.light-mode .top-table td{
    color:#111827;
    border-color:#e5e7eb;
}
.top-mobile-card{
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    background:rgba(255,255,255,.025);
    padding:12px;
    margin-bottom:12px;
}
.top-mobile-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
}
.top-mobile-left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}
.top-mobile-rank{
    font-weight:900;
    font-size:1rem;
    min-width:34px;
}
.top-mobile-stats{
    margin-top:10px;
    font-size:.9rem;
    color:rgba(255,255,255,.78);
    display:grid;
    gap:4px;
}
.top-pagination-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:18px;
    flex-wrap:wrap;
}
.top-page-info{
    font-size:.92rem;
    color:rgba(255,255,255,.72);
    font-weight:700;
}

body.light-mode .top-mobile-card{
    background:#fff;
    border-color:#e5e7eb;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}
body.light-mode .top-mobile-stats,
body.light-mode .top-page-info{
    color:#4b5563;
}
</style>