/* ==========================================
   Index Page Only
========================================== */

/* Stats Cards */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:40px 0 50px;
}

.stat-card{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:10px;
    padding:30px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
}

.stat-card h2{
    font-size:34px;
    margin-bottom:8px;
    color:#222;
}

.stat-card span{
    color:#777;
    font-size:15px;
}


/* Arena Filter */

.kit-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin:35px 0;
}

.kit-tabs a{
    padding:10px 18px;
    border:1px solid #ddd;
    border-radius:2px;
    background:#fff;
    color:#555;
}

.kit-tabs a:hover{
    background:#f4f4f4;
}

.kit-tabs a.active{
    background:#9C9C9C;
    color:#fff;
    border-color:#737373;
}


/* Leaderboard */

.leaderboard-table{
    width:100%;
    border-collapse:collapse;
}

.leaderboard-table th{
    background:#fafafa;
    color:#666;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.leaderboard-table th,
.leaderboard-table td{
    padding:16px;
    border-bottom:1px solid #eee;
}

.leaderboard-table tbody tr{
    transition:.15s;
}

.leaderboard-table tbody tr:hover{
    background:#f8f8f8;
}

/* Rankings */

.rank {
    font-weight: bold;
}

.gold {
    color: #b8860b;
}

.silver {
    color: #7d7d7d;
}

.bronze {
    color: #a05a2c;
}

.player-link{
    display:flex;
    align-items:center;
    gap:12px;
    color:inherit;
}

.player-link img{
    width:38px;
    height:38px;
    border-radius:6px;
}

.player-link:hover span{
    color:#A6A6A6;
}

.rank.gold{
    color:#d4af37;
}

.rank.silver{
    color:#8c8c8c;
}

.rank.bronze{
    color:#b87333;
}

/* Latest Matches */

.latest-matches{

    margin-top:50px;

    background:#fff;

    border:1px solid #e6e6e6;

    border-radius:10px;

    padding:30px;

    box-shadow:0 2px 8px rgba(0,0,0,.05);

}

.latest-matches h2{

    margin-bottom:25px;

}

.view-match{

    color:#B0B0B0;

    font-weight:600;

}

.view-match:hover{

    text-decoration:underline;

}

.homepage{
    width:100%;
    max-width:1500px;
    margin:0 auto;
    padding:0 50px;
}
