.pm-matches{
    display:grid;
    gap:20px;
}

.pm-match-card{
    background:#101828;
    border-radius:20px;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
}

.pm-team{
    display:flex;
    align-items:center;
    gap:10px;
}

.pm-team img{
    width:50px;
}


body {
    background:#050816;
}

.pm2026-wrapper{
    display:flex;
    min-height:100vh;
    background:#050816;
    color:#fff;
    font-family:Arial,sans-serif;
}

.pm2026-sidebar{
    width:250px;
    background:#0b0f1f;
    padding:30px 20px;
    border-right:1px solid rgba(255,255,255,.08);
}

.pm2026-logo{
    text-align:center;
    margin-bottom:40px;
    color:#ffcc00;
}

.pm2026-sidebar ul{
    list-style:none;
    padding:0;
}

.pm2026-sidebar li{
    padding:15px;
    margin-bottom:10px;
    background:#11182d;
    border-radius:14px;
    cursor:pointer;
}

.pm2026-sidebar li.active{
    background:linear-gradient(90deg,#ff0000,#ff3c00);
}

.pm2026-main{
    flex:1;
    padding:30px;
}

.pm2026-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.pm2026-points{
    background:#11182d;
    padding:15px 25px;
    border-radius:15px;
    font-size:22px;
    color:#ffcc00;
}

.pm2026-hero{
    margin-top:30px;
    background:linear-gradient(90deg,#260000,#001633);
    border-radius:25px;
    padding:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:center;
}

.pm2026-hero h2{
    font-size:40px;
}

.countdown h3{
    font-size:50px;
    margin:15px 0;
}

.countdown button{
    background:#ff0000;
    border:none;
    padding:18px 35px;
    border-radius:14px;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.pm2026-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.card{
    background:#11182d;
    border-radius:20px;
    padding:25px;
}

.card p{
    font-size:40px;
    margin:0;
    color:#00ff99;
}

.pm2026-ranking{
    margin-top:30px;
    background:#11182d;
    padding:25px;
    border-radius:20px;
}

.pm2026-ranking table{
    width:100%;
    border-collapse:collapse;
}

.pm2026-ranking th,
.pm2026-ranking td{
    padding:15px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

@media(max-width:900px){

    .pm2026-wrapper{
        flex-direction:column;
    }

    .pm2026-sidebar{
        width:100%;
    }

    .pm2026-hero{
        flex-direction:column;
        gap:25px;
    }

    .pm2026-cards{
        grid-template-columns:1fr;
    }
}

/* =========================================================
PREDICTIONS
========================================================= */

.pm-predictions{

    display:flex;
    flex-direction:column;
    gap:20px;

}

/* =========================================================
CARD
========================================================= */

.pm-prediction-card{

    background:
    linear-gradient(
        135deg,
        #111827 0%,
        #0b1220 100%
    );

    border:1px solid rgba(255,255,255,.06);

    border-radius:28px;

    padding:24px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    position:relative;

    overflow:hidden;

    transition:.3s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,.25);

}

/* Glow */

.pm-prediction-card::before{

    content:"";

    position:absolute;

    top:-100px;
    right:-100px;

    width:200px;
    height:200px;

    background:
    radial-gradient(
        rgba(255,0,70,.15),
        transparent 70%
    );

    pointer-events:none;

}

/* Hover */

.pm-prediction-card:hover{

    transform:translateY(-3px);

    border-color:
    rgba(255,255,255,.12);

    box-shadow:
    0 15px 50px rgba(0,0,0,.35);

}

/* =========================================================
TEAMS
========================================================= */

.pm-team{

    display:flex;
    align-items:center;

    gap:14px;

    min-width:180px;

    font-size:18px;
    font-weight:700;

    color:#fff;

}

.pm-team img{

    width:52px;
    height:52px;

    border-radius:50%;

    object-fit:cover;

    background:#101726 !important;

}

/* =========================================================
CENTER
========================================================= */

.pm-inputs{

    display:flex;
    align-items:center;

    gap:18px;

}

/* =========================================================
INPUTS
========================================================= */

.pm-inputs input{

    width:72px;
    height:72px;

    border:none;

    border-radius:20px;

    background:#1f2937;

    color:#fff;

    font-size:28px;
    font-weight:800;

    text-align:center;

    outline:none;

    transition:.2s ease;

    box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05);

}

.pm-inputs input:focus{

    background:#293548;

    box-shadow:
    0 0 0 3px rgba(255,0,70,.25);

}

/* Remove arrows */

.pm-inputs input::-webkit-outer-spin-button,
.pm-inputs input::-webkit-inner-spin-button{

    -webkit-appearance:none;
    margin:0;

}

/* =========================================================
VS
========================================================= */

.pm-inputs span{

    color:#94a3b8;

    font-size:18px;
    font-weight:700;

    letter-spacing:2px;

}

/* =========================================================
BUTTON
========================================================= */

.pm-prediction-card button{

    border:none;

    background:
    linear-gradient(
        135deg,
        #ff004c,
        #ff5a00
    );

    color:#fff;

    font-size:15px;
    font-weight:700;

    padding:16px 24px;

    border-radius:16px;

    cursor:pointer;

    transition:.25s ease;

    white-space:nowrap;

}

.pm-prediction-card button:hover{

    transform:translateY(-2px);

    opacity:.92;

}

/* =========================================================
DATE
========================================================= */

.pm-match-date{

    position:absolute;

    top:18px;
    right:20px;

    font-size:13px;

    color:#94a3b8;

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .pm-prediction-card{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:28px 20px;

    }

    .pm-team{

        justify-content:center;

        min-width:auto;

    }

    .pm-inputs{

        margin:10px 0;

    }

    .pm-inputs input{

        width:64px;
        height:64px;

        font-size:24px;

    }

    .pm-prediction-card button{

        width:100%;

    }

    .pm-match-date{

        position:relative;

        top:auto;
        right:auto;

        margin-bottom:12px;

    }

}

/* =========================================================
TEAM
========================================================= */

.pm-team{

    display:flex;
    align-items:center;
    gap:14px;

    min-width:180px;

}

.pm-team img{

    width:54px;
    height:54px;

    object-fit:cover;

    border-radius:50%;

    background:#fff;

    padding:3px;

    box-shadow:
    0 4px 15px rgba(0,0,0,.25);

}

.pm-team-name{

    color:#fff;

    font-size:18px;
    font-weight:700;

}

/* =========================================================
META
========================================================= */

.pm-match-meta{

    position:absolute;

    top:18px;
    left:20px;

    display:flex;
    gap:10px;

    flex-wrap:wrap;

}

.pm-match-meta span{

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    padding:8px 12px;

    border-radius:999px;

    font-size:12px;
    font-weight:600;

    color:#cbd5e1;

    backdrop-filter:blur(10px);

}

/* =========================================================
STATUS
========================================================= */

.pm-status{

    color:#00ff99;

}

/* =========================================================
GROUP
========================================================= */

.pm-group{

    color:#ffcc00;

}

/* =========================================================
DATE
========================================================= */

.pm-date{

    color:#94a3b8;

}

/* =========================================================
PHASE TITLE
========================================================= */

.pm-phase-title{

    margin:40px 0 20px;

    padding:16px 22px;

    border-radius:18px;

    background:
    linear-gradient(
        90deg,
        #6d00ff,
        #9b00ff
    );

    color:#fff;

    font-size:22px;
    font-weight:800;

    letter-spacing:.5px;

    box-shadow:
    0 10px 30px rgba(109,0,255,.25);

}

/* =========================================================
STADIUM
========================================================= */

.pm-stadium{

    margin-top:10px;

    font-size:13px;

    color:#94a3b8;

    display:flex;
    align-items:center;
    gap:6px;

}
