/*==================================================
HEADER
==================================================*/

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#ffffff;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.header-container{
    max-width:1200px;
    margin:0 auto;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.site-logo img{
    max-height:60px;
    width:auto;
    display:block;
}

.logo-text{
    font-size:32px;
    font-weight:800;
    text-decoration:none;
    color:#111827;
}

.logo-text span{
    color:#ffb400;
}

.main-navigation{
    display:flex;
    align-items:center;
}

.main-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-menu li{
    margin:0;
}

.main-menu a{
    text-decoration:none;
    color:#111827;
    font-weight:600;
    transition:.3s;
}

.main-menu a:hover,
.main-menu .current-menu-item > a{
    color:#ffb400;
}

.mobile-toggle{
    display:none;
    background:none;
    border:0;
    cursor:pointer;
}

.mobile-toggle span{
    display:block;
    width:26px;
    height:3px;
    background:#111827;
    margin:5px 0;
    border-radius:5px;
}

@media(max-width:991px){

    .main-navigation{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

}
/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f7f8fc;
    color:#1d1d1d;
    font-size:16px;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
}

/*==================================================
CONTAINER
==================================================*/

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

/*==================================================
COLORS
==================================================*/

:root{

--primary:#d71920;
--secondary:#101010;
--white:#ffffff;
--light:#f7f8fc;
--text:#333333;
--border:#e8e8e8;
--success:#17b65d;
--danger:#d71920;

}

/*==================================================
BUTTONS
==================================================*/

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border-radius:8px;

font-size:16px;

font-weight:700;

transition:.3s;

cursor:pointer;

}

.btn-primary{

background:var(--primary);

color:#fff;

}

.btn-primary:hover{

background:#b30d15;

}

.btn-outline{

border:2px solid var(--primary);

color:var(--primary);

background:#fff;

}

.btn-outline:hover{

background:var(--primary);

color:#fff;

}
/*=====================================
PAGES
=====================================*/

.page-section{

padding:70px 0;

}

.page-title{

font-size:42px;

font-weight:800;

margin-bottom:30px;

text-align:center;

color:#111;

}

.page-content{

max-width:900px;

margin:auto;

background:#fff;

padding:40px;

border-radius:12px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

line-height:1.9;

font-size:17px;

}

.page-content h2{

margin:35px 0 15px;

}

.page-content p{

margin-bottom:20px;

}

.page-content ul{

padding-left:20px;

list-style:disc;

}

.page-content a{

color:#d71920;

font-weight:600;

}

@media(max-width:768px){

.page-title{

font-size:30px;

}

.page-content{

padding:25px;

}

}
/* HERO */

.hero{

padding:100px 0;

background:#fff;

}

.hero-wrapper{

max-width:700px;

}

.hero-badge{

display:inline-block;

padding:10px 18px;

background:#d71920;

color:#fff;

border-radius:30px;

font-size:13px;

font-weight:700;

margin-bottom:20px;

}

.hero h1{

font-size:64px;

font-weight:900;

line-height:1.1;

margin-bottom:25px;

color:#111;

}

.hero h1 span{

color:#d71920;

}

.hero p{

font-size:20px;

line-height:1.8;

margin-bottom:40px;

color:#555;

max-width:600px;

}

.hero-buttons{

display:flex;

gap:20px;

}

@media(max-width:768px){

.hero{

padding:70px 0;

}

.hero h1{

font-size:42px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

text-align:center;

}

}
/*====================================
FREE PREDICTIONS
====================================*/

.predictions{

padding:90px 0;

background:#f7f8fc;

}

.section-heading{

text-align:center;

margin-bottom:60px;

}

.section-heading span{

color:#d71920;

font-weight:700;

letter-spacing:2px;

font-size:13px;

}

.section-heading h2{

font-size:42px;

margin:15px 0;

font-weight:800;

}

.section-heading p{

color:#666;

font-size:18px;

}

.predictions-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.prediction-card{

background:#fff;

border-radius:16px;

padding:30px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

}

.prediction-card:hover{

transform:translateY(-8px);

}

.prediction-free{

background:#d71920;

color:#fff;

padding:7px 14px;

border-radius:30px;

font-size:12px;

font-weight:700;

}

.prediction-card h3{

margin:25px 0 15px;

font-size:24px;

}

.prediction-date{

color:#777;

margin-bottom:20px;

}

.prediction-content{

line-height:1.8;

}

@media(max-width:991px){

.predictions-grid{

grid-template-columns:1fr;

}

}
/*====================================
VIP MEMBERSHIP
====================================*/

.vip-membership{

padding:100px 0;

background:#ffffff;

}

.vip-wrapper{

display:grid;

grid-template-columns:2fr 1fr;

gap:60px;

align-items:center;

}

.vip-badge{

display:inline-block;

background:#d71920;

color:#fff;

padding:10px 20px;

border-radius:30px;

font-size:13px;

font-weight:700;

margin-bottom:20px;

}

