.page-title{
    text-align:center;
    margin-bottom:35px;
}

.match-overview{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    margin:40px auto 60px;
}

/* Arena */

.arena-card{
    width:340px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:2px;
    overflow:hidden;
    box-shadow:0 2px 6px rgba(0,0,0,.08);
    flex-shrink:0;
}

.arena-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
}

.arena-card h2{
    margin:0;
    padding:14px;
    text-align:center;
    font-size:20px;
    font-weight:600;
}

/* Match Information */

.match-info{
    width:360px;
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:10px;
}

.info-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    font-size:17px;
    border-bottom:1px solid #ececec;
}

.info-row:last-child{
    border-bottom:none;
}

.info-row strong{
    color:#555;
    font-weight:600;
}

.info-row span{
    font-weight:500;
    text-align:right;
}
/* Players */

.match-card{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:55px;
    margin-top:70px;
}

.player{
    width:280px;
    padding:25px;
    background:#fff;
    border:1px solid #dcdcdc;
    border-radius:2px;
    text-decoration:none;
    text-align:center;
    box-shadow:0 2px 6px rgba(0,0,0,.07);
}

.player-card.winner{
    opacity:1;
}

.player-info h2{
    font-size:28px;
    margin-bottom:12px;
}

.player-card.loser{
    opacity:.85;
}

.player img{
    width:128px;
    height:128px;
    border-radius:2px;
    margin-bottom:15px;
}

.player h2{
    margin:18px 0 8px;
}

/* Stats */

.player-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.player-stats strong{
    display:block;
    font-size:22px;
}

.player-stats span{
    font-size:13px;
    color:#777;
}

/* Winner */

.winner-badge{
    display:inline-block;
    background:#36b37e;
    color:#fff;
    padding:6px 14px;
    border-radius:2px;
    font-size:14px;
    font-weight:600;
}

.loser-badge{
    display:inline-block;
    background:#ececec;
    color:#666;
    padding:6px 14px;
    border-radius:2px;
    font-size:14px;
}

/* VS */

.vs-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f3f3f3;
    border:2px solid #ddd;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:bold;
}

.match-summary{
    display:flex;
    align-items:center;
    gap:40px;

    width:760px;
    margin:40px auto 60px;

    padding:30px;

    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    box-shadow:0 3px 8px rgba(0,0,0,.06);
}