*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#07111d;
    color:#fff;
}

/* HEADER */

.header{
    padding:20px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#081521;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#00ff99;
}

.menu{
    display:flex;
    gap:25px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.menu a:hover{
    color:#00ff99;
}

.live-badge{
    display:inline-block;
    background:#ff3030;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:bold;
}

.hero h1{
    font-size:48px;
}

.hero p{
    margin-top:20px;
    color:#ddd;
    max-width:650px;
    line-height:1.6;
}

.watch-btn{
    margin-top:25px;
    background:#00ff99;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

/* SECTION */

.featured,
.upcoming,
.results{
    padding:30px;
}

.featured h2,
.upcoming h2,
.results h2{
    margin-bottom:20px;
}

/* CARD */

.card{
    background:#12253d;
    border-radius:20px;
    padding:30px;
}

.teams{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.team{
    text-align:center;
}

.flag{
    font-size:60px;
    margin-bottom:10px;
}

.vs{
    color:#00ff99;
    font-size:28px;
    font-weight:bold;
}

.time{
    text-align:center;
    margin:25px 0;
    color:#aaa;
}

/* MATCH LIST */

.match-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.match-item,
.result-item{
    background:#12253d;
    padding:20px;
    border-radius:15px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.match-item small{
    color:#888;
}

.result-item b{
    color:#00ff99;
}

/* STATS */

.stats{
    display:grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(180px,1fr)
        );

    gap:20px;
    padding:30px;
}

.stat{
    background:#12253d;
    border-radius:20px;
    padding:30px;
    text-align:center;
}

.stat h3{
    color:#00ff99;
    font-size:36px;
    margin-bottom:10px;
}

/* FOOTER */

footer{
    padding:40px;
    text-align:center;
    color:#777;
}

/* MOBILE */

@media(max-width:768px){

    .header{
        flex-direction:column;
        gap:20px;
    }

    .menu{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;
    }

    .hero{

        height:auto;

        min-height:420px;

        padding:30px;
    }

    .hero h1{

        font-size:36px;

        line-height:1.2;
    }

    .teams{
        flex-direction:column;
        gap:20px;
    }

    .match-item,
    .result-item{
        flex-direction:column;
        text-align:center;
    }
.watch-btn{

        width:100%;

        max-width:250px;
    }
.match-item{

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:20px;
    }


}
/* HERO MODERN */

.hero{

    margin:30px;

    height:550px;

    border-radius:25px;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.75)
        ),
        url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=1920&q=80");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    overflow:hidden;
}

.hero-overlay{
    padding:60px;
}

.live-tag{

    display:inline-block;

    background:#ff2b2b;

    padding:10px 20px;

    border-radius:30px;

    font-weight:bold;

    margin-bottom:25px;

    animation:blink 1s infinite;
}

@keyframes blink{

    50%{
        opacity:.5;
    }

}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#ddd;
    margin-bottom:30px;
}

.countdown{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:10px;
}

.count-box{

    background:
        rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:20px;

    border-radius:15px;

    min-width:90px;

    text-align:center;
}

.count-box span{

    display:block;

    font-size:30px;

    color:#00ff99;

    font-weight:bold;
}

.count-box small{

    color:#ccc;
}

/* FEATURED CARDS */

.cards{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(180px,1fr)
        );

    gap:20px;
}

.card{

    background:
        linear-gradient(
            145deg,
            #12253d,
            #0a1728
        );

    border-radius:20px;

    padding:30px;

    transition:.3s;
}

.card:hover{

    transform:
        translateY(-8px);
}
.live-now{

    background:
        #ff0000 !important;

    animation:
        blink .8s infinite;

}

@keyframes blink{

    50%{
        opacity:.5;
    }

}
.match-info{

    display:flex;

    flex-direction:column;

    gap:8px;
}

.match-title{

    font-size:18px;

    font-weight:bold;
}

.match-local{

    color:#9aa9bc;

    font-size:14px;
}

.match-countdown{

    color:#00ff99;

    font-weight:bold;

    font-size:16px;

    margin:15px 0;
}