/* ==================================
   FIFA WORLD CUP 2026 FUTURISTIC UI
================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root{
    --bg:#08111f;
    --card:#0f1b31;
    --primary:#00d4ff;
    --secondary:#4f46e5;
    --text:#ffffff;
    --muted:#a0aec0;
    --border:rgba(255,255,255,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/* ===========================
   HEADER
=========================== */

.main-header{
    position:sticky;
    top:0;
    z-index:1000;

    backdrop-filter:blur(16px);

    background:rgba(8,17,31,.85);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,.25);
}

/* ===========================
   CONTAINER
=========================== */

.main-header .container{
    max-width:1200px;
    margin:0 auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 25px;
}

/* ===========================
   LOGO
=========================== */

.main-header h1{
    margin:0;

    font-size:1.5rem;
    font-weight:800;

    background:linear-gradient(
        90deg,
        #00d4ff,
        #4f46e5
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    letter-spacing:.5px;
}

/* ===========================
   MENU
=========================== */

.main-header nav{
    display:flex;
    gap:12px;
}


.main-header nav a{
    position:relative;

    text-decoration:none;

    color:#dbeafe;

    padding:10px 18px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

/* Hover */

.main-header nav a:hover{

    color:#fff;

    background:rgba(0,212,255,.12);

    box-shadow:
        0 0 15px rgba(0,212,255,.25);
}

/* Active Menu */

.main-header nav a.active{

    color:#fff;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #4f46e5
    );

    box-shadow:
        0 0 20px rgba(0,212,255,.35);
}

/* Animated underline */

.main-header nav a::after{

    content:'';

    position:absolute;

    bottom:0;
    left:50%;

    width:0;
    height:2px;

    background:#00d4ff;

    transition:.3s;

    transform:translateX(-50%);
}

.main-header nav a:hover::after{
    width:70%;
}
//====
.main-header nav a{
    display:flex;
    align-items:center;
    gap:8px;

    text-decoration:none;
    color:#dbeafe;

    padding:10px 18px;
    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.menu-icon{
    display: inline-flex;
  align-items: center;
    font-size:1rem;
}

.menu-text{
    display:inline;
}
nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;          /* jarak icon & text */
  white-space: nowrap; /* paksa 1 baris */
}
/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .main-header .container{
        flex-direction:column;
        gap:15px;
    }
    
    .main-header h1{
        font-size:1.2rem;
    }
    
    .menu-text{
        display:none;
    }

    .menu-icon{
        font-size:1.4rem;
    }

    .main-header nav{
        width:100%;
        justify-content:space-evenly;
    }

    .main-header nav a{

        width:48px;
        height:48px;

        padding:0;

        display:flex;
        justify-content:center;
        align-items:center;

        border-radius:50%;
    }
}    
    

