    :root {
        --bg: #0b0c10;
        --card: #121522;
        --acc: #ff1e00;
        --acc2: #ff6033;
        --text: #e9edf1;
        --muted: #a4adb8;
        --border: rgba(255, 255, 255, .08);
        --gold: #f6c945;
        --silver: #cfd6e6;
        --bronze: #d8995b;
    }

    * {
        box-sizing: border-box;
    }

    html,
    body {
        height: 100%;
    }

    body {
        margin: 0;
        font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
        color: var(--text);
        background: radial-gradient(900px 500px at 85% -10%, rgba(255, 30, 0, .12), transparent 60%),
            radial-gradient(900px 500px at 10% -15%, rgba(80, 110, 255, .10), transparent 55%), var(--bg);
    }

    .container {
        width: min(1100px, 92vw);
        margin: 0 auto;
    }

    /* Header */
    header {
        position: sticky;
        top: 0;
        z-index: 20;
        background: linear-gradient(180deg, rgba(11, 12, 16, .9), rgba(11, 12, 16, .6));
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(6px);
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 0;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        letter-spacing: .4px;
    }

    .brand img {
        width: 32px;
        height: 32px;
    }

    .menu {
        display: flex;
        gap: 12px;
    }

    .menu a {
        text-decoration: none;
        color: #fff;
        padding: 8px 12px;
        border-radius: 12px;
        opacity: .92;
        border: 1px solid transparent;
    }

    .menu a:hover {
        opacity: 1;
        background: rgba(255, 255, 255, .06);
        border-color: var(--border);
    }

    .btn-acc {
        background: linear-gradient(180deg, var(--acc), var(--acc2));
        border-radius: 12px;
        padding: 9px 14px;
        font-weight: 800;
    }

    /* Title section */
    .hero {
        padding: clamp(22px, 6vw, 54px) 0 0;
    }

    h1 {
        font-size: clamp(28px, 5.6vw, 46px);
        line-height: 1.08;
        margin: 8px 0 6px;
        font-weight: 800;
    }

    .subtitle {
        color: var(--muted);
        margin: 0 0 16px;
        font-weight: 600;
    }

    .card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    }

    /* Podium */
    .podium {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    @media (max-width: 900px) {
        .podium {
            grid-template-columns: 1fr;
        }
    }

    .top {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 14px;
        border-radius: 16px;
        background: #171a25;
        border: 1px solid var(--border);
    }

    .top .pos {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        font-weight: 800;
        color: #000;
    }

    .top.gold .pos {
        background: linear-gradient(180deg, var(--gold), #e7b81c);
    }

    .top.silver .pos {
        background: linear-gradient(180deg, var(--silver), #b9c2d4);
    }

    .top.bronze .pos {
        background: linear-gradient(180deg, var(--bronze), #c1783d);
    }

    .top img {
        width: 160px;
        height: 160px;
        object-fit: contain;
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
    }

    .top .nick {
        font-weight: 800;
        text-align: center;
    }

    .top .bal {
        padding: 6px 10px;
        border-radius: 10px;
        background: #0f1117;
        border: 1px solid var(--border);
        font-weight: 700;
    }

    /* List */
    .list {
        margin-top: 14px;
    }

    .row {
        display: grid;
        grid-template-columns: 56px 1fr 160px;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-bottom: 1px solid var(--border);
    }

    .row:last-child {
        border-bottom: none;
    }

    .row .n {
        font-weight: 800;
        color: #c7cbd6;
    }

    .row .u {
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .row .b {
        text-align: right;
        font-weight: 700;
    }

    footer {
        border-top: 1px solid var(--border);
        color: var(--muted);
        font-size: 13px;
        padding: 16px 0 36px;
        margin-top: 26px;
    }