
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f4f4f4;
  font-family: "Roboto", sans-serif;
}
.container{
     width: 70%;
     margin: 0px auto;
}

/* ===== HEADER ===== */
header{
  width: 100%;
  background: #000;
  padding: 5px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  width: 20%;
  float: left;
}
.logo img{
    max-width: 45%;
}

/* ===== NAVIGATION ===== */
nav{
    width: 80%;
    float: right;
}
nav ul{
  list-style:none;
  display:flex;
  justify-content: flex-end;
  gap:40px;
  padding-top: 40px;
}

nav ul li a{
  color:#fff;
  text-decoration:none;
  font-family: "Roboto", sans-serif;
  font-size:20px;
  font-weight: 700;
  text-transform: uppercase;
  transition:0.3s;
}

nav ul li a:hover{
  color:#ff3c3c;
}

/* ===== HAMBURGER ===== */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#fff;
  transition:0.3s ease;
}

.home-banner{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

/* Banner Image */
.home-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Overlay */
.home-banner::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

/* Banner Content */
.banner-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
  color:#fff;
  padding:20px;
  width:90%;
  max-width:800px;
  animation:fadeIn 1.2s ease;
}

.banner-content h1{
  font-size:50px;
  margin-bottom:20px;
  line-height:1.2;
}

/* .desktop{
  width:100%;
  display:block;
}
.mobile{
  width:100%;
  display:none;
} */

.banner-content p{
  font-size:20px;
  margin-bottom:30px;
}
.point-table{
    width: 100%;
    float: left;
    font-family: "Roboto", sans-serif;
    margin: 40px 0;
}

.section-title{
  text-align:center;
  font-size:28px;
  font-weight:700;
  margin-bottom:25px;
}

.tableContainer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-add-banner{
  width: auto;
  float: left;
  margin: 0 45px;
}
.home-add-banner img{
  max-width: 100%;
}

.table-wrapper{
  overflow-x:auto;
  background:#fff;
  border-radius:12px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

table{
  width:100%;
  min-width:1000px;
  border-collapse:collapse;
}

thead{
  background:#f8fafc;
}

th, td{
  padding:14px 12px;
  text-align:center;
  font-size:14px;
}

th{
  font-weight:600;
  color:#555;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

tbody tr{
  border-top:1px solid #eee;
  transition:0.2s ease;
}

tbody tr:hover{
  background:#f9fafb;
}

.position{
  font-weight:600;
}

.team-cell{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-start;
}

.team-cell img{
  width:32px;
  height:32px;
  border-radius:50%;
}

.team-name{
  font-weight:600;
  color:#111;
}

/* Points highlight */
.points{
  font-weight:700;
  color:#000;
}

/* Recent form circles */
.form{
  display:flex;
  gap:6px;
  justify-content:center;
}

.form span{
  width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:12px;
  font-weight:600;
  border:1px solid #ccc;
}

.win{
  color:green;
  border-color:green;
}

.loss{
  color:red;
  border-color:red;
}

.nr{
  color:gray;
  border-color:gray;
}

.youtube-section{
  width: 100%;
  float: left;
  padding:10px 20px;
  background:#f5f5f5;
  text-align:center;
}

.section-title h2{
  font-size:32px;
  margin-bottom:5px;
}

.section-title p{
  color:#777;
  margin-bottom:10px;
}

.youtube-video iframe{
  width:100%;
  height:450px;
  border-radius:12px;
}

.more-video-btn{
  margin-top:30px;
}

.more-video-btn a{
  display:inline-block;
  padding:12px 28px;
  background:#ff0000;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition:0.3s;
}

.more-video-btn a:hover{
  background:#cc0000;
}

.blog-section{
  width:100%;
  float: left;
  font-family: "Roboto", sans-serif;
  margin: 40px 0;
}

.section-header{
  text-align:center;
  margin-bottom:40px;
}

.section-header h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

.section-header p{
  color:#666;
  font-size:16px;
}

/* Blog Grid */

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

/* Blog Card */

.blog-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
  transition:0.3s ease;
  display:flex;
  flex-direction:column;
}

.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 25px rgba(0,0,0,0.1);
}

/* Blog Image */

.blog-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* Blog Content */

