/* =========================================================
   WORLD CUP 2026 MAIN CSS
========================================================= */

/* BODY */
body{
    background:#020b1f url('assets/images/bg-main.jpg') center top no-repeat;
    background-size:cover;
    color:#d7e3ff;
    font-family:Tahoma,Arial,sans-serif;
    font-size:14px;
}

/* LINK */
a{
    color:#6db8ff;
    transition:0.3s;
}

a:hover{
    color:#ffffff;
    text-decoration:none;
}

/* WRAPPER */
#wrapper{
    width:1100px;
    max-width:96%;
    margin:auto;
}

/* BOX */
.boxed{
    background:rgba(5,12,30,0.95);
    border:1px solid #0d4f9c;
    border-radius:14px;
    box-shadow:
        0 0 12px rgba(0,153,255,0.35),
        inset 0 0 12px rgba(0,0,0,0.6);
}

/* TITLE */
.title-landing{
    text-align:center;
    color:#ffffff;
    font-size:2rem;
    font-weight:bold;
    text-transform:uppercase;
    text-shadow:
        0 0 10px rgba(0,140,255,0.7);
    margin-bottom:15px;
}

/* =========================================================
   SEARCH AREA
========================================================= */

.wc-search-area{
    width:100%;
    text-align:center;
    margin-top:30px;
    margin-bottom:35px;
}

.wc-search-title{
    font-size:26px;
    font-weight:bold;
    color:#ffffff;
    margin-bottom:18px;
    letter-spacing:2px;
    text-transform:uppercase;
    text-shadow:0 0 10px rgba(0,140,255,0.6);
}

.search-logo{
    width:38px;
    margin-right:8px;
    vertical-align:middle;
    filter:drop-shadow(0 0 10px rgba(0,153,255,0.8));
}

.wc-search-box{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.wc-search-box input{
    width:100%;
    height:68px;
    background:linear-gradient(180deg,#08172d,#06101f);
    border:2px solid #0b5ed7;
    border-radius:20px;
    padding-left:65px;
    padding-right:20px;
    color:#ffffff;
    font-size:19px;
    outline:none;
    transition:0.3s;
    box-shadow:
        0 0 15px rgba(11,94,215,0.4),
        inset 0 0 10px rgba(255,255,255,0.03);
}

.wc-search-box input:focus{
    border-color:#58a6ff;
    box-shadow:
        0 0 25px rgba(88,166,255,0.8),
        inset 0 0 15px rgba(255,255,255,0.05);
}

.wc-search-box input::placeholder{
    color:#8fbfff;
    font-size:17px;
}

.search-svg{
    position:absolute;
    top:50%;
    left:22px;
    transform:translateY(-50%);
}

/* =========================================================
   BUTTON
========================================================= */

#matchBtn,
#predictBtn{
    border:none;
    color:#ffffff;
    font-weight:bold;
    padding:14px;
    border-radius:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:0.3s;
}

#matchBtn{
    background:linear-gradient(
        180deg,
        #1d8fff 0%,
        #0057c2 100%
    );
    box-shadow:
        0 0 10px rgba(0,153,255,0.5);
}

#predictBtn{
    background:linear-gradient(
        180deg,
        #00d084 0%,
        #008f5a 100%
    );
    box-shadow:
        0 0 10px rgba(0,255,128,0.35);
}

#matchBtn:hover,
#predictBtn:hover{
    transform:translateY(-2px);
    filter:brightness(1.1);
}

/* =========================================================
   GROUP TITLE
========================================================= */

.group-title{
    background:#0b5ed7;
    color:#fff;
    padding:12px;
    text-align:center;
    border-radius:12px;
    font-size:24px;
    font-weight:bold;
    margin-top:40px;
    margin-bottom:20px;
}

/* =========================================================
   MATCH BOX
========================================================= */

.match-box{
    background:
        linear-gradient(
            180deg,
            rgba(8,18,40,0.98) 0%,
            rgba(3,10,25,0.98) 100%
        );
    border:1px solid #0b5ed7;
    border-radius:18px;
    padding:25px;
    margin-bottom:25px;
    transition:all .3s ease;
    box-shadow:
        0 0 15px rgba(0,140,255,0.2);
}

.match-box:hover{
    transform:translateY(-4px);
    border-color:#4da3ff;
}

/* =========================================================
   TEAM
========================================================= */

.team-logo{
    width:90px;
    height:auto;
    margin-bottom:10px;
    filter:drop-shadow(0 0 6px rgba(255,255,255,0.25));
}

.team-name{
    font-size:22px;
    font-weight:bold;
    color:#ffffff;
    margin-top:10px;
    text-shadow:
        0 0 8px rgba(0,174,255,0.5);
}

/* =========================================================
   VS
========================================================= */

.vs{
    font-size:28px;
    font-weight:bold;
    color:#66b3ff;
}

/* =========================================================
   MATCH INFO
========================================================= */

.match-info{
    text-align:center;
    margin-top:15px;
    color:#ddd;
    line-height:1.8;
}

.stadium-name{
    color:#ffd700;
    font-weight:bold;
    text-shadow:
        0 0 8px rgba(255,215,0,0.5);
}

/* =========================================================
   SCORE
========================================================= */

.score-prediction{
    text-align:center;
    font-size:36px;
    color:#ffffff;
    font-weight:bold;
    margin-top:20px;
    text-shadow:
        0 0 12px rgba(0,140,255,0.8);
}

/* =========================================================
   ANALYSIS
========================================================= */

