
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f4f4f4;
  color:#111;
  line-height:1.6;
}

/* HEADER */
header{
  background:#111;
  color:white;
  padding:15px 5%;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:24px;
  font-weight:700;
  letter-spacing:1px;
}

nav ul{
  display:flex;
  list-style:none;
}

nav ul li{
  margin-left:25px;
}

nav ul li a{
  color:white;
  text-decoration:none;
  font-weight:500;
  position:relative;
}

nav ul li a::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  background:#ff3b3b;
  left:0;
  bottom:-5px;
  transition:0.3s;
}

nav ul li a:hover::after{
  width:100%;
}

/* HERO */
.hero{
  background:url('../images/head-banner-bg.jpg') center/cover no-repeat;
  height:auto;
  display:flex;
  align-items:center;
  color:white;
  padding:2% 5%;
  position:relative;
}

.hero::before{
  content:'';
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  background:linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.hero-content{
  position:relative;
  max-width:900px;
}

.hero h1{
  line-height: 1.3;
  font-size:45px;
  margin-bottom:20px;
}

.hero p{
  margin-bottom:20px;
}

.hero button{
  padding:12px 25px;
  border:none;
  background:#ff3b3b;
  color:white;
  font-weight:600;
  cursor:pointer;
  border-radius:4px;
}

.hero-bullets{
  margin:15px 0;
  list-style: disc;
  padding-left:20px;
  font-size:16px;
  line-height:1.6;
}
.hero-bullets li{
  margin-bottom:8px;
}


/* MAIN SECTION */
.main{
  display:flex;
  padding:50px 5%;
  gap:40px;
}

/* NEWS GRID */
.news-grid{
  flex:3;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.card{
  background:white;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.card-content{
  padding:15px;
}

.card h3{
  margin-bottom:10px;
}

.card p{
  font-size:14px;
  margin-bottom:10px;
}

.card a{
  color:#ff3b3b;
  text-decoration:none;
  font-weight:600;
}

/* SIDEBAR */
.sidebar{
  flex:1;
  background:white;
  padding:20px;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  height:fit-content;
}

.sidebar h3{
  margin-bottom:15px;
}

.sidebar ul{
  list-style:none;
}

.sidebar ul li{
  margin-bottom:15px;
  border-bottom:1px solid #ddd;
  padding-bottom:10px;
}

/* NEWSLETTER */
.newsletter{
  background:linear-gradient(45deg,#ff3b3b,#c40000);
  color:white;
  padding:50px 5%;
  text-align:center;
}

.newsletter input{
  padding:12px;
  width:250px;
  border:none;
  border-radius:4px;
  margin-right:10px;
}

.newsletter button{
  padding:12px 20px;
  border:none;
  background:#111;
  color:white;
  border-radius:4px;
  cursor:pointer;
}

/* FOOTER */
footer{
  background:#111;
  color:white;
  padding:30px 5%;
  text-align:center;
}

/* RESPONSIVE */
@media(max-width:992px){
  .main{
    flex-direction:column;
  }
}

@media(max-width:768px){
  nav ul{
    display:none;
  }
  .hero h1{
    font-size:32px;
  }
}


.container{
  width:90%;
  margin:auto;
  padding:60px 0;
}

.section-title{
  font-size:28px;
  margin-bottom:30px;
  font-weight:700;
}

/* FEATURED */
.featured-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:30px;
}

.featured-large img{
  width:100%;
  border-radius:8px;
}

.featured-content{
  padding-top:15px;
}
.featured-small a{
  text-decoration: none;
  color: inherit;
}
.small-item{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.small-item img{
  width:90px;
  height:70px;
  object-fit:cover;
  border-radius:6px;
}

/* VIDEO */
.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.video-card img{
  width:100%;
  height:200px;
  border-radius:8px;
}

/* OPINION */
.opinion-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.opinion-card{
  background:#fff;
  padding:25px;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.opinion-card span{
  display:block;
  margin-top:10px;
  font-size:14px;
  color:#666;
}

/* REGIONS */
.regions-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}
.regions-grid a{
  text-decoration: none;
}

.regions-grid div{
  background:#111;
  color:white;
  padding:20px;
  text-align:center;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.regions-grid div:hover{
  background:#ff3b3b;
}

/* INSIGHTS */
.insight-text{
  max-width:800px;
  font-size:17px;
  line-height:1.8;
}

/* RESPONSIVE */
@media(max-width:900px){
  .featured-grid{
    grid-template-columns:1fr;
  }
}


.links-footer{
  list-style:none;
  margin-top:20px;
}

.links-footer li{
  margin:8px 0;
}

.links-footer a{
  color:#fff;
  text-decoration:none;
}


/* ===== Main Section ===== */
.content{
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== Main Heading ===== */
.content h2{
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #0f172a;
  position: relative;
}

.content h2::after{
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg,#2563eb,#38bdf8);
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* ===== Intro Paragraph ===== */
.content > p{
  text-align: center;
  font-size: 17px;
  color: #475569;
  max-width: 950px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ===== Content Cards ===== */
.content-list{
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  border-left: 5px solid #2563eb;
}


.content-list:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ===== Sub Headings ===== */
.content-list h3{
  font-size: 22px;
  margin-bottom: 12px;
  color: #1e293b;
}

/* ===== Paragraph ===== */
.content-list p{
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
}

/* ===== Responsive Design ===== */
@media(max-width:768px){

  .content{
    margin: 60px auto;
  }

  .content h2{
    font-size: 28px;
  }

  .content > p{
    font-size: 15px;
  }

  .content-list{
    padding: 20px;
  }

  .content-list h3{
    font-size: 18px;
  }

  .content-list p{
    font-size: 14px;
  }

}

@media(max-width:480px){
  .content{
    padding: 0 15px;
  }
}


/* ===== NBA Section Wrapper ===== */
.content-nba{
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== Section Title ===== */
.content-nba h2{
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111827;
  position: relative;
}

/* Underline Accent */
.content-nba h2::after{
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg,#c8102e,#1d428a);
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* ===== Intro Paragraph ===== */
.content-nba > p{
  text-align: center;
  font-size: 17px;
  color: #4b5563;
  max-width: 950px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ===== NBA Content Cards ===== */
.content-list-nba{
  background: #ffffff;
  padding: 30px;
}

/* Hover Effect */
.content-list-nba:hover{
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}

/* Sub Headings */
.content-list-nba h3{
  font-size: 22px;
  margin-bottom: 15px;
  color: #1f2937;
}

/* Paragraph Styling */
.content-list-nba p{
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* List Styling */
.content-list-nba ul{
  padding-left: 18px;
  margin-bottom: 10px;
}

.content-list-nba ul li{
  font-size: 15px;
  color: #374151;
  margin-bottom: 8px;
  position: relative;
}

/* Custom Bullet */
.content-list-nba ul li::marker{
  color: #c8102e;
}

/* ===== Responsive Design ===== */
@media(max-width:768px){

  .content-nba{
    margin: 60px auto;
  }

  .content-nba h2{
    font-size: 28px;
  }

  .content-nba > p{
    font-size: 15px;
  }

  .content-list-nba{
    padding: 20px;
  }

  .content-list-nba h3{
    font-size: 18px;
  }

  .content-list-nba p,
  .content-list-nba ul li{
    font-size: 14px;
  }
}

@media(max-width:480px){
  .content-nba{
    padding: 0 15px;
  }
}


/* ===== IPL Section Background ===== */
.content-coverage{
  padding: 100px 20px;
  background: linear-gradient(135deg,#1e1b4b,#4c1d95);
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

/* Container Width Control */
.content-coverage{
  max-width: 1200px;
  margin: auto;
}

/* ===== Main Heading ===== */
.content-coverage h2{
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* Golden underline */
.content-coverage h2::after{
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg,#facc15,#f59e0b);
  display: block;
  margin: 14px auto 0;
  border-radius: 20px;
}

/* ===== Intro Paragraph ===== */
.content-coverage > p{
  text-align: center;
  max-width: 950px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.8;
  color: #e5e7eb;
}

/* ===== Glass Style Cards ===== */
.content-list-coverage{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 35px;
  margin-bottom: 30px;
  transition: 0.4s ease;
}

/* Hover Effect */
.content-list-coverage:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Sub Headings */
.content-list-coverage h3{
  font-size: 22px;
  margin-bottom: 15px;
  color: #facc15;
}

/* Paragraph */
.content-list-coverage p{
  font-size: 15.5px;
  line-height: 1.7;
  color: #f3f4f6;
}

/* List Styling */
.content-list-coverage ul{
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

/* Custom Styled List Items */
.content-list-coverage ul li{
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #f3f4f6;
}

/* Custom Cricket Ball Dot */
.content-list-coverage ul li::before{
  content: "●";
  position: absolute;
  left: 0;
  color: #facc15;
  font-size: 12px;
  top: 5px;
}

/* ===== Responsive ===== */
@media(max-width:768px){

  .content-coverage{
    padding: 70px 20px;
  }

  .content-coverage h2{
    font-size: 28px;
  }

  .content-coverage > p{
    font-size: 15px;
  }

  .content-list-coverage{
    padding: 25px;
  }

  .content-list-coverage h3{
    font-size: 18px;
  }

  .content-list-coverage p,
  .content-list-coverage ul li{
    font-size: 14px;
  }
}

@media(max-width:480px){
  .content-coverage{
    padding: 60px 15px;
  }
}

/* ===== Champions League Section ===== */
.content-updates{
  padding: 100px 20px;
  color: #e2e8f0;
}

/* Width Control */
.content-updates{
  max-width: 1200px;
  margin: auto;
}

/* ===== Main Title ===== */
.content-updates h2{
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(90deg,#010101,#000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

/* Intro Paragraph */
.content-updates > p{
  text-align: center;
  max-width: 950px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.8;
  color: #313131;
}

/* ===== Card Layout ===== */
.content-list-updates{
  background: #0b1220;
  padding: 35px;
  margin-bottom: 0px;
  border: 1px solid rgba(59,130,246,0.2);
  position: relative;
  overflow: hidden;
}

/* Glowing Top Border */
.content-list-updates::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

/* Hover Glow Effect */
.content-list-updates:hover{
  box-shadow: 0 15px 40px rgba(59,130,246,0.3);
}

/* Sub Headings */
.content-list-updates h3{
  font-size: 22px;
  margin-bottom: 15px;
  color: #38bdf8;
}

/* Paragraph */
.content-list-updates p{
  font-size: 15.5px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 10px;
}

/* List Styling */
.content-list-updates ul{
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

/* Custom Star Bullet */
.content-list-updates ul li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #e2e8f0;
}

.content-list-updates ul li::before{
  content: "★";
  position: absolute;
  left: 0;
  color: #22d3ee;
  font-size: 14px;
  top: 2px;
}

/* ===== Responsive ===== */
@media(max-width:768px){

  .content-updates{
    padding: 70px 20px;
  }

  .content-updates h2{
    font-size: 28px;
  }

  .content-updates > p{
    font-size: 15px;
  }

  .content-list-updates{
    padding: 25px;
  }

  .content-list-updates h3{
    font-size: 18px;
  }

  .content-list-updates p,
  .content-list-updates ul li{
    font-size: 14px;
  }
}

@media(max-width:480px){
  .content-updates{
    padding: 60px 15px;
  }
}



p, ul, h1, h2, h3{
  line-height: 1.3 !important;
}


