@import url('https://fonts.googleapis.com/css2?family=Aoboshi+One&display=swap');



*{
  font-weight: 400;
}

body {
  background-color: #000000;
  font-family: 'Aoboshi One', serif;
  font-weight: 400;
}

/* Ensure popup is above navbar */
#mobile-popup {
  z-index: 9999 !important;
}

/* Optional smooth dropdown transition */
#mobile-dropdown-menu {
  transition: all 0.3s ease-in-out;
}


.heading-content{
  font-size: 20px;
  font-weight: 400;
}

.scorecard h3{
    font-size: 20px;
    font-weight: 400;
}

.scorecard p{
  color: #B7B7B7;
  font-size: 11px;
}

.scorecard .score{
  font-size: 14px;
}

@media(max-width:768px){
  .heading-content{
  font-size: 17px;
  font-weight: 400;
}

.scorecard h3{
    font-size: 17px;
    font-weight: 400;
}
}



.tab-content {
  transition: all 0.3s ease;
}
   /* Hide scrollbar but keep scroll functionality */
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }

  .no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }

 .gradient-border-btn {
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  border: 1px solid;
  border-image-slice: 1; /* important for showing gradient */
  border-image-source: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.05) 0%,
    #ffffff 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.gradient-border-btn:hover {
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.05) 0%,
    #ffffff1a 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
}


