.ranking-page {
    padding: 30px 0 60px;
}

.ranking-header {
    text-align: center;
    margin-bottom: 30px;
}

    .ranking-header h1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
    }

    .ranking-header p {
        color: #64748b;
        margin-top: 8px;
    }

.ranking-table {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.ranking-table-head {
    display: grid;
    grid-template-columns: 120px 1fr 150px;
    padding: 18px 25px;
    background: #0f172a;
    color: white;
    font-weight: 700;
}

.ranking-row {
    display: grid;
    grid-template-columns: 120px 1fr 150px;
    align-items: center;
    padding: 16px 25px;
    border-bottom: 1px solid #e5e7eb;
}

    .ranking-row:last-child {
        border-bottom: none;
    }

.rank-number {
    font-weight: 800;
    font-size: 1.1rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .player-info img {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
    }

    .player-info span {
        font-weight: 700;
    }

.elo-score {
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #2563eb;
}

.gold {
    font-size: 1.6rem;
}

.silver {
    font-size: 1.6rem;
}

.bronze {
    font-size: 1.6rem;
}

@media(max-width:768px) {

    .ranking-table-head,
    .ranking-row {
        grid-template-columns: 80px 1fr 100px;
        padding: 12px;
    }

    .player-info img {
        width: 42px;
        height: 42px;
    }

    .ranking-header h1 {
        font-size: 2rem;
    }
}