body{
    font-family:'Inter',sans-serif;
    background:
        radial-gradient(circle at top right,#1e40af 0%,transparent 30%),
        radial-gradient(circle at bottom left,#00d4ff 0%,transparent 25%),
        #08111f;
    color:var(--text);
    min-height:100vh;
    padding:30px 15px;
}

/* ==================================
   CONTAINER
================================== */

.card{
    max-width:1100px;
    margin:20px auto;
    padding:25px;
    background:rgba(15,27,49,.75);
    backdrop-filter:blur(12px);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:
        0 10px 40px rgba(0,0,0,.35),
        0 0 25px rgba(0,212,255,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:
        0 15px 50px rgba(0,0,0,.45),
        0 0 35px rgba(0,212,255,.15);
}

/* ==================================
   HERO
================================== */

.card h2{
    font-size:2.5rem;
    font-weight:800;
    text-align:center;
    margin-bottom:10px;

    background:linear-gradient(
        90deg,
        #00d4ff,
        #4f46e5,
        #00d4ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.card h3{
    margin-bottom:20px;
    font-size:1.4rem;
    color:#00d4ff;
}

.card p{
    color:var(--muted);
    line-height:1.7;
}

/* ==================================
   STATS
================================== */

.stats{
    max-width:1100px;
    margin:20px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.stat-box{
    background:rgba(15,27,49,.8);
    border:1px solid var(--border);
    border-radius:18px;
    padding:25px;
    text-align:center;

    backdrop-filter:blur(12px);

    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-5px);

    box-shadow:
        0 0 30px rgba(0,212,255,.25);
}

.stat-number{
    font-size:2.4rem;
    font-weight:900;
    margin-bottom:10px;

    color:var(--primary);

    text-shadow:
        0 0 10px rgba(0,212,255,.6);
}

/* ==================================
   MATCHES
================================== */

.match-row{
    padding:15px;
    margin-bottom:12px;

    border-radius:12px;

    background:
        linear-gradient(
            90deg,
            rgba(0,212,255,.08),
            rgba(79,70,229,.08)
        );

    border-left:4px solid var(--primary);

    transition:.25s;
}

.match-row:hover{
    transform:translateX(6px);

    background:
        linear-gradient(
            90deg,
            rgba(0,212,255,.15),
            rgba(79,70,229,.15)
        );
}

.match-row strong{
    color:white;
    font-size:1rem;
}

/* ==================================
   GROUP LINKS
================================== */

.card a{
    display:inline-block;
    margin-bottom:12px;
    text-decoration:none;

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.15),
            rgba(79,70,229,.15)
        );

    border:1px solid rgba(0,212,255,.25);

    transition:.3s;
}

.card a:hover{
    color:white;

    transform:translateX(5px);

    background:
        linear-gradient(
            135deg,
            #00d4ff,
            #4f46e5
        );

    box-shadow:
        0 0 20px rgba(0,212,255,.35);
}

/* ==================================
   VISITOR COUNTER
================================== */

body > .stat-box:last-child{
    max-width:350px;
    margin:30px auto;
}

/* ==================================
   FUTURISTIC GLOW LINE
================================== */

.card::before{
    content:'';
    position:absolute;
}

.card{
    position:relative;
    overflow:hidden;
}

.card::after{
    content:'';

    position:absolute;
    top:0;
    left:-100%;

    width:100%;
    height:2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #00d4ff,
            transparent
        );

    animation:scan 5s linear infinite;
}
/* ===========================
   FOOTER
=========================== */

.main-footer{

    margin-top:50px;

    background:rgba(8,17,31,.90);

    backdrop-filter:blur(15px);

    border-top:1px solid rgba(255,255,255,.08);

    position:relative;

    overflow:hidden;
}

.main-footer::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        #00d4ff,
        #4f46e5,
        transparent
    );
}

.footer-content{

    max-width:1200px;

    margin:auto;

    padding:35px 20px;

    text-align:center;
}

/* ===========================
   LOGO
=========================== */

.footer-logo{

    font-size:1.4rem;

    font-weight:800;

    margin-bottom:20px;

    background:linear-gradient(
        90deg,
        #00d4ff,
        #4f46e5
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ===========================
   MENU FOOTER
=========================== */

.footer-links{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:25px;
}

.footer-links a{

    text-decoration:none;

    color:#cbd5e1;

    padding:10px 16px;

    border-radius:10px;

    transition:.3s;
}

.footer-links a:hover{

    color:#fff;

    background:rgba(0,212,255,.12);

    box-shadow:
        0 0 15px rgba(0,212,255,.25);
}
.group-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:12px;
    margin-top:15px;
}

.group-item{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:15px;
    border-radius:12px;

    text-decoration:none;
    font-weight:700;
    color:#800000;

    background:linear-gradient(
        135deg,
        rgba(0,212,255,.15),
        rgba(79,70,229,.15)
    );

    border:1px solid rgba(0,212,255,.25);

    transition:.3s;
}

.group-item:hover{
    transform:translateY(-3px);
    background:linear-gradient(
        135deg,
        #00d4ff,
        #4f46e5
    );

    box-shadow:0 0 20px rgba(0,212,255,.35);
}
/* ===========================
   COPYRIGHT
=========================== */

.footer-copy{

    color:#94a3b8;

    font-size:.9rem;

    line-height:1.8;
}

/* ===========================
   GLOW EFFECT
=========================== */

.main-footer::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    right:-100px;
    bottom:-150px;

    background:rgba(0,212,255,.08);

    border-radius:50%;

    filter:blur(100px);
}