.blog-content{
  padding:20px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.blog-category{
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  color:#ff3c3c;
  margin-bottom:10px;
}

.blog-content h3{
  font-size:20px;
  margin-bottom:12px;
  line-height:1.3;
}

.blog-content p{
  font-size:14px;
  color:#555;
  margin-bottom:20px;
  flex:1;
}

.blog-btn{
  width: 40%;
  text-align: center;
  display:inline-block;
  padding:10px 18px;
  background:#111;
  color: #fff !important;
  text-decoration:none;
  border-radius:6px;
  font-size:14px;
  transition:0.3s ease;
}

.blog-btn:hover{
  background:#ff3c3c;
  color: #fff;
}
.blog-more{
  text-align:center;
  margin-top:40px;
}

.more-btn{
  display:inline-block;
  padding:14px 30px;
  background:#ff3c3c;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  border-radius:8px;
  transition:0.3s ease;
}

.more-btn:hover{
  background:#111;
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}


.teams-section{
  width:100%;
  margin: 40px 0;
  text-align:center;
}

.teams-section h2{
  font-size:30px;
  margin-bottom:40px;
  font-weight:700;
}

/* SLIDER */
.slider-container{
  position:relative;
  overflow:hidden;
}

.slider{
  display:flex;
  transition:0.5s ease;
}

.team-logo-card{
  min-width:20%;
  float: left;
  padding:20px;
}

.team-box{
  background:#fff;
  border-radius:12px;
  padding:25px 15px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.team-box:hover{
  transform:translateY(-8px);
}

.team-box img{
  width:80px;
  height:80px;
  object-fit:contain;
  margin-bottom:15px;
}

.team-box h4{
  font-size:16px;
  font-weight:600;
}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#111;
  color:#fff;
  border:none;
  width:40px;
  height:40px;
  border-radius:50%;
  cursor:pointer;
}

.arrow.left{
  left:10px;
  z-index: 9;
}

.arrow.right{
  right:10px;
}

.arrow:hover{
  background:#ff3c3c;
}

/* DOTS */
.dots{
  margin-top:20px;
}

.dots span{
  display:inline-block;
  width:10px;
  height:10px;
  margin:5px;
  background:#ccc;
  border-radius:50%;
  cursor:pointer;
}

.dots .active{
  background:#ff3c3c;
}

.faq-section{
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
.faq-section h2 {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}
/* .faq-title{
    text-align:center;
    font-size:32px;
    margin-bottom:30px;
} */

.faq{
    background:#fff;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.faq-question{
    padding:18px 20px;
    font-size:18px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question:hover{
    background:#fafafa;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
    padding:0 20px;
}

.faq-answer p{
    margin:15px 0;
    color:#555;
    line-height:1.6;
}

.faq.active .faq-answer{
    max-height:200px;
}

.icon{
    font-size:22px;
}

.bottom-image{
  display: none;
}

/* =====Blog HEADER ===== */
.page-header{
  background:linear-gradient(90deg,#0d1b4c,#1e3c72) !important;
  color:#fff !important;
  padding:40px 20px !important;
  text-align:center !important;
}

.page-header h1{
  font-size:32px;
  font-weight:700;
}

/* ===== LAYOUT ===== */
.blog-container{
  width:90%;
  max-width:1200px;
  margin:40px auto;
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:30px;
}

.page-point{
    width: 100%;
    float: left;
    padding: 40px 0;
    background: #fff;
}

.section-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    margin-bottom:60px;
    color:#111;
    position:relative;
}

.section-title::after{
    content:"";
    width:70px;
    height:4px;
    background:#ff6b00;
    display:block;
    margin:12px auto 0;
    border-radius:10px;
}

/* ===== Grid Layout ===== */

.main-wrapper{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:20px;
}

/* SIDE IMAGES */
.side-img{
    width:220px;
    position:sticky;
    top:100px;
}

.side-img img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:10px;
}

/* LEFT / RIGHT SPACING */
.side-img.left{
    margin: 0 20px;
}

.side-img.right{
    margin: 0 20px;
}

/* YOUR EXISTING CONTAINER */
.container{
    width:70%;
    margin:0 auto;
}

.teams-container{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:35px;
}

/* ===== Team Card ===== */

.team-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
    display:flex;
    flex-direction:column;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.team-image{
    text-align:center;
    margin-bottom:20px;
}

.team-image img{
    max-width: 100%;
    object-fit:contain;
}

.team-name{
    text-align:center;
    font-size:22px;
    font-weight:600;
    margin-bottom: 10px;
    color: #111;
    padding-top: 15px;
}

.team-card p{
    font-size:14px;
    color:#555;
    line-height:1.7;
    margin-bottom:12px;
    text-align:center;
}

.read-btn{
    margin-top:auto;
    align-self:center;
    padding:10px 22px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.read-btn:hover{
    background:#e55d00;
}

/* .team-card{
  background:#fff;
  border-radius:14px;
  padding:30px;
  margin-bottom:30px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  display:flex;
  gap:30px;
  align-items:flex-start;
  transition:0.3s ease;
}

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

.team-logo{
  flex:0 0 120px;
}

.team-logo img{
  width:100%;
  max-width:120px;
  height:auto;
}

.team-content h2{
  margin-bottom:15px;
  color:#0d1b4c;
}

.team-content p{
  margin-bottom:12px;
  font-size:15px;
  color:#444;
  line-height:1.7;
} */

.matches-wrapper{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:20px;
    position:relative;
}

/* SIDE IMAGES */
.side-image{
    width:180px;
    position:sticky;
    top:100px;
}

.side-image img{
    width:100%;
    height:auto;
    object-fit:contain;
}

/* OPTIONAL: adjust left/right spacing */
.left-img{
    margin-right:10px;
}

.right-img{
    margin-left:10px;
}

/* YOUR EXISTING CONTAINER (small tweak) */
.matches-container{
    max-width:1000px;
    width:100%;
    padding:40px 20px;
    border:1px solid #555;
    border-radius:10px;
}
.matches-section{
max-width:100%;
margin:auto;
padding:40px 20px;
position:relative;
}

.matches-section::before{
content:"";
position:absolute;
left:220px;
top:0;
width:2px;
height:100%;
background:#ddd;
}

.match-row{
display:grid;
grid-template-columns:200px 40px 1fr;
align-items:center;
padding:30px 0;
border-bottom:1px solid #eee;
}

.match-left h3{
font-size:20px;
margin:8px 0;
}

.match-left p{
font-size:14px;
color:#666;
}

.match-number{
border:1px solid #ff5a00;
padding:4px 10px;
font-size:12px;
font-weight:600;
color:#ff5a00;
}

.timeline-dot{
width:10px;
height:10px;
background:#ff5a00;
border-radius:50%;
margin:auto;
}

.stadium{
font-size:14px;
color:#555;
margin-bottom:12px;
}

.teams{
display:flex;
align-items:center;
justify-content:flex-start;
gap:40px;
}

.team{
display:flex;
align-items:center;
gap:10px;
}

.team img{
width:42px;
height:42px;
border-radius:50%;
border:2px solid #eee;
}

.vs{
font-weight:bold;
font-size:18px;
color:#999;
}

/* Countdown */

/* .countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.time-box{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:20px;
    border-radius:15px;
    width:120px;
}

.time-box h2{
    font-size:32px;
    margin-bottom:5px;
}

.time-box span{
    font-size:13px;
    opacity:0.8;
}

.section-head::after{
content: "";
width: 70px;
height: 4px;
background: #ff6b00;
display: block;
margin: 12px auto 0;
border-radius: 10px;
} */

/* Team-Detail */
.team-details-banner{
   width: 100%;
   float: left;
   margin-bottom: 20px;
}
.team-details-banner img{
  max-width: 100%;
}
.section-title{
    font-size:26px;
    margin-bottom:15px;
    padding-left:10px;
}

.team-info{
    background:#fff;
    padding:20px;
    border-radius:16px;
    box-shadow:0 0 10px rgba(0,0,0,0.08);
    line-height:1.6;
}

.team-info p{
   padding: 10px 0;
}

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

.player-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 0 10px rgba(0,0,0,0.08);
    transition:0.3s;
}

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

.player-card img{
    max-width: 100%;
    height:220px;
    object-fit:cover;
}

.player-card h3{
    margin:10px 0 5px;
}

.player-card p{
    color:#777;
    margin-bottom:15px;
}

.footer{
width: 100%;
float: left;
background:#0b0b0b;
color:#fff;
padding:50px 20px 20px;
font-family:Arial, sans-serif;
}

.footer-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:40px;
flex-wrap:wrap;
}

.footer-left{
max-width:500px;
}

.footer-logo{
width:120px;
margin-bottom:15px;
}

.footer-left p{
color:#ccc;
line-height:1.6;
}

.footer-right h3{
margin-bottom:15px;
font-size:20px;
}

.footer-right ul{
list-style:none;
padding:0;
margin:0;
}

.footer-right ul li{
margin-bottom:10px;
}

.footer-right ul li a{
color:#ddd;
text-decoration:none;
transition:0.3s;
}

.footer-right ul li a:hover{
color:#ffffff;
}

.footer-bottom{
border-top:1px solid #222;
margin-top:30px;
padding-top:15px;
text-align:center;
font-size:14px;
color:#aaa;
}


.video-page{
padding:30px 15px;
}

/* Layout */

.video-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:25px;
}

