/* Hilangkan border tabel */
.pss-topscorer,
.pss-topscorer tr,
.pss-topscorer th,
.pss-topscorer td{
    border:none !important;
}


/* Top Scorer */

.pss-topscorer{
    width:100%;
    border-collapse:collapse;
}

.pss-topscorer th,
.pss-topscorer td{
    vertical-align:middle;
}

.pss-topscorer th.center,
.pss-topscorer td.center{
    text-align:center;
}

.pss-player{
    display:flex;
    align-items:center;
    gap:12px;
}

.pss-player img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.pss-player span{
    font-weight:600;
}

.pss-player{
    display:flex;
    align-items:center;
    gap:12px;
}

.pss-player img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.pss-player span{
    font-weight:600;
}

.pss-player-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:20px;
}




/* Grid pemain */

.pss-player-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

}

/* CARD PEMAIN */

.pss-player-card{
    position:relative;
    overflow:hidden;
    /* border-radius:12px; */
    aspect-ratio:3/4;
    background:#111;
}

.pss-player-card img{
	z-index: 0;
	position:relative;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Gradasi hitam bawah */

.pss-player-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 45%,
        rgba(0,0,0,.45) 70%,
        rgba(0,0,0,.95) 100%
    );
    z-index:1;
}

/* Nomor punggung */

.pss-player-number{
    position:absolute;
    top:20px;
    left:20px;
    color:#fff;
    font-size:44px;
    font-weight:700;
    z-index:2;
}

/* Nama & posisi */

.pss-player-overlay{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:2;
}

.pss-player-overlay h3{
    margin:0;
    color:#fff;
    font-size:20px;
    line-height:1.1;
    font-weight:700;
}

.pss-player-overlay span{
    display:block;
    margin-top:2px;
    color:#d0d0d0;
    font-size:14px;
}

.pss-player-card{
    text-decoration:none;
    color:inherit;
    display:block;
}

.pss-player-card:hover{
    transform:translateY(-5px);
    transition:.25s;
}

.pss-player-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

/* ==========================
   SINGLE PLAYER
========================== */