@keyframes scan{
    100%{
        left:100%;
    }
}

@media(max-width:768px){
    .group-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:480px){
    .group-grid{
        grid-template-columns:1fr;
    }
}

.teams-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

@media(max-width:768px){
    .teams-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:480px){
    .teama-grid{
        grid-template-columns:1fr;
    }
}

.team-card{
    background:white;
    border-radius:10px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.team-card h3{
    margin-top:0;
    color:#800000;
}

.team-card p,
.team-card span{
    color:#722F37;
}

.stadium-card h3{
    margin-top:0;
    color:#800000;
}

.stadium-card p,
.stadium-card span{
    color:#722F37;
}

.stadiums-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.stadium-card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}
@media(max-width:768px){
    .stadiums-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:480px){
    .stadiums-grid{
        grid-template-columns:1fr;
    }
}
table{
    width:100%;
    border-collapse:collapse;
}

table th,
table td{
    padding:10px;
    border-bottom:1px solid #ddd;
    text-align:left;
}

table th{
    background:#f2f2f2;
}
.groups-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}
@media(max-width:768px){
    .groups-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:480px){
    .groups-grid{
        grid-template-columns:1fr;
    }
}

.group-card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    text-align:center;
}

/* ==========================
   GROUP FILTER FIFA STYLE
========================== */

.group-filter{
    display:flex;
    align-items:center;
    gap:12px;

    margin:25px 0;
    padding:15px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(0,234,255,.15);
    border-radius:18px;

    box-shadow:
        0 0 20px rgba(0,234,255,.08),
        inset 0 0 15px rgba(255,255,255,.02);
}

/* SELECT */

.group-filter select{
    flex:1;

    height:50px;
    padding:0 18px;

    border-radius:14px;
    border:1px solid rgba(0,234,255,.2);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02)
        );

    color:#fff;
    font-size:15px;
    font-weight:600;

    outline:none;
    cursor:pointer;

    transition:.3s;
}

.group-filter select:hover{
    border-color:#00eaff;
}

.group-filter select:focus{
    border-color:#00eaff;

    box-shadow:
        0 0 10px rgba(0,234,255,.4),
        0 0 25px rgba(0,234,255,.15);
}

/* OPTION */

.group-filter option{
    background:#081320;
    color:#fff;
}

/* BUTTON */

.group-filter button{
    height:50px;
    padding:0 26px;

    border:none;
    border-radius:14px;

    cursor:pointer;

    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;

    background:
        linear-gradient(
            135deg,
            #008cff,
            #00eaff
        );

    box-shadow:
        0 0 15px rgba(0,234,255,.35);

    transition:.3s;
}

.group-filter button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 0 20px rgba(0,234,255,.6),
        0 0 40px rgba(0,234,255,.25);
}

.group-filter button:active{
    transform:translateY(0);
}

/* Mobile */

@media(max-width:768px){

    .group-filter{
        flex-direction:column;
        align-items:stretch;
    }

    .group-filter select,
    .group-filter button{
        width:100%;
    }

}
/* ===================================
   FIFA WORLD CUP SEARCH FILTER
   Glassmorphism + Neon Cyan
=================================== */

.team-filter{
    display:flex;
    align-items:center;
    gap:12px;

    margin:25px 0;
    padding:15px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(0,234,255,.15);
    border-radius:18px;

    box-shadow:
        0 0 20px rgba(0,234,255,.08),
        inset 0 0 15px rgba(255,255,255,.02);
}

/* INPUT */

