/* RESET */
body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f5f6fa;
}

/* HEADER */
.header{
    background:#111;
    color:#fff;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:22px;
    font-weight:bold;
}

.menu a{
    color:#fff;
    margin-left:15px;
    text-decoration:none;
    font-size:14px;
}

.menu a:hover{
    color:#ff4747;
}

/* CONTAINER */
.container{
    width:90%;
    margin:auto;
    margin-top:20px;
}

/* IPL SECTION */
.ipl-section{
    padding:20px;
}

.ipl-section h2{
    margin-bottom:10px;
}

/* MATCH SLIDER */
.match-slider{
    display:flex;
    gap:15px;
    overflow-x:auto;
    padding-bottom:10px;
}

/* MATCH CARD */
.match-card{
    background:#1a1a1a;
    color:#fff;
    padding:15px;
    min-width:230px;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,0.2);
}

.match-card h3{
    margin:5px 0;
}

.match-card p{
    margin:3px 0;
}

/* TIME */
.time{
    font-size:18px;
    font-weight:bold;
}

/* LIVE TAG */
.live{
    color:lime;
    font-size:12px;
    font-weight:bold;
}

/* GRID (NEWS / POSTS) */
.grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:15px;
}

/* CARD */
.card{
    background:#fff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.card a{
    text-decoration:none;
    color:#000;
}

.card h3{
    margin:0;
}

/* SECTION */
.section{
    margin-bottom:25px;
}

/* ARTICLE PAGE */
.article{
    background:#fff;
    padding:20px;
    border-radius:10px;
    max-width:800px;
    margin:auto;
}

/* FOOTER */
.footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:30px;
}

.footer a{
    color:#fff;
    text-decoration:none;
    margin:0 5px;
}

/* SCROLLBAR (OPTIONAL NICE UI) */
.match-slider::-webkit-scrollbar{
    height:6px;
}

.match-slider::-webkit-scrollbar-thumb{
    background:#555;
    border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .menu{
        display:none;
    }

    .container{
        width:95%;
    }

    .match-card{
        min-width:180px;
    }
}