/* Videos */

.videos{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.video-card iframe{
width:100%;
height:600px;
border-radius:8px;
border:none;
}

.video-card h3{
font-size:16px;
margin:8px 0 0;
}

/* Shorts */

.shorts{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.short-card iframe{
width:100%;
height:648px;
border:none;
border-radius:8px;
}

/* Pagination */

.pagination{
text-align:center;
margin-top:40px;
}

.page{
display:inline-block;
padding:8px 14px;
margin:5px;
border:1px solid #ddd;
text-decoration:none;
color:#333;
border-radius:5px;
}

.page.active{
background:#ff0000;
color:#fff;
border-color:#ff0000;
}


.view-more-container{
  text-align:center;
  margin-top:30px;
}

#viewMoreBtn{
  padding:12px 25px;
  background:#ff0000;
  border:none;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}
#viewMoreBtn a{
  text-decoration: none;
  color: #fff;
}

#viewMoreBtn:hover{
  background:#cc0000;
}



/* Animation */
@keyframes fadeIn{
  from{
    opacity:0;
    transform:translate(-50%, -40%);
  }
  to{
    opacity:1;
    transform:translate(-50%, -50%);
  }
}





@media(max-width:992px){
  .blog-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .team-card{
    min-width:33.33%;
  }
  
  .blog-container{
    grid-template-columns:1fr;
  }
}