.vip-left h2{

font-size:46px;

margin-bottom:20px;

font-weight:800;

}

.vip-left p{

font-size:18px;

color:#666;

line-height:1.8;

margin-bottom:30px;

}

.vip-list{

margin-bottom:35px;

}

.vip-list li{

margin-bottom:15px;

font-size:18px;

font-weight:600;

}

.vip-price-card{

background:#d71920;

color:#fff;

padding:50px 40px;

border-radius:20px;

text-align:center;

box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.price-title{

display:block;

font-size:13px;

letter-spacing:2px;

margin-bottom:20px;

}

.price{

font-size:70px;

font-weight:900;

line-height:1;

margin-bottom:15px;

}

.price-period{

font-size:15px;

letter-spacing:2px;

}

@media(max-width:991px){

.vip-wrapper{

grid-template-columns:1fr;

}

}
/*====================================
LATEST VIP RESULTS
====================================*/

.vip-results{

padding:100px 0;

background:#f7f8fc;

}

.vip-table-wrapper{

overflow-x:auto;

margin-top:40px;

border-radius:16px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.vip-table{

width:100%;

border-collapse:collapse;

background:#fff;

min-width:700px;

}

.vip-table th{

background:#d71920;

color:#fff;

padding:18px;

font-size:15px;

text-align:center;

}

.vip-table td{

padding:18px;

text-align:center;

border-bottom:1px solid #ececec;

font-size:15px;

}

.vip-table tr:hover{

background:#fafafa;

}

.won{

background:#19b85c;

color:#fff;

padding:6px 14px;

border-radius:30px;

font-size:13px;

font-weight:700;

}

.lost{

background:#d71920;

color:#fff;

padding:6px 14px;

border-radius:30px;

font-size:13px;

font-weight:700;

}

.vip-button{

text-align:center;

margin-top:40px;

}
/*====================================
STATISTICS
====================================*/

.stats-section{

padding:100px 0;

background:#ffffff;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.stat-card{

background:#fff;

padding:40px 30px;

text-align:center;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.3s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card h3{

font-size:54px;

font-weight:900;

color:#d71920;

margin-bottom:15px;

}

.stat-card p{

font-size:17px;

font-weight:600;

color:#555;

}

@media(max-width:991px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}
/*==================================================
FOOTER
==================================================*/

.site-footer{
    background:#0c1424;
    color:#fff;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
    padding:70px 0;
}

.footer-col h3{
    font-size:20px;
    margin-bottom:25px;
    color:#fff;
}

.footer-col p{
    color:#bfc7d5;
    line-height:1.8;
}

.footer-menu,
.footer-links{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-menu li,
.footer-links li{
    margin-bottom:12px;
}

.footer-menu a,
.footer-links a{
    color:#bfc7d5;
    text-decoration:none;
    transition:.3s;
}

.footer-menu a:hover,
.footer-links a:hover{
    color:#ffb400;
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-bottom:20px;
}

.footer-social a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#1d2940;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.footer-social a:hover{
    background:#ffb400;
    color:#000;
    transform:translateY(-4px);
}

.footer-email{
    margin-top:10px;
    font-size:15px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 0;
}

.footer-bottom p{
    margin:0;
    color:#a7afbc;
}

#backToTop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#ffb400;
    color:#000;
    cursor:pointer;
    display:none;
    font-size:22px;
    font-weight:bold;
    z-index:999;
    transition:.3s;
}

#backToTop:hover{
    transform:translateY(-5px);
}

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:640px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

}
/*==================================================
FOOTER LOGO
==================================================*/

.site-footer .custom-logo-link{
    display:block;
    margin-bottom:25px;
}

.site-footer .custom-logo{
    max-width:190px;
    height:auto;
    display:block;
}


.site-footer .footer-col:first-child p{
    max-width:320px;
}


/* Footer headings premium style */

.site-footer .footer-col h3{
    position:relative;
    padding-bottom:12px;
}

.site-footer .footer-col h3:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:45px;
    height:3px;
    background:#ffb400;
}


/* Mobile */

@media(max-width:640px){

    .site-footer .custom-logo{
        margin:0 auto;
    }

    .site-footer .footer-col h3:after{
        left:50%;
        transform:translateX(-50%);
    }

}
/*==================================================
ARCHIVE PAGE
==================================================*/


.archive-header{
    background:#0c1424;
    padding:80px 0;
    text-align:center;
    color:#fff;
}


.archive-header h1{
    font-size:42px;
    margin-bottom:15px;
}


.archive-header p{
    color:#c4ccda;
}


.posts-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding:70px 0;

}



.prediction-card{

    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;

}


.prediction-card:hover{

    transform:translateY(-8px);

}



.prediction-image img{

    width:100%;
    height:230px;
    object-fit:cover;

}



.prediction-card-body{

    padding:25px;

}



