@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --primary-color: #1B2028;
    --secondary-color: #FFAE2B;
    --tertiary-color: #fff;
    --quaternary-color: #e6e600;
    --quinary-color: #282828;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background-color: var(--tertiary-color);
    width: 100%;
    height: 100%;
    font-family: 'Ubuntu', sans-serif;
    overflow-y: scroll;
}

.navbar-custom {
    background-color: var(--primary-color);
    padding: 10px 0;
  }
  .navbar-brand span.score {
    color: #e6e600;
    font-weight: bold;
  }
  .navbar-brand span.top {
    color: #fff;
    font-weight: bold;
  }
  .navbar-nav .nav-link {
    color: #fff;
    margin-right: 1rem;
    font-size: 1.25rem;
  }

  .navbar-nav .active,
  .navbar-nav a:hover {
    color: var(--secondary-color) !important;
  }
  .navbar-nav .nav-link:last-child {
    margin-right: 0;
  }
  .navbar-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .navbar-icons svg {
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
  }
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }

  @media (max-width: 992px) {
    .navbar-nav .nav-link {
      margin-left: 1rem;
    }

    .navbar-icons {
      margin-left: 1rem !important;
    }
  }

  @media (max-width: 768px) {
    .navbar-nav .nav-link {
      font-size: 1rem;
      margin-left: 0.8rem;
    }

    .navbar-icons {
      margin-left: 0.8rem !important;
    }
  }

  @media (max-width: 576px) {
    .navbar-nav .nav-link {
      font-size: 0.875rem;
    }

    .navbar-icons {
      margin-left: 0.8rem !important;
    }
  }

  @media (max-width: 480px) {
    .navbar-nav .nav-link {
      font-size: 0.75rem;
    }

    .navbar-icons {
      margin-left: 0.8rem !important;
    }
  }

  @media (max-width: 320px) {
    .navbar-nav .nav-link {
      font-size: 0.625rem;
    }
    .navbar-icons {
      margin-left: 0.8rem !important;
    }
  }

  .content{
    margin-top: 10px;
  }

  .topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    padding: 2px 0;
    
}

.topbar-custom {
  width: 100%;
  padding: 0;
}

.topbar-icons-row a {
  background: #181c22;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.topbar-icons-row a:focus, .topbar-icons-row a:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.topbar-icons-row img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.mobile-app-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-app-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.topbar-links {
  margin-left: 2px;
}
.topbar-links a {
  color: #181c26;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
}
.topbar-links a.active,
.topbar-links a:hover {
  color: var(--secondary-color);
  transition: color 0.2s;
}

@media (max-width: 768px) {
  .topbar-links a {
    font-size: 15px;
  }
  .topbar-icons-row a,
  .mobile-app-btn {
    width: 36px;
    height: 36px;
  }
  .topbar-icons-row img,
  .mobile-app-btn img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 576px) {
  .topbar-custom .container-fluid {
    padding-left: 8px;
    padding-right: 8px;
  }
  .topbar-links {
    gap: 0.7rem !important;
    margin-top: 4px;
  }
}


.banner-card{
  cursor: pointer !important;
}


.banner-card-title{
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;

}


/* Banner Card Animation Styles */
.banner-card {
  overflow: hidden;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banner-card .position-relative {
  overflow: hidden;
}

.banner-card img {
  transition: transform 0.5s ease;
}

.banner-card:hover img {
  transform: scale(1.05);
}

.card-body-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.banner-card:hover .card-body-overlay {
  height: 100%;
  justify-content: center;
  background: rgba(0,0,0,0.85);
}

.banner-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--secondary-color);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.banner-card-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  height: 0;
  overflow: hidden;
}

.banner-card:hover .banner-card-content {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  margin-top: 10px;
}

.banner-card:hover .banner-card-title {
  margin-bottom: 15px;
}

.banner-card-main h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}

.banner-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.banner-card-list li {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;

}

.banner-card-list li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}


/* Scores Section */

.scores-header{
  background: #181c22;
  border-radius: 6px;
  padding: 1px;
  height: 30px;
}

.text-section{
  width: 100%;
  background: var(--secondary-color);
  border-radius: 6px 0px 0px 6px;
}

