/* ==========================================
   FootballScore v2.0
   Mobile First
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#0f172a;
    color:#ffffff;
    line-height:1.6;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

.container{
    width:95%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

.header{
    background:#111827;
    border-bottom:1px solid #1f2937;
    position:sticky;
    top:0;
    z-index:999;
}

.header .container{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:32px;
    font-weight:700;
}

.menu-btn{
    width:42px;
    height:42px;
    border-radius:8px;
    background:#1f2937;
    color:#fff;
    font-size:22px;
}

/* ==========================
   HERO
========================== */

.hero{
    padding:60px 0;
    text-align:center;
}

.hero-badge{
    display:inline-block;
    background:#1f2937;
    color:#22c55e;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    margin-bottom:20px;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    color:#94a3b8;
    max-width:650px;
    margin:auto;
}

.btn{
    display:inline-block;
    margin-top:30px;
    background:#2563eb;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
}

/* ==========================
   SECTION
========================== */

section{
    padding:30px 0;
}

section h2{
    font-size:30px;
    margin-bottom:20px;
}

/* ==========================
   MATCH CARD
========================== */

.match-card{
    background:#182235;
    border:1px solid #243247;
    border-radius:14px;
    padding:20px;
    transition:.3s;
}

.match-card:hover{
    border-color:#2563eb;
}

.league-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.status{
    background:#16a34a;
    color:#fff;
    padding:4px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.score-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.club{
    flex:1;
    font-size:18px;
    font-weight:600;
}

.club:first-child{
    text-align:left;
}

.club:last-child{
    text-align:right;
}

.score{
    min-width:90px;
    text-align:center;
    font-size:30px;
    font-weight:bold;
}

.time-row{
    text-align:center;
    margin-top:20px;
    color:#22c55e;
    font-weight:bold;
}

/* ==========================
   PLACEHOLDER
========================== */

#today-container,
#league-container,
#standings-container,
#news-container{
    background:#182235;
    border:1px solid #243247;
    border-radius:12px;
    padding:25px;
    color:#94a3b8;
}

/* ==========================
   FOOTER
========================== */

.footer{
    margin-top:60px;
    border-top:1px solid #243247;
    padding:30px 0;
    text-align:center;
    color:#94a3b8;
}

/* ==========================
   TABLET
========================== */

@media(min-width:768px){

.hero h1{
    font-size:52px;
}

.logo{
    font-size:36px;
}

}

/* ==========================
   DESKTOP
========================== */

@media(min-width:1024px){

.container{
    width:90%;
}

.hero{
    padding:90px 0;
}

.match-card{
    max-width:700px;
    margin:auto;
}

}
/* ======================================
   LIVE MATCH CARD
====================================== */

.match-card{

    background:#18233a;

    border:1px solid #24314d;

    border-radius:12px;

    padding:18px;

    margin-bottom:18px;

    transition:.3s;

}

.match-card:hover{

    border-color:#3d7dff;

}

.league-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

}

.status{

    background:#ff3d3d;

    color:#fff;

    padding:3px 10px;

    border-radius:30px;

    font-size:12px;

    font-weight:bold;

}

.score-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.club{

    width:35%;

    font-size:18px;

    font-weight:600;

}

.score{

    width:30%;

    text-align:center;

    font-size:28px;

    font-weight:bold;

    color:#ffcb3d;

}

.time-row{

    margin-top:15px;

    text-align:center;

    color:#9db5d8;

}
/*=========================
HEADER V2
=========================*/

.header{

position:sticky;

top:0;

z-index:999;

backdrop-filter:blur(12px);

background:rgba(15,23,42,.9);

border-bottom:1px solid #1d2b46;

}

.header-wrap{

display:flex;

align-items:center;

justify-content:space-between;

height:75px;

}

.logo{

font-size:38px;

font-weight:800;

color:#fff;

}

.desktop-menu{

display:flex;

gap:35px;

}

.desktop-menu a{

color:#9fb3d9;

font-size:15px;

transition:.25s;

}

.desktop-menu a:hover{

color:#fff;

}

.header-right{

display:flex;

gap:12px;

}

.search-btn,

.menu-btn{

width:44px;

height:44px;

border-radius:10px;

background:#1f2b45;

color:#fff;

font-size:18px;

}

@media(max-width:900px){

.desktop-menu{

display:none;

}

}
.today-card{

background:#1b2740;

padding:18px;

border-radius:12px;

margin-bottom:15px;

border:1px solid #2b3c5a;

transition:.3s;

}

.today-card:hover{

transform:translateY(-3px);

}

.today-league{

color:#6fa8ff;

font-size:13px;

margin-bottom:10px;

}

.today-row{

display:flex;

justify-content:space-between;

align-items:center;

font-size:18px;

font-weight:700;

}

.today-time{

margin-top:12px;

text-align:center;

color:#aaa;

font-size:14px;

}
.league-card{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 22px;

background:#1b2740;

border-radius:12px;

margin-bottom:14px;

border:1px solid #2d3d5d;

transition:.3s;

}

.league-card:hover{

transform:translateY(-3px);

background:#223250;

}

.league-name{

font-size:18px;

font-weight:700;

}

.league-country{

margin-top:4px;

font-size:13px;

color:#9aa8c7;

}

.league-teams{

font-weight:700;

color:#4aa3ff;

}
.league-right{

display:flex;

align-items:center;

gap:15px;

}

.league-arrow{

font-size:20px;

font-weight:700;

color:#4aa3ff;

transition:.3s;

}

.league-card:hover .league-arrow{

transform:translateX(6px);

}