.prediction-meta{

    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#777;
    margin-bottom:15px;

}



.prediction-card h2{

    font-size:22px;
    line-height:1.3;

}


.prediction-card h2 a{

    color:#101827;
    text-decoration:none;

}


.prediction-card p{

    color:#667085;
    line-height:1.7;

}



.prediction-button{

    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#ffb400;
    color:#000;
    border-radius:30px;
    text-decoration:none;
    font-weight:700;

}



.pagination{

    text-align:center;
    padding-bottom:70px;

}


.pagination a,
.pagination span{

    display:inline-block;
    padding:10px 16px;
    margin:5px;
    border-radius:8px;
    background:#f1f3f6;
    color:#111;
    text-decoration:none;

}


.pagination .current{

    background:#ffb400;

}



@media(max-width:991px){

.posts-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:640px){

.posts-grid{

grid-template-columns:1fr;

}

.archive-header h1{

font-size:32px;

}

}
/*==================================================
SINGLE POST
==================================================*/


.single-header{

background:#0c1424;
padding:80px 0;
color:#fff;
text-align:center;

}


.single-header h1{

font-size:44px;
max-width:900px;
margin:20px auto 0;
line-height:1.2;

}



.single-meta{

display:flex;
justify-content:center;
gap:20px;
font-size:14px;
color:#c5ccda;

}



.single-content{

padding:70px 0;

}



.article-box{

max-width:900px;
margin:auto;

}



.single-image img{

width:100%;
border-radius:15px;
margin-bottom:40px;

}



.article-text{

font-size:18px;
line-height:1.9;
color:#333;

}



.article-text h2,
.article-text h3{

color:#111;
margin-top:35px;

}



.author-box{

max-width:900px;
margin:50px auto 0;
padding:30px;
background:#f5f7fa;
border-radius:15px;

}



.author-box h3{

margin-bottom:10px;

}



@media(max-width:640px){


.single-header h1{

font-size:32px;

}


.single-meta{

flex-direction:column;
gap:8px;

}


.article-text{

font-size:16px;

}

}
/*==================================================
PREDICTION CARD
==================================================*/


.prediction-box{

background:#ffffff;
border-radius:16px;
padding:25px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
border:1px solid #edf0f5;
transition:.3s;
}


.prediction-box:hover{

transform:translateY(-6px);

}



.prediction-league{

font-size:13px;
color:#777;
text-transform:uppercase;
margin-bottom:15px;
font-weight:600;

}



.prediction-title{

font-size:22px;
margin-bottom:25px;

}



.prediction-title a{

color:#101827;
text-decoration:none;

}



.prediction-details{

display:flex;
justify-content:space-between;
gap:20px;
background:#f7f8fa;
padding:15px;
border-radius:10px;

}



.prediction-details div{

display:flex;
flex-direction:column;

}


.prediction-details strong{

font-size:12px;
color:#777;

}


.prediction-details span{

font-size:17px;
font-weight:700;
margin-top:5px;

}



.prediction-result{

margin-top:20px;
text-align:center;
padding:10px;
border-radius:8px;
font-weight:700;
text-transform:uppercase;

}



.prediction-result.won{

background:#dff8e8;
color:#087f36;

}



.prediction-result.lost{

background:#ffe1e1;
color:#c40000;

}



.prediction-result.pending{

background:#fff2c7;
color:#946200;

}



@media(max-width:640px){

.prediction-details{

flex-direction:column;

}

}
/*==================================================
PREDICTIONS ARCHIVE
==================================================*/


.prediction-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
padding:70px 0;

}



.prediction-archive .archive-header{

background:#0c1424;
color:#fff;
text-align:center;
padding:80px 0;

}



.prediction-archive .archive-header h1{

font-size:42px;
margin-bottom:15px;

}



.prediction-archive .archive-header p{

color:#c5ccda;

}



@media(max-width:991px){

.prediction-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:640px){

.prediction-grid{

grid-template-columns:1fr;

}

}
/*==================================================
SINGLE PREDICTION
==================================================*/

.single-prediction{
    padding-bottom:80px;
}

.prediction-hero{
    background:#0c1424;
    color:#fff;
    padding:90px 0;
    text-align:center;
}

.prediction-hero h1{
    font-size:42px;
    margin-top:15px;
}

.prediction-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin:60px 0;
}

.info-item{
    background:#fff;
    border-radius:14px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.info-item span{
    display:block;
    color:#888;
    margin-bottom:10px;
}

.info-item strong{
    font-size:22px;
}

.prediction-analysis{
    background:#fff;
    border-radius:14px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    line-height:1.9;
}

.result.won{
    color:#16a34a;
}

.result.lost{
    color:#dc2626;
}

.result.pending{
    color:#d97706;
}

@media(max-width:768px){

    .prediction-info{
        grid-template-columns:1fr;
    }

    .prediction-hero h1{
        font-size:30px;
    }

}