.text-section h2{
  font-size: 18px;
  color: #000;
  font-weight: 500;

}



.scores-header {
  background: #181d23;
  border-radius: 8px;
  padding: 0;
  height: 36px;
  overflow: hidden;
}

.live-label {
  background: #ffae2b;
  border-radius: 8px 0 0 8px;
  padding: 0 16px 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  font-style: italic;
  font-weight: bold;
  font-size: 1.1rem;
}

.see-all-link{
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 10px;
}

.live-count{
  width: 30px;
  height: 30px;
  line-height: 20px;
  background: #181d23;
  border-radius: 70px;
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  color:  #fff;
}

.footer{
  background-color: var(--primary-color);
  position: relative;
  bottom: 0;
  width: 100% ;
}

.footer-title{
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  text-decoration: none;
}

.footer-desc{
  color: #fff;
  font-size: 18px;
  width: 70%;
  margin: 0 auto;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.footer-links{
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;

}

.footer-links a{
  
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.footer-about-title h3{
  margin-top: 60px;
  opacity: 0.8;
  color: #fff;
  font-size: 20px !important;
  font-weight: 500;
  text-decoration: none;
}

.footer-about p{
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
  font-weight: 400;
  text-decoration: none;
  margin-top: 20px;
}


.footer-bottom-links{
  color: #fff;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.footer-logos img{
 margin-top: 30px;
 width: 100%;
}

.footer-bottom-links a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 20px;
}


.team-fixture-section {
  background: #f7f6f3;
  border-radius: 8px;
  padding: 20px 0 10px 0;
  margin-bottom: 30px;
}

.team-fixtures-swiper {
  width: 100%;
  padding-left: 20px;
}
.team-fixture-card {
  background: #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px 0 10px;
  min-width: 120px;
  min-height: 120px;
  max-width: 140px;
  margin-bottom: 10px;
}
.fixture-flag {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.fixture-label {
  font-size: 1rem;
  font-weight: 500;
  color: #23262a;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.live-score-section {
  border-radius: 8px;
  padding: 20px 0 10px 0;
  margin-bottom: 30px;
}
.live-score-swiper {
  width: 100%;
  padding-left: 20px;
}
.live-score-card {
  background: #181c22;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 18px 18px 18px;
  min-width: 260px;
  max-width: 300px;
  margin-bottom: 10px;
}
.league-badge {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 4px 18px;
  margin-bottom: 8px;
  display: inline-block;
}
.league-blue { background: #2c4e68; }
.league-teal { background: #24706b; }
.league-brown { background: #7a5a3a; }
.league-green { background: #2d6b3b; }
.live-team-logo {
  width: 48px;
  height: 48px;
  padding: 4px;
}
.live-score-date {
  text-align: center;
}
.live-score-odds {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}
.odds-btn {
  background: #23262a;
  color: #ccc;
  border-radius: 6px;
  padding: 2px 12px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 2px;
  display: inline-block;
}
.put-now-btn {
  background: #181c22;
  color: #FFAE2B;
  border: 2px solid #FFAE2B;
  border-radius: 6px;
  padding: 6px 24px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.put-now-btn:hover {
  background: #FFAE2B;
  color: #181c22;
}

.scores-body {
  background: #23262a;
  border-radius: 10px;
  padding: 12px 0 12px 0;
  margin-top: 10px;
}

.scores-swiper {
  width: 100%;
  padding-bottom: 8px;
}

.score-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 4px #23262a;
  padding: 12px 14px 10px 14px;
  min-width: 270px;
  max-width: 320px;
  margin: 0 6px;
  font-size: 15px;
}

.score-card-header {
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-status {
  color: #e53935;
  font-weight: bold;
  font-size: 13px;
  margin-right: 4px;
}

.match-title {
  color: #444;
  font-size: 13px;
}

.score-card-teams {
  margin-bottom: 4px;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.team-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.team-name {
  font-weight: 600;
  color: #222;
  font-size: 15px;
}

.team-score {
  margin-left: auto;
  font-weight: bold;
  color: #222;
  font-size: 15px;
}

.over {
  color: #888;
  font-weight: normal;
  font-size: 12px;
  margin-right: 2px;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #e53935;
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
}

.score-card-status {
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
}

.score-card-links {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.score-card-links a {
  color: #23262a;
  text-decoration: none;
  font-weight: 500;
}

.swiper-button-next.score-swiper-next {
  background: #ffae2b;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #23262a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.swiper-button-next.score-swiper-next:after {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .score-card {
    min-width: 90vw;
    max-width: 95vw;
    font-size: 14px;
    padding: 10px 6px 8px 10px;
  }
  .scores-body {
    padding: 6px 0;
  }
}

/* Responsive Container */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Desktop Container Styles */
@media (min-width: 992px) {
    .container-fluid {
        max-width: 100%;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
    
    .px-5 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }
}

/* Tablet Container Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .container-fluid {
        max-width: 100%;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .px-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
}

/* Mobile Container Styles */
@media (max-width: 767px) {
    .container-fluid {
        max-width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    
    .px-5 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
}

/* High Resolution Display Support */
@media (min-width: 1920px) {
    .container-fluid {
        max-width: 100%;
        padding-right: 3rem;
        padding-left: 3rem;
    }
    
    .px-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
}

/* Responsive Typography */
html {
    font-size: 16px;
}

@media (min-width: 1200px) {
    html {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
}

/* Responsive Banner Section */
.banner-section {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .banner-section {
        margin-top: 1.5rem;
    }
    
    .banner-card-title {
        font-size: 1rem;
    }
    
    .banner-card-main h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .banner-section {
        margin-top: 1rem;
    }
    
    .banner-card {
        margin-bottom: 1rem;
    }
}

/* Responsive Scores Section */
.scores-section {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .scores-section {
        margin-top: 1.5rem;
    }
    
    .score-card {
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .scores-section {
        margin-top: 1rem;
    }
    
    .score-card {
        min-width: 200px;
    }
    
    .team-row {
        flex-wrap: wrap;
    }
}

/* Responsive Live Score Section */
.live-score-section {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .live-score-section {
        margin-top: 1.5rem;
    }
    
    .live-score-card {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .live-score-section {
        margin-top: 1rem;
    }
    
    .live-score-card {
        min-width: 180px;
        padding: 12px;
    }
    
    .live-team-logo {
        width: 36px;
        height: 36px;
    }
}

/* Responsive Team Fixtures Section */
.team-fixer-section {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .team-fixer-section {
        margin-top: 1.5rem;
    }
    
    .team-fixture-card {
        min-width: 100px;
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .team-fixer-section {
        margin-top: 1rem;
    }
    
    .team-fixture-card {
        min-width: 80px;
        min-height: 80px;
    }
    
    .fixture-flag {
        width: 50px;
        height: 35px;
    }
}

/* Responsive Footer */
.footer {
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .footer {
        margin-top: 3rem;
    }
    
    .footer-desc {
        width: 90%;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 2rem;
    }
    
    .footer-desc {
        width: 100%;
        font-size: 14px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}


@media (max-width: 920px ) and (min-width: 576px) {
  .card-body-overlay {
    height: 40%;
  }
}


@media (max-width: 376px) {
  .card-body-overlay {
    height: 45%;
  }
}


/* Touch Device Optimizations */
@media (hover: none) {
    .banner-card:hover img {
        transform: none;
    }
    
    .banner-card:hover .card-body-overlay {
        height: 30%;
    }
    
    .banner-card:hover .banner-card-content {
        opacity: 0;
        height: 0;
    }
    
    .put-now-btn:hover {
        background: #181c22;
        color: #FFAE2B;
    }
}

/* Print Styles */
@media print {
    .navbar-custom,
    .topbar-custom,
    .footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .container-fluid {
        width: 100%;
        max-width: none;
    }
}

.feature-banner-section {
  margin-bottom: 2rem;
  overflow: hidden;
}

.feature-banner-bg {
  width: 100%;
  background: linear-gradient(to bottom, #181c22 0%, #181c22 50%, #e5e4e2 50%, #e5e4e2 100%);
  border-radius: 12px;
  overflow: hidden;
  min-height: 440px;
}

.feature-banner-card {
  background: transparent !important;
  box-shadow: none !important;
  height: 100%;
}

.feature-banner-left {
  background: transparent !important;
  height: 100%;
}

.feature-banner-images {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 300px;
}

.feature-banner-img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.feature-banner-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-banner-top {
  background: #181c22;
  width: 100%;
  z-index: 2;
  padding: 1.25rem 1rem 1rem 1rem;
  box-sizing: border-box;
  position: static;
}

.feature-banner-bottom {
  background: transparent;
  padding: 0 20px 20px;
  color: #23262a;
}

.feature-banner-list {
  color: #23262a;
  font-size: 1.15rem;
  margin: 0;
  padding-left: 1.2em;
}

.feature-banner-list li {
  margin-bottom: 0.8em;
  line-height: 1.4;
}

.feature-banner-label{
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.feature-banner-img:nth-child(1) { left: 20px; z-index: 3; }
.feature-banner-img:nth-child(2) { left: 120px; z-index: 2; }
.feature-banner-img:nth-child(3) { left: 220px; z-index: 1; }
.feature-banner-meta,
.feature-banner-title,
.feature-banner-list{
  color: #fff !important;
}

.feature-banner-list li{
  font-size: 20px;
  font-weight: 500;
  color: #23262a;
}
.feature-banner-meta {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}
.feature-banner-title {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
.feature-banner-action .btn ,
.swiper-button-next,
.swiper-button-prev{
  background: var(--secondary-color) !important;
  color: #23262a !important;
  border-radius: 50%;
  padding: 25px;
 
}
.swiper-button-prev{
  display: none;
}

.swiper-button-next:after
{
  font-size: 20px;
  font-weight: 500;
}


.feature-banner-action .btn svg {
  stroke: #23262a !important;
}

@media (max-width: 991px) {
  .feature-banner-bg {
    min-height: auto;
  }
  
  .feature-banner-card {
    flex-direction: column;
  }
  
  .feature-banner-left {
    width: 100% !important;
    padding: 1rem !important;
  }
  
  .feature-banner-images {
    min-height: 250px;
  }
  
  .feature-banner-right {
    width: 100% !important;
    padding: 0;
  }
  
  .feature-banner-top {
    padding: 1.5rem 0 1rem;
  }
  
  .feature-banner-bottom {
    padding: 0;
  }
  
  .feature-banner-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem;
  }
  
  .feature-banner-list {
    font-size: 1rem;
  }
  
  .feature-banner-list li {
    margin-bottom: 0.5em;
    font-size: 16px;
  }
  
  .feature-banner-meta,
  .feature-banner-title {
    padding: 0 1rem;
  }
}

@media (max-width: 767px) {
  .feature-banner-bg {
    border-radius: 8px;
  }
  
  .feature-banner-images {
    min-height: 200px;
  }
  
  .feature-banner-left {
    padding: 1.25rem 0.75rem 0.75rem;
  }
  
  .feature-banner-right {
    padding: 0;
  }
  
  .feature-banner-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem;
  }
  
  .feature-banner-meta,
  .feature-banner-title {
    padding: 0 0.75rem;
  }
}

@media (max-width: 576px) {
  .feature-banner-bg {
    min-height: auto;
  }
  
  .feature-banner-images {
    min-height: 180px;
  }
  
  .feature-banner-left {
    padding: 1rem 0.5rem 0.5rem;
  }
  
  .feature-banner-right {
    padding: 1rem 0.5rem 0.5rem;
  }
  
  .feature-banner-title {
    font-size: 1.1rem !important;
    line-height: 1.3;
    margin-bottom: 0.4rem;
  }
  
  .feature-banner-meta,
  .feature-banner-title {
    padding: 0 0.5rem;
  }
  
  .feature-banner-label {
    font-size: 1.2rem;
    margin-left: 15px;
  }
}

@media (max-width: 375px) {
  .feature-banner-images {
    min-height: 160px;
  }
  
  .feature-banner-top {
    padding: 0.75rem 0.5rem 0.5rem;
  }
  
  .feature-banner-title {
    font-size: 1rem !important;
    margin-bottom: 0.3rem;
  }
  
  .feature-banner-meta,
  .feature-banner-title {
    padding: 0 0.5rem;
  }
}

.top-stories-section {
  background: #23262a;
  border-radius: 16px;
}
.story-card {
  min-width: 200px;
  max-width: 240px;
  margin: 0 auto;
  background: transparent;
}
@media (max-width: 991px) {
  .story-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .story-card img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .story-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .story-card img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover;
    border-radius: 12px;
  }
}

.match-coverage-section {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.match-coverage-header {
  background: #23262a;
  border-radius: 8px 8px 0 0;
}
.coverage-tab.active,
.coverage-tab:focus {
  background: #FFAE2B !important;
  color: #23262a !important;
  font-weight: 700;
}
.coverage-tab {
  background: #444 !important;
  color: #fff !important;
  font-weight: 500;
  border: none;
  margin-right: 8px;
}
.match-coverage-content {
  background: #e5e4e2;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.match-coverage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  max-height: 200px;
}
@media (max-width: 767px) {
  .match-coverage-content {
    flex-direction: column;
    padding: 1rem !important;
  }
  .match-coverage-img {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 1rem !important;
  }
  .match-coverage-details h4 {
    font-size: 1.1rem;
  }
}

/* Container padding for all screens */
.container-fluid, .px-5 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
@media (min-width: 576px) {
  .container-fluid, .px-5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .container-fluid, .px-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
}
@media (min-width: 1600px) {
  .container-fluid, .px-5 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
}

/* Responsive font sizes */
html { font-size: 15px; }
@media (min-width: 1200px) { html { font-size: 17px; } }
@media (max-width: 768px) { html { font-size: 14px; } }
@media (max-width: 576px) { html { font-size: 12px; } }

/* Swiper slide sizing for mobile */
.swiper-slide .story-card,
.swiper-slide .score-card,
.swiper-slide .live-score-card,
.swiper-slide .team-fixture-card {
  min-width: 90vw;
  max-width: 95vw;
}
@media (min-width: 576px) {
  .swiper-slide .story-card,
  .swiper-slide .score-card,
  .swiper-slide .live-score-card,
  .swiper-slide .team-fixture-card {
    min-width: 220px;
    max-width: 260px;
  }
}

/* Responsive images */
img, .img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Match Coverage */
.match-coverage-content {
  flex-direction: row;
}
@media (max-width: 767px) {
  .match-coverage-content {
    flex-direction: column;
    padding: 1rem !important;
  }
  .match-coverage-img {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 1rem !important;
  }
  .match-coverage-details h4 {
    font-size: 1.1rem;
  }
}

/* Responsive Top Stories */
@media (max-width: 991px) {
  .story-card img { max-height: 400px !important; }
}
@media (max-width: 767px) {
  .top-stories-section { padding: 1rem !important; }
  .story-card img { max-height: 400px !important; }
}

/* Responsive Swiper navigation buttons */
.swiper-button-next, .swiper-button-prev {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  background: #ffae2b !important;
  color: #23262a !important;
  font-size: 1.2rem !important;
}
@media (max-width: 576px) {
  .swiper-button-next, .swiper-button-prev {
    width: 24px !important;
    height: 24px !important;
    font-size: 1rem !important;
  }
}

.coverage-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 50%; /* 2:1 aspect ratio fallback */
  background: #eee;
  overflow: hidden;
}
.coverage-img-wrapper img.coverage-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .coverage-img-wrapper {
    aspect-ratio: 1.7 / 1;
    min-height: 160px;
    margin-bottom: 1rem;
  }
}

.wrapper {
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1800px) {
    .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}



.hero-section{
  background: var(--primary-color);
}

.sports-tabs .nav-tabs {
  border-bottom: none;
  padding-bottom: 30px;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.sports-tabs .nav-link {
  color: #bfc3c9;
  background: none;
  border: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background: transparent !important;
  color: #fff !important;
  transition: all 0.3s ease;
}
.sports-tabs .nav-link.active::after {
  content: "";
  display: block;
  height: 2px;
  background: #ffc107;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.sports-tabs .tab-icon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.sports-tabs .dropdown-menu {
  background: #23272f;
  color: #bfc3c9;
}
.sports-tabs .dropdown-item {
  color: #bfc3c9;
}
.sports-tabs .dropdown-item:hover {
  color: #fff;
  background: #343a40;
}

.left-sidebar {
 
  border-radius: 10px;
  padding: 24px 18px 18px 18px;
  margin-bottom: 24px;
}

.sidebar-title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #23262a;
  text-transform: uppercase;
}

.sidebar-title i {
  font-size: 1.1rem;
  color: #23262a;
}

.league-list {
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.league-list li {
  font-size: 1rem;
  color: #23262a;
  margin-bottom: 0.3rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.2s;
}

.league-list li:hover {
  color: #ffae2b;
}

.sidebar-divider {
  border: none;
  border-top: 2px solid #e6e6e6;
  margin: 0.5rem 0 1rem 0;
  width: 60%;
}

.sidebar-banner img {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Cricket Sub-Tabs Bar Styles */
.cricket-subtabs-bar {
  background: #e5e5e5;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  min-height: 54px;
}
.subtab-btn {
  font-size: 14px;
  border: none;
  background: #f5f5f5;
  color: #222;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 600;
  margin-right: 6px;
  transition: background 0.2s, color 0.2s;
}
.subtab-btn.active, .subtab-btn:hover {
  background: #ffae2b;
  color: #222;
}
.date-nav-btn {
  background: #a6a6a6;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.date-nav-btn:hover, .date-nav-btn:focus {
  background: #ffae2b;
  color: #23262a;
}
.date-picker-btn {
  background: none;
  border: none;
  color: #23262a;
  font-weight: 700;
  font-size:14px;
  padding: 0 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.date-picker-btn:hover, .date-picker-btn:focus {
  background: #ffe6a1;
}
#current-date {
  font-weight: 700;
  font-size: 1rem;
  margin-left: 2px;
}
.datepicker-dropdown {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  padding: 10px 12px;
  min-width: 180px;
  z-index: 1000;
}
.datepicker-dropdown input[type="date"] {
  width: 100%;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}


.tab-content{
  background: #e5e5e5;
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .cricket-subtabs-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 8px 4px !important;
  }
  #cricket-subtabs {
    flex-direction: column !important;
    gap: 6px !important;
    width: 100%;
  }
  .subtab-btn {
    width: 100% !important;
    margin-bottom: 6px !important;
    font-size: 1rem !important;
    padding: 10px 0 !important;
    border-radius: 16px !important;
  }
  .cricket-subtabs-bar > .d-flex.position-relative {
    width: 100% !important;
    justify-content: flex-start !important;
    margin-top: 4px !important;
  }
  .date-nav-btn, .date-picker-btn {
    width: auto !important;
    min-width: 36px !important;
    font-size: 1rem !important;
    padding: 6px 8px !important;
  }
  .date-picker-btn span, .date-picker-btn i {
    font-size: 1rem !important;
  }
  #datepickerDropdown {
    min-width: 100px !important;
    right: 0 !important;
    left: auto !important;
  }
}

.tab-caption {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-color);
  color: #fff;
  padding: 0 !important;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 576px) {
  .tab-caption {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 0.95rem;
    gap: 0 !important;
  }
}
.tab-caption-main{
  border-radius: 10px 0 0 0;
  padding-left: 15px;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-color);
  background: var(--secondary-color);
  min-width: 150px;
}
.tab-caption-more a{
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  padding-right: 15px;
}

@media (max-width: 576px) {
  #cricket-tab-content .tab-pane,
  #cricket-tab-content .card {
    padding: 0.5rem !important;
    margin-bottom: 1rem;
  }
  #cricket-tab-content .card-header,
  #cricket-tab-content .card-body {
    padding: 0.75rem !important;
  }
  #cricket-tab-content .row {
    flex-direction: column;
  }
  #cricket-tab-content .col-md-1,
  #cricket-tab-content .col-md-5,
  #cricket-tab-content .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .tab-caption-main {
    min-width: 90px;
    font-size: 1rem;
    padding-left: 8px;
  }
  .tab-caption-more a {
    padding-right: 8px;
    font-size: 10px;
  }
  .tab-caption {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  #cricket-tab-content img {
    width: 24px !important;
    height: 24px !important;
  }
}


.wrapper-page {
  max-width: 2400px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 2400px) {
  .wrapper-page {
      padding-left: 40px;
      padding-right: 40px;
  }
}