.team-filter input{
    flex:2;

    height:50px;
    padding:0 18px;

    border-radius:14px;
    border:1px solid rgba(0,234,255,.2);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02)
        );

    color:#fff;
    font-size:15px;
    font-weight:500;

    outline:none;
    transition:.3s;
}

.team-filter input::placeholder{
    color:rgba(255,255,255,.55);
}

.team-filter input:focus{
    border-color:#00eaff;

    box-shadow:
        0 0 12px rgba(0,234,255,.4),
        0 0 25px rgba(0,234,255,.15);
}

/* SELECT */

.team-filter select{
    flex:1;

    height:50px;
    padding:0 16px;

    border-radius:14px;
    border:1px solid rgba(0,234,255,.2);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02)
        );

    color:#fff;
    font-size:14px;
    font-weight:600;

    outline:none;
    cursor:pointer;
    transition:.3s;
}

.team-filter select:focus{
    border-color:#00eaff;

    box-shadow:
        0 0 12px rgba(0,234,255,.4),
        0 0 25px rgba(0,234,255,.15);
}

.team-filter option{
    background:#081320;
    color:#fff;
}

/* BUTTON */

.team-filter button{
    height:50px;
    padding:0 28px;

    border:none;
    border-radius:14px;

    cursor:pointer;

    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;

    background:
        linear-gradient(
            135deg,
            #008cff,
            #00eaff
        );

    box-shadow:
        0 0 15px rgba(0,234,255,.35);

    transition:.3s;
}

.team-filter button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 0 20px rgba(0,234,255,.6),
        0 0 40px rgba(0,234,255,.25);
}

.team-filter button:active{
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:768px){

    .team-filter{
        flex-direction:column;
        align-items:stretch;
    }

    .team-filter input,
    .team-filter select,
    .team-filter button{
        width:100%;
    }

}

/* ===================================
   STADIUM SEARCH
   FIFA FUTURISTIC STYLE
=================================== */

.stadium-filter{
    display:flex;
    align-items:center;
    gap:12px;

    margin:25px 0;
    padding:15px;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(0,234,255,.15);
    border-radius:18px;

    box-shadow:
        0 0 20px rgba(0,234,255,.08),
        inset 0 0 15px rgba(255,255,255,.02);
}

/* INPUT */

.stadium-filter input{
    flex:1;

    height:52px;
    padding:0 20px;

    border-radius:14px;
    border:1px solid rgba(0,234,255,.2);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02)
        );

    color:#fff;
    font-size:15px;
    font-weight:500;

    outline:none;
    transition:.3s;
}

.stadium-filter input::placeholder{
    color:rgba(255,255,255,.55);
}

.stadium-filter input:focus{
    border-color:#00eaff;

    box-shadow:
        0 0 12px rgba(0,234,255,.4),
        0 0 25px rgba(0,234,255,.15);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );
}

/* BUTTON */

.stadium-filter button{
    height:52px;
    min-width:120px;
    padding:0 28px;

    border:none;
    border-radius:14px;

    cursor:pointer;

    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;

    background:
        linear-gradient(
            135deg,
            #008cff,
            #00eaff
        );

    box-shadow:
        0 0 15px rgba(0,234,255,.35);

    transition:.3s;
}

.stadium-filter button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 0 20px rgba(0,234,255,.6),
        0 0 40px rgba(0,234,255,.25);
}

.stadium-filter button:active{
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:768px){

    .stadium-filter{
        flex-direction:column;
        align-items:stretch;
    }

    .stadium-filter input,
    .stadium-filter button{
        width:100%;
    }

}
.user-menu{
    position:relative;
    display:inline-block;
}

.menu-toggle{

    background:none;
    border:none;

    font-size:24px;
    color:#fff;
    cursor:pointer;

    padding:5px 10px;
}

.menu-dropdown{

    display:none;

    position:absolute;

    right:0;
    top:40px;

    min-width:220px;

    background:#08111f;

    border:1px solid #ddd;

    border-radius:8px;

    box-shadow:0 3px 15px rgba(0,0,0,.15);

    z-index:999;
}

