
body{
margin:0;
font-family:Arial;
background:#f4f6fb;
}

header{
background:#111;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 20px;
}

.logo{
font-size:20px;
font-weight:bold;
}

nav button{
padding:10px 14px;
margin-left:8px;
border:none;
border-radius:6px;
cursor:pointer;
}

.tab.active{
background:#28a745;
color:white;
}

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.card{
background:white;
padding:16px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
transition:0.2s;
}

.card:hover{
transform:translateY(-5px);
}

.title{
font-weight:bold;
font-size:16px;
}

.venue{
margin-top:5px;
color:#555;
}

.score{
font-size:22px;
font-weight:bold;
margin-top:10px;
}

.status{
margin-top:8px;
color:#777;
}

.live{
border-left:5px solid #28a745;
}

.upcoming{
border-left:5px solid #007bff;
}

.finished{
border-left:5px solid #dc3545;
}

.loader{
display:none;
margin:40px auto;
border:4px solid #eee;
border-top:4px solid #333;
border-radius:50%;
width:30px;
height:30px;
animation:spin 1s linear infinite;
}

@keyframes spin{
100%{transform:rotate(360deg)}
}

.ad{
background:#eee;
padding:30px;
text-align:center;
margin-bottom:20px;
}