.analysis{
    margin-top:20px;
    color:#d6d6d6;
    line-height:1.8;
    text-align:center;
    font-size:15px;
}

/* =========================================================
   CONTENT
========================================================= */

#contentBox h2,
#contentBox h3{
    color:#8fc8ff;
    margin-top:30px;
    margin-bottom:15px;
    text-shadow:
        0 0 8px rgba(0,140,255,0.4);
}

#contentBox p{
    line-height:1.9;
    color:#dddddd;
}

/* =========================================================
   TABLE
========================================================= */

.detail{
    width:100%;
    background:rgba(0,0,0,0.2);
    border-radius:10px;
    overflow:hidden;
}

.detail th{
    background:#003b7a;
    color:#ffffff;
    font-weight:bold;
}

.detail th,
.detail td{
    padding:12px;
    border-bottom:1px solid #0d4f9c;
}

.detail tr:hover{
    background:rgba(255,255,255,0.03);
}

.value{
    color:#6db8ff;
    font-weight:bold;
}

/* =========================================================
   FOOTER
========================================================= */

.footer-links{
    text-align:center;
    margin-top:20px;
    color:#777;
}

.footer-links a{
    margin:0 8px;
    color:#6db8ff;
    font-weight:bold;
}

.footer-links a:hover{
    color:#ffffff;
}

/* =========================================================
   BANNER
========================================================= */

.banner-box{
    width:100%;
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    border-radius:0;
    background:#00118a;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

.banner-box img{
    width:100%;
    height:auto;
    display:block;
}

/* =========================================================
   MARQUEE
========================================================= */

.marquee-wrapper{
    width:100%;
    background:#000;
    border-top:2px groove #0040ff;
    border-bottom:2px groove #0040ff;
    overflow:hidden;
    padding:8px 0;
}

.marquee-text{
    display:inline-block;
    white-space:nowrap;
    color:#fbfbfc;
    font-size:15px;
    font-weight:bold;
    padding-left:100%;
    animation:marquee 45s linear infinite;
}

@keyframes marquee{
    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-100%);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .wc-search-title{
        font-size:20px;
    }

    .wc-search-box input{
        height:58px;
        font-size:16px;
    }

    .title-landing{
        font-size:1.4rem;
    }

    .team-logo{
        width:65px;
    }

    .team-name{
        font-size:16px;
    }

    .score-prediction{
        font-size:24px;
    }

    .vs{
        font-size:18px;
    }

    .match-box{
        padding:18px;
    }

}
/* ================= POSTINGAN ================= */

.latest-post-wrapper{
    width:100%;
}

.latest-post-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
    border-bottom:2px solid #2b7cff;
    padding-bottom:8px;
}

.latest-post-header h2{
    margin:0;
    font-size:28px;
    font-weight:bold;
    color:#ffffff;
}

.latest-post-box{
    width:100%;
    background:#050c1e;
    border-radius:10px;
    padding:15px;
    display:flex;
    gap:20px;
    align-items:center;
    border:1px solid #0b5ed7;
}

.latest-post-image{
    width:40%;
}

.latest-post-image img{
    width:100%;
    border-radius:8px;
    display:block;
}

.latest-post-content{
    width:60%;
}

.latest-post-content h3{
    font-size:34px;
    font-weight:bold;
    color:#faf6f6;
    margin-bottom:15px;
}

.latest-post-content p{
    font-size:23px;
    line-height:1.7;
    color:#c9c7c7;
    margin-bottom:18px;
}

.baca-btn{
    display:inline-block;
    background:#1877ff;
    color:#fff;
    padding:12px 20px;
    border-radius:5px;
    font-weight:bold;
    text-decoration:none;
}

.baca-btn:hover{
    color:#fff;
    text-decoration:none;
    opacity:.9;
}

/* ================= RESPONSIVE MOBILE ================= */

@media(max-width:768px){

    .latest-post-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .latest-post-image{
        width:100%;
    }

    .latest-post-content{
        width:100%;
    }

    .latest-post-content h3{
        font-size:20px;
    }

    .latest-post-content p{
        font-size:16px;
        line-height:1.6;
    }

    .latest-post-header h2{
        font-size:22px;
    }


.baca-btn{
    font-size:14px;
    padding:10px 16px;
    display:block;
    margin:0 auto;
    text-align:center;
}

}

.article-box{
    background:#111827;
    border-radius:12px;
    color:#f1f5f9;
    line-height:1.8;
}

.article-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.article-meta{
    color:#94a3b8;
    font-size:14px;
}

.article-box h2{
    font-size:24px;
    margin-top:35px;
    margin-bottom:15px;
    color:#facc15;
    font-weight:700;
}

.article-box p{
    font-size:16px;
    margin-bottom:20px;
}

.article-image{
    width:100%;
    border-radius:10px;
}

.article-quote{
    background:#1e293b;
    border-left:4px solid #facc15;
    padding:15px 20px;
    font-style:italic;
    margin:25px 0;
    border-radius:8px;
}

.article-list{
    padding-left:20px;
}

.article-list li{
    margin-bottom:10px;
}

.table{
    margin-bottom:0;
}

/* MOBILE */
@media(max-width:768px){

    .article-box{
        padding:20px !important;
    }

    .article-title{
        font-size:24px;
        line-height:1.4;
    }

    .article-box h2{
        font-size:20px;
    }

    .article-box p{
        font-size:15px;
    }

    .table th,
    .table td{
        font-size:13px;
        padding:10px;
    }

}