.menu-dropdown a{

    display:block;

    padding:12px 15px;

    text-decoration:none;

    color:#fff;
}

.menu-dropdown a:hover{

    background:#f5f5f5;
}

.menu-user{

    padding:12px 15px;

    font-weight:bold;

    border-bottom:1px solid #eee;
}
/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .menu-dropdown{

        position:fixed;

        top:60px;
        right:10px;

        left:auto;

        width:220px;

        min-width:220px;

        max-width:calc(100vw - 20px);

        box-sizing:border-box;
    }

    .menu-dropdown a{

        display:block;
    
        width:100%;
    
        padding:14px 16px;
    
        box-sizing:border-box;
    
        text-decoration:none;
    
        color:#e2e8f0;
    }
    
    .menu-dropdown{

        overflow:hidden;
    }

    .menu-user{

        padding:18px;

        font-size:17px;
    }

    .menu-toggle{

        font-size:32px;
    }
}
/* =========================
   PREDICTION
========================= */

.prediction-card{

    background:#fff;

    border-radius:12px;

    padding:25px;

    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.prediction-title{

    text-align:center;

    margin-bottom:25px;

    font-size:26px;

    font-weight:700;
}

.prediction-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-bottom:18px;
}

.prediction-team{

    display:flex;

    align-items:center;

    gap:12px;

    padding-left:10px;

    flex:1;
}

.team-flag{

    width:36px;

    height:24px;

    object-fit:cover;

    border-radius:4px;

    border:1px solid #ddd;
}

.team-name{

    font-size:22px;

    font-weight:600;
}

.score-input{

    width:70px;

    height:55px;

    text-align:center;

    font-size:24px;

    font-weight:700;

    border:2px solid #d1d5db;

    border-radius:10px;
}

.score-input:focus{

    outline:none;

    border-color:#2563eb;

    box-shadow:
    0 0 0 3px rgba(37,99,235,.15);
}

.prediction-btn{

    display:block;

    width:100%;

    margin-top:25px;

    padding:14px;

    border:none;

    border-radius:10px;

    background:#2563eb;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;
}

.team-name{
    font-weight:700;
    font-size:22px;

    background-size:100%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.team-name{

    font-size:22px;
    font-weight:700;

    display:inline-block;

    text-shadow:
        0 0 1px rgba(0,0,0,.25);
}

.mobile-matches{
    display:none;
}
.player-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fill,minmax(260px,1fr));

    gap:15px;

    margin-bottom:25px;
}

.player-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.1);

    border-radius:12px;

    padding:15px;
}

.player-position{

    display:inline-block;

    padding:4px 10px;

    border-radius:20px;

    font-size:12px;

    font-weight:bold;

    background:#2563eb;

    color:#fff;

    margin-bottom:10px;
}

.player-name{

    font-size:18px;

    font-weight:700;

    margin-bottom:6px;
}

.player-club{

    font-size:14px;

    opacity:.85;

    margin-bottom:8px;
}
.player-position.gk{
    background:#16a34a;
}

.player-position.df{
    background:#2563eb;
}

.player-position.mf{
    background:#ca8a04;
}

.player-position.fw{
    background:#dc2626;
}
.player-meta{

    font-size:13px;

    opacity:.7;
}
@media (max-width:768px){

    .fixtures-table{
        display:none;
    }

    .mobile-matches{
        display:block;
    }

    .match-card{

        background:#fff;

        border-radius:12px;

        padding:15px;

        margin-bottom:15px;

        box-shadow:0 2px 8px rgba(0,0,0,.08);
    }

    .match-date{

        font-size:13px;

        color:#666;

        margin-bottom:8px;
    }

    .match-teams{

        font-size:20px;

        font-weight:700;

        margin-bottom:10px;

        line-height:1.4;
    }

    .match-round{

        color:#0d6efd;

        font-weight:600;

        margin-bottom:5px;
    }

    .match-stadium{

        color:#666;

        margin-bottom:12px;
    }

    .detail-btn{

        display:inline-block;

        background:#800!important;

        color:#800;

        padding:8px 15px;

        border-radius:8px;

        text-decoration:none;
    }
}