.pss-single-player{
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

.pss-player-banner{
    width:100%;
    background:#2d2d2d;
}

.pss-player-header{

    background:#2d2d2d;
    border-radius:12px;

    padding:40px 0px 40px 0px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.pss-player-left{

    display:flex;
    align-items:center;
    gap:25px;

}

.pss-player-header img{

    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;

}

.pss-player-info h1{

    margin:0;
    font-size:30px;
    font-weight:700;
    color:#fff;

}

.pss-player-position{

    margin-top:8px;
    color:#cfcfcf;
    font-size:18px;

}

.pss-player-number-single{

    font-size:72px;
    font-weight:800;
    color:#fff;
    line-height:1;

}


/* ==========================
   PLAYER STATISTICS PROFILE
========================== */

.pss-player-stats{

    max-width:1200px;
    margin:20px auto 60px;

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;

    padding:0 20px;

}

/* Kartu Kuning */
.pss-player-stats .pss-stat-card:has(.pss-stat-yellow) {
    background: #f5d742;
    border: 1px solid #f5d742;
}

/* Kartu Merah */
.pss-player-stats .pss-stat-card:has(.pss-stat-red) {
    
    background: #e53935 ;
    border: 1px solid #e53935;
}
.pss-player-stats .pss-stat-card:has(.pss-stat-red) span,
.pss-player-stats .pss-stat-card:has(.pss-stat-red) strong {
    color: #fff !important;
}

.pss-stat-card{

    background:#fff;

    border-radius:12px;

    padding:30px 20px;

    text-align:center;

    border:1px solid #ececec;

    transition:.25s;

}

.pss-stat-card:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.pss-stat-card span{

    display:block;

    font-size:14px;

    color:#777;

    text-transform:uppercase;

    letter-spacing:1px;

}

.pss-stat-card strong{

    display:block;

    margin-top:10px;

    font-size:40px;

    line-height:1;

    font-weight:700;

    color:#111;

}

/* Tablet */

@media(max-width:992px){

    .pss-player-stats{

        grid-template-columns:repeat(3,1fr);

    }

}

/* Mobile */

@media(max-width:576px){

    .pss-player-stats{

        grid-template-columns:repeat(2,1fr);

    }

}


/* ==========================
   SEASON TABS
========================== */

.pss-season-tabs{

    max-width:1200px;
    margin:0px auto 30px;

    padding:0 20px;

    display:flex;
    flex-wrap:wrap;
    gap:12px;

}

.pss-season-tab{

    background:#fff;

    border:1px solid #ddd;

    border-radius:8px;

    padding:10px 20px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.pss-season-tab:hover{

    background:#13a538;

    color:#fff;

    border-color:#13a538;

}

/* Tab aktif */

.pss-season-tab.active{

    background:#13a538;

    color:#fff;

    border-color:#13a538;

}

/* ==========================
   SECTION TITLE
========================== */

.pss-section-title{

    max-width:1200px;

   

    margin:20px auto 20px;

    padding:0 20px;

    font-size:20px;

    font-weight:600;

    color:#222;

}



/* ==========================
   MATCH HISTORY TABLE
========================== */

#pss-player-matches{
    max-width:1200px;
    margin:0 auto 60px;
    padding:0 20px;
    overflow-x:auto;
    box-sizing:border-box;
}

.pss-match-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    overflow:hidden;
}

.pss-match-table th{
    background:#13a538;
    color:#fff;
    padding:14px;
    text-align:left;
    font-size:14px;
    font-weight:600;
}

.pss-match-table td{
    padding:14px;
    border-bottom:1px solid #eee;
    font-size:15px;
}

.pss-match-table tbody tr:nth-child(even){
    background:#fafafa;
}

.pss-match-table tbody tr:hover{
    background:#f1f7f2;
}

.pss-match-table tbody tr:last-child td{
    border-bottom:none;
}

.pss-score{
    text-align:center;
    font-weight:700;
    white-space:nowrap;
}

/* ===============================
   Match Schedule Card
================================= */

.pss-match-schedule{

   display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:30px;

    width:100%;

}

.pss-match-card{

     background:#fff;
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:20px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    height:100%;

}

.pss-match-date{

    font-size:17px;
    font-weight:700;
    margin-bottom:4px;
    text-align:center;

}

.pss-match-kickoff{

    font-size:15px;
    color:#777;
    margin-bottom:15px;
    text-align:center;

}

.pss-match-content{

     display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    width:100%;
}

.pss-team{
    flex:1;
    min-width:0;

    display:flex;
    flex-direction:column;
    align-items:center;

}

.pss-team img{

    width:50px;
    height:50px;
    object-fit:contain;

}
.pss-team h3{

    margin:6px 0 0;

    font-size:14px;

    line-height:1.3;

    text-align:center;

    word-break:break-word;

}

.pss-match-center{

    width:70px;
    height:50px;

    background: #f4f3f3;

    border: radius 16px;px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:bold;

    flex-shrink:0;

}

.pss-match-stadium{

    margin-top:17px;

    color:#777;

    font-size:14px;

    text-align:center;
}

@media(max-width:991px){

    .pss-match-schedule{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .pss-match-schedule{

        grid-template-columns:1fr;

    }

}




/* =====================================================
   PLAYER HEADER
===================================================== */

.pss-player-banner{

    position:relative;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:0px;

    overflow:hidden;

    margin-bottom:0px;

}

.pss-player-banner::before{

    content:"";

    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    background:rgba(0,0,0,.88);

    z-index:1;

}

/* ATUR TINGGAI BANNER */

.pss-player-banner-overlay{

    position:relative;

    z-index:2;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:60px;

    min-height:320px;

}

.pss-player-banner-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;

    color:#fff;

}

.pss-player-banner-number{

    display:inline-block;

    font-size:32px;
    font-weight:700;

    margin:0 0 12px;

    color:#FFD54A;


}

.pss-player-banner-left h1{

    font-size:45px;
    font-weight: 700;
    line-height:1.05;

    margin:0 0 20px 0;

    color:#fff;

}

.pss-player-banner-position{

    font-size:24px;

    color:#cfcfcf;

}

.pss-player-banner-right{

    flex-shrink:0;

}

.pss-player-banner-right img{

    width:140px;
    height:140px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid #fff;

    background:#fff;

}

@media(max-width:768px){

.pss-player-overlay{

    flex-direction:column-reverse;

    text-align:center;

    padding:40px 25px;

    min-height:auto;

}

.pss-player-left{

    max-width:100%;

}

.pss-player-right img{

    width:180px;
    height:180px;

    margin-bottom:30px;

}

.pss-player-left h1{

    font-size:42px;

}

.pss-player-number{

    font-size:32px;

}

.pss-player-position{

    font-size:20px;

}

}




/* ===============================
PLAYER NAVBAR
=============================== */

.pss-player-navbar{

    display:flex;

    align-items:center;

    gap:40px;

    background:#242424;

    color:#fff;

    padding:17px 35px;

    /* border-radius:0 0 16px 16px; */

    margin-bottom:45px;

}

.pss-player-navbar-item{

    display:flex;

    flex-direction:column;

}

.pss-player-navbar-item label{

    font-size:13px;

    color:#9f9f9f;

    margin-bottom:6px;

}

.pss-player-navbar-item strong{

    font-size:17px;

    font-weight:700;

    color:#fff;

}

.pss-player-navbar-item select{

    background:none;

    border:none;

    color:#fff;

    font-size:22px;

    font-weight:700;

    outline:none;

    cursor:pointer;

}

.pss-player-navbar-info{

    margin-left:auto;

    color:#9f9f9f;

    font-size:15px;

}

/* #pss-season-select {
    color: #fff;
    background: #1f8f43;
    border: 1px solid #1f8f43;
    border-radius: 8px;
    padding: 8px 12px 8px 0;
} */


#pss-season-select {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    text-indent: 0;
}

#pss-season-select option {
    color: #000;
    background: #fff;
    padding-left: 0;
}

/* ===========================
   MATCH SLIDER
=========================== */

.pss-slider{

    position:relative;

    width:100%;

    overflow:hidden;

    padding-bottom:70px;

}


.pss-slider-track{
    display:flex;
    flex-wrap:nowrap;
    gap:20px;
    transition:transform .35s ease;
}


/* CARD KHUSUS SLIDER */

.pss-slider-card{

    flex:0 0 30%;

    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:20px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    box-sizing:border-box;
}

.pss-slider-prev,
.pss-slider-next{

    position:absolute;

    bottom:0;

    width:36px;
    height:36px;

    border:none;
    border-radius:0%;

    background:#e8e9e9;
    color:#7c7a7a;

    cursor:pointer;

    font-size:12px;
    font-weight:bold;

    transition:.25s;
}

.pss-slider-prev{
    left:0;
}

.pss-slider-next{
    left:49px;
}


/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .pss-slider-card{

        flex:0 0 100%;

    }

}