/* ===== BLOG CARDS ===== */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.blog-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

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

.blog-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.blog-content{
  padding:20px;
}

.blog-content h3{
  font-size:18px;
  margin-bottom:10px;
  color:#0d1b4c;
}

.blog-content p{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
  line-height: 1.4;
}

.blog-content a{
  text-decoration:none;
  color:#ff6b00;
  font-weight:600;
}

/* ===== PAGINATION ===== */
.pagination{
  margin-top:30px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
}

.pagination button{
  padding:8px 14px;
  border:none;
  background:#eee;
  cursor:pointer;
  border-radius:6px;
  font-weight:600;
}

.pagination button.active{
  background:#ff3c00;
  color:#fff;
}

/* ===== SIDEBAR ===== */
.sidebar{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  height:fit-content;
}
.sidebar img{
  max-width: 100%;
}

/* Latest Blog */
.latest-blog{
  margin-bottom:30px;
}

.latest-blog h3{
  margin-bottom:15px;
  color:#0d1b4c;
}

.latest-item{
  margin-bottom:15px;
  border-bottom:1px solid #eee;
  padding-bottom:10px;
}

.latest-item a{
  text-decoration:none;
  font-size:14px;
  color:#333;
  font-weight:500;
}

/* Categories */
.categories h3{
  margin-bottom:15px;
  color:#0d1b4c;
}

.categories ul{
  list-style:none;
}

.categories ul li{
  margin-bottom:10px;
}

.categories ul li a{
  text-decoration:none;
  color:#555;
  font-size:14px;
  transition:0.3s;
}

.categories ul li a:hover{
  color:#ff6b00;
}


.blog-content-wrapper{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.meta{
  font-size:14px;
  color:#777;
  margin-bottom:20px;
}

.blog-image{
  width:100%;
  border-radius:12px;
  margin-bottom:25px;
}

.blog-text h2{
  margin:20px 0 10px;
  color:#0d1b4c;
}

.blog-text p{
  margin-bottom:15px;
  color:#444;
  line-height: 1.4;
}

/* ===== SHARE ===== */
.share{
  margin:30px 0;
}

.share button{
  padding:8px 15px;
  margin-right:10px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  background:#0d1b4c;
  color:#fff;
  font-size:13px;
}

/* ===== PREV NEXT ===== */
.post-nav{
  display:flex;
  justify-content:space-between;
  margin-top:30px;
}

.post-nav a{
  text-decoration:none;
  color:#ff6b00;
  font-weight:600;
  font-size:14px;
}

/* ===== COMMENTS ===== */
.comment-section{
  margin-top:40px;
}

.comment-section h3{
  margin-bottom:20px;
  color:#0d1b4c;
}

.comment-form input,
.comment-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:6px;
}