.prediction-btn:hover{

    background:#1d4ed8;
}
@media (max-width:768px){

    .match-teams{
    color:#800;
    font-size:18px;
    }

    .team-flag{

        width:30px;
        height:20px;
    }

    .score-input{

        width:60px;
        height:48px;

        font-size:20px;
    }

    .prediction-title{

        font-size:22px;
    }
}
/* ==================================
   RESPONSIVE
================================== */

@media(max-width:768px){

    .card h2{
        font-size:1.8rem;
    }

    .stat-number{
        font-size:2rem;
    }

    .card{
        padding:20px;
    }
}

/* =========================
   TEAM PAGE MOBILE
========================= */

@media (max-width:768px){

    .card{

        padding:15px;
    }

    .card h2{

        font-size:24px;

        text-align:center;

        margin-bottom:15px;
    }

    .card h3{

        font-size:20px;

        text-align:center;
    }

    .card h4{

        font-size:18px;

        margin-top:20px;
    }

    /* info tim */

    .card table{

        width:100%;
    }

    .card table td{

        padding:8px 5px;

        font-size:14px;
    }

    .card table td:first-child{

        font-weight:600;

        width:40%;
    }

    /* pemain */

    .player-grid{

        grid-template-columns:1fr;

        gap:10px;
    }

    .player-card{

        padding:12px;
    }

    .player-position{

        font-size:11px;

        padding:4px 8px;
    }

    .player-name{

        font-size:17px;

        line-height:1.3;
    }

    .player-club{

        font-size:13px;

        line-height:1.4;
    }

    .player-meta{

        font-size:12px;
    }

    /* jadwal */

    .match-row{

        padding:12px;

        margin-bottom:12px;

        border-radius:10px;

        background:rgba(255,255,255,.05);

        border:1px solid rgba(255,255,255,.08);

        line-height:1.6;
    }

    .match-row strong{

        display:block;

        font-size:17px;

        margin-bottom:6px;
    }

}

.fantasy-hub{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    padding:10px 15px;
}

.fantasy-hub a{
    text-decoration:none;
    font-weight:600;
}

.fantasy-hub span{
    opacity:.5;
}

.fantasy-hub-bar{
    background:#eef6ff;
    border-bottom:1px solid #d9e8ff;
}

.fantasy-hub-bar .container{
    max-width:1200px;
    margin:0 auto;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:12px;
    flex-wrap:wrap;

    padding:10px 25px;
}

.fantasy-hub-bar a{
    text-decoration:none;
    font-weight:600;
}

.fantasy-hub-bar span{
    opacity:.5;
}
.fantasy-mobile{
    display:none;
}

@media (max-width:768px){

    .fantasy-hub-bar .container{
        display:none;
    }

    .fantasy-mobile{
        display:block;
        width:100%;
        text-align:center;
    }

    .fantasy-mobile a{
        display:block;
        text-decoration:none;
        font-weight:600;
        padding:8px 0;
    }

}

.match-result-card{
    overflow:hidden;
}

.result-score{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:15px 0;
    text-align:center;
}

.result-team{
    flex:1;
    font-weight:600;
}

.result-final-score{
    font-size:32px;
    font-weight:700;
    padding:0 15px;
}

.news-cover{
    width:100%;
    border-radius:8px;
    margin:10px 0;
    display:block;
}

.latest-news-list{
display:flex;
flex-direction:column;
gap:12px;
}

.news-item{
display:block;
padding:12px;
border-radius:10px;

background:#151515;

text-decoration:none;

color:white;

transition:.2s;
}

.news-item:hover{
transform:translateY(-2px);
}

.news-title{
font-weight:700;
margin-bottom:6px;
}

.news-date{
font-size:12px;
opacity:.7;
}