.border-line {
    height: 4px;
    background: linear-gradient(to right, #FDB80B 25%, #ddd 20%);
    border: none;
}

.btn-yellow { background-color: #FDB80B; color: #000; border-radius: 6px; padding: 0.4rem 0.8rem; font-weight: 500; }

.heading{
  font-size: 20px;
  /* color: #fff; */
  font-weight: 400;
}




/* Individual tab */
.match-tab {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  /* border-radius: 8px; */
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Divider effect */
.match-tab:last-child {
  border-right: none;
}

/* Active tab */
.active-tab {
  background: #FDB80B !important;
  color: #000000 !important;
  font-weight: 600 !important;
}

/* Hover */
/* .match-tab:hover:not(.active-tab) {
  background: rgba(255, 255, 255, 0.08);
} */

/* Tab content */
.tab-content {
  animation: fadeUp 0.3s ease;
}


/* Individual tab */
.ongoing_turnament-tab {
  /* background: transparent; */
  border: none;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Horizontal scrollbar styling */
.custom-scrollbar {
  scrollbar-width: thin;                 /* Firefox */
  scrollbar-color: #FDB80B #6D6D6D;       /* thumb | track */
}

/* Chrome, Edge, Safari */
.custom-scrollbar::-webkit-scrollbar {
  height: 6px;                           /* scrollbar height */
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #6D6D6D;                   /* gray track */
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #FDB80B;             /* yellow thumb */
  border-radius: 10px;
}

/* Hide scrollbar arrows */
.custom-scrollbar::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.match-card {
  background: #FFFCF380;
  border: 1px solid #FDB80B;
  padding: 14px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap:20px;
  align-items: center;
  margin-bottom: 12px;
}

.dark .match-card {
  background: #1c1c1c;
  padding: 14px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap:20px;
  align-items: center;
  margin-bottom: 12px;
}

@media (max-width:620px){
  .match-card {
    flex-direction: column;
  }
}

.match-btn {
  background: #FDB80B;
  color: #000;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.poll-card {
   background: #FFFCF3;
   /* color: #fff; */
   border: 1px solid #FF9800;
    border-radius: 14px;
      padding: 20px;
}

 .dark .poll-card {
      background: #2a2a2a;
      border-radius: 14px;
      padding: 20px;
      /* color: #fff; */
      border: none;
    }

    

.poll-check input {
  display: none;
}

.poll-check span {
  border: 1px solid #FDB80B;
  /* color: #fff; */
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
  display: inline-block;
}

@media (max-width:768px){
  .poll-check span {
     padding: 6px 12px;
       font-size: 12px;
  }
}

/* Hover (only when not checked) */
.poll-check:hover span {
  background: #FDB80B;
  color: #000;
}

/* Checked / Active */
.poll-check input:checked + span {
  background: #FDB80B;
  color: #000;
}



    .progress-wrap {
      background: #555;
      border-radius: 999px;
      height: 5px;
      overflow: hidden;
    }

    @media (max-width:500px){
      .progress-wrap {
        height: 2px;
      }
    }

    .progress-bar {
      height: 100%;
      background: #FDB80B;
      width: 0;
      transition: width 0.6s ease;
    }
    .tab-btn {
      border: 1px solid #FDB80B;
      /* color: #fff; */
      padding: 6px 14px;
      border-radius: 10px;
      font-size: 14px;
      transition: all 0.3s ease;
    }
.dark .tab-btn {
      border: 1px solid #FDB80B;
      /* color: #fff; */
      padding: 6px 14px;
      border-radius: 10px;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    @media (max-width:768px){
      .tab-btn {
        padding: 6px 12px;
         font-size: 12px;
      }
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: #FDB80B;
      color: #000;
    }
   .country-card {
      background: #FFFFFF;
      border: 1px solid #FDB80B;
      border-radius: 14px;
      padding: 24px;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    }
    .dark .country-card {
      background: #323232;
      border: none;
      border-radius: 14px;
      padding: 24px;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
    }

    @media (max-width:1000px){
      .country-card {
        padding: 14px;
      }
    }

    .country-card:hover {
      transform: translateY(-4px);
    }
    .country-card img{
       width: 70px;
       height: 70px;
       border-radius: 100%;
       /* object-fit: cover; */
    }
    .country-card p{
       font-size: 20px;
       line-height: 120%;
    }

    @media (max-width:768px){
       .country-card img{
       width: 50px;
       height: 50px;
       border-radius: 100%;
    }
    .country-card p{
       font-size: 18px;
       line-height: 120%;
    }
    }

    .league-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid #f5d481;
      box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
    }

    .dark .league-card {
      background: #2a2a2a;
      border-radius: 12px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 0.1px solid #f5d481;
      box-shadow: none;
    }

    .league-card img{
      height: 32px;
      width: 32px;
      border-radius: 100%;
    }
    .league-card p{
     font-size: 18px;
     line-height: 120%;
    }

    .tab-content-new {
      display: none;
    }

    .tab-content-new.active {
      display: block;
    }
.tab-inner {
  font-size: 12px;
  border: 1px solid #FDB80B;
  /* color: #fff; */
  padding: 6px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: transparent;
}

@media (min-width: 768px) {
  .tab-inner {
    font-size: 15px;
    padding: 8px 24px;
  }
}

/* Hover */
.tab-inner:hover {
  background-color: #FDB80B;
  color: #000;
}

/* Active */
.tab-inner.active {
  background-color: #FDB80B;
  color: #000;
}


.match-inner-container {
  height: 280px;
}

@media (min-width: 1500px) {
  .match-inner-container {
    height: 260px;
  }
}

@media (min-width: 1800px) {
  .match-inner-container {
    height: 250px;
  }
}


.light-shadow {
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
}

.scoreSwiper .swiper-wrapper{
  margin: 20px 0px;
}

.dark .scorecard{
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.scorecard{
  border-left: 5px solid #FDB80B;
  border-right: 5px solid #FDB80B;
}

.upcoming-turnaments{
  border: 2px solid #FDB80B;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.dark .upcoming-turnaments{
  border: none;
  box-shadow: none;
}

.where_to_watch {
  border-radius: 6px;
}
.where_to_watch .swiper-slide {
  width: auto;
  border-right: 1px solid #B7B7B7;
}


.ongoing_turnament_swiper {
  border-radius: 6px;
}
.ongoing_turnament_swiper .swiper-slide {
  width: auto;
  border-right: 1px solid #B7B7B7;
}
.popular-article-card{
  background-color: #fff;
  border-left: 2px solid #FF9800;
  border-top: 2px solid #FF9800;
  border-right: 1px solid #FF9800;
  border-bottom: 1px solid #FF9800;
   box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.dark .popular-article-card{
  background-color: #323232;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
   box-shadow: none;
}


.know_your_player_tab_section_content {
  color: #ffffff;
}

.know_your_player_tab_section_content img {
  height: 360px;
  object-fit: cover;
}

.news-category-list{
    display: flex;
  flex-wrap: wrap;       /* 👈 enables wrapping */
  align-items: center;
  gap: 20px;             /* spacing between items */
  font-size: 15px;
  color: #ddd;
}

.news-category-list li a:hover{
    color: #FDB80B;
    border-bottom: 1px solid #FDB80B;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.news-category-list li a.active{
    color: #FDB80B;
    border-bottom: 1px solid #FDB80B;
}

.cards-border-and-bg{
   background-color: #FFFCF3;
   border: 1px solid #FDB80B;
}

.dark .cards-border-and-bg{
  background-color: #323232;
  border: none;
}
#FFFCF3

.latest-story-card{
  background-color: #FFFCF3;
  border-radius: 10px;
}

.latest-story-card-inner{
  padding: 2rem;
}

.latest-story-card-inner .main_img{
  border-radius: 10px;
  max-height: 500px;
  object-fit: cover;
  width: 100%;

}



.dark .latest-story-card{
  background-color: #323232;
  border-radius: 10px;
}

.share-icons {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 30px;
  height: 30px;
  padding: 15px;

  border: 1px solid #e5e5e5;
  border-radius: 9999px;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;

   box-shadow: 0 20px 50px rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.share-icons i {
  font-size: 10px;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.share-icons:hover {
  transform: translateY(-20%);
 
}

/* Optional icon hover movement */
.share-icons:hover i {
  transform: scale(1.1);
}