.comment-form button{
  padding:10px 20px;
  background:#ff6b00;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

/* ===== SIDEBAR ===== */
.sidebar{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  height:fit-content;
}

.sidebar h3{
  margin-bottom:15px;
  color:#0d1b4c;
}

.sidebar ul{
  list-style:none;
}

.sidebar ul li{
  margin-bottom:10px;
}

.sidebar ul li a{
  text-decoration:none;
  color:#555;
  font-size:14px;
}

.sidebar ul li a:hover{
  color:#ff6b00;
}
/* .team-card{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .team-logo{
    margin-bottom:20px;
  } */

.teams-container{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:32px;
    }


@media(max-width:900px){

.video-layout{
grid-template-columns:1fr;
}

.shorts{
grid-template-columns:repeat(3,1fr);
}

.short-card iframe{
height:300px;
}

}




/* ===== MOBILE MENU ===== */
@media (max-width: 768px){

.container{
    width: 95%;
}

.logo{
    width: auto;
}
.logo img{
    max-width: 15%;
}

  nav{
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    transform: translateY(-300px);
  }

  nav ul{
    flex-direction:column;
    padding:20px 0;
    text-align:center;
  }

  nav ul li{
    padding:12px 0;
  }

  nav.active{
    max-height: 300px;
    z-index: 2;
    top: 70px;
    transition: max-height 0.4s ease;
    transform: translateY(0px);
  }

  .hamburger{
    display:flex;
    padding-top: 15px;
  }

  nav ul{
    gap:0;
  }

.banner-content h1{
    font-size:34px;
  }

  .banner-content p{
    font-size:16px;
  }

.section-title{
    font-size:22px;
  }
  th, td{
    padding:10px 8px;
    font-size:12px;
  }
  .team-cell img{
    width:26px;
    height:26px;
  }

  .blog-grid{
    grid-template-columns:1fr;
  }

  .section-header h2{
    font-size:24px;
  }
  .team-card{
    min-width:50%;
  }
  .team-logo-card{
        min-width: 100% !important;
        float: left;
    }

  .time-box{
        width:90px;
        padding:15px;
    }

    .time-box h2{
        font-size:24px;
    }

  .faq-question{
    font-size:16px;
}

.faq-title{
    font-size:26px;
}

.tableContainer{
  padding: 0 10px;
}
.home-add-banner{
  display: none;
}

.bottom-image {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 9999;
  display: block;
}

.bottom-image img {
  width: 100%;
}
.footer{
  margin-bottom: 50px;
}
 .footer-container{
flex-direction:column;
text-align:center;
align-items:center;
}

.footer-left{
max-width:100%;
}

.footer-right{
margin-top:20px;
}

.matches-wrapper{
        flex-direction:column;
        align-items:center;
    }

    .side-image{
        display:none; /* 🔥 hide on mobile */
    }

    .matches-container{
        max-width:100%;
    }

.matches-section::before{
left:20px;
}

.match-row{
grid-template-columns:1fr;
padding-left:40px;
}

.timeline-dot{
position:absolute;
left:15px;
}

.match-left{
margin-bottom:10px;
}

.main-wrapper{
        flex-direction:column;
        align-items:center;
    }

    .side-img{
        display:none; /* 🔥 hide side images on mobile */
    }

    .container{
        width:100%;
    }

    .teams-container{
        grid-template-columns:1fr; /* better mobile layout */
    }

.teams{
justify-content:space-between;
gap:10px;
}

.team span{
font-size:12px;
}

.team img{
width:35px;
height:35px;
}

/* .desktop{
  display: none;
}
.mobile{
  display: block;
} */

}

@media(max-width:600px){

.shorts{
grid-template-columns:1fr 1fr;
}

.video-card iframe{
height:220px;
}

.short-card iframe{
height:260px;
}

}




@media (max-width:480px){

  .home-banner{
    height:67vh;
  }

  .banner-content h1{
    font-size:26px;
  }

  .banner-content .btn{
    display:inline-block;
    width:100%;
  }
  .team-card{
    min-width:100%;
  }

  .footer-logo{
width:100px;
}

.footer-right h3{
font-size:18px;
}

}

/* ===== HAMBURGER ANIMATION ===== */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}