@import url("https://fonts.googleapis.com/css2?family=Aoboshi+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Archivo:ital,wght@0,100..900;1,100..900&family=Oswald&family=Roboto:ital,wght@0,100..900;1,100..900&family=TASA+Orbiter:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Archivo:ital,wght@0,100..900;1,100..900&family=Exo:ital,wght@0,100..900;1,100..900&family=Oswald&family=Roboto:ital,wght@0,100..900;1,100..900&family=TASA+Orbiter:wght@400..800&display=swap");



html {
  overflow-x: hidden;
}

:root {
  --brand: #be00fb;
  --brand-dark: #5E1A75;
  --brand-light: #9A4FBD;
  --brand-50: #F6EEFA;
}

body {
  background-color: #000000;
  /* font-family: "Aoboshi One", serif; */
  font-weight: 500;
  font-family: "Exo", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit !important;
}

ul,
ol {
  font-family: inherit !important;
}

/* 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-family: 'Antonio', serif !important;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

@media(max-width:900px) {
  .heading-content {
    font-size: 22px;
  }
}

.scorecard h3 {
  font-size: 20px;
  font-weight: 600;
}

.scorecard .score {
  font-size: 14px;
  font-weight: 500;
}

.scorecard p {
  color: #606060;
  font-size: 12px;
}

.dark .scorecard p {
  color: #b7b7b7;
  font-size: 12px;
}



@media (max-width: 768px) {
  .heading-content {
    font-size: 20px;
    font-weight: 400;
  }

  .scorecard h3 {
    font-size: 17px;
    font-weight: 400;
  }
}

button {
  transition: all 0.3s ease;
}

/* 
button:hover{
border:none;
background-color: var(--brand) !important;
color: #000 !important;
} */

.line-clamp-9 {
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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, var(--brand) 25%, #ddd 20%); */
  background: #ddd;
  border: none;
}

.btn-yellow {
  background-color: var(--brand);
  color: #000;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-weight: 500;
}

.heading {
  font-size: 20px;
  /* color: #fff; */
  font-weight: 400;
}

.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;
}

.where_to_watch {
  border-radius: 6px;
}

.where_to_watch .swiper-slide {
  width: auto;
  border-right: 1px solid #b7b7b7;
}

/* Individual tab */
.all-tab-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 14px;
  /* font-weight: 400; */
  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 */
/* .all-tab-btn:last-child {
  border-right: none;
} */

/* Active tab */
.active-tab {
  background: var(--brand) !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);
  }
}

.match-card {
  background: #fff;
  border: 1px solid var(--brand);
  padding: 14px !important;
  border-radius: 10px !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 20px !important;
  align-items: center !important;
  margin-bottom: 12px !important;
  box-shadow: 4px 4px 10px 0px #00000040;
}

.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: var(--brand);
  color: #000;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.poll-card {
  background: var(--brand-50);
  /* color: #fff; */
  border: 1px solid var(--brand);
  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 var(--brand);
  /* color: #fff; */
  padding: 6px 20px;
  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: var(--brand);
  color: #000;
}

/* Checked / Active */
.poll-check input:checked+span {
  background: var(--brand);
  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: var(--brand);
  width: 0;
  transition: width 0.6s ease;
}

.tab-btn {
  border: 1px solid var(--brand);
  /* color: #fff; */
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dark .tab-btn {
  border: 1px solid var(--brand);
  /* color: #fff; */
  padding: 6px 14px;
  border-radius: 5px;
  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: var(--brand);
  color: #000;
}

.country-card {
  background: #ffffff;
  border: 1px solid var(--brand);
  border-radius: 14px !important;
  padding: 24px !important;
  text-align: center !important;
  transition: transform 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  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 !important;
  padding: 14px 16px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--brand-50);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.dark .league-card {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0.1px solid var(--brand-50);
  box-shadow: none;
  transition: transform 0.3s ease;
}

.league-card:hover {
  transform: translateY(-4px);
}

.league-card img {
  height: 32px;
  width: 32px;
  border-radius: 100%;
}

.league-card p {
  font-size: 18px;
  line-height: 120%;
}

.cups-cards {
  transition: transform 0.3s ease;
}

.cups-cards:hover {
  transform: translateY(-4px);
}

.tab-content-new {
  display: none;
}

.tab-content-new.active {
  display: block;
}

.tab-inner {
  font-size: 12px;
  border: 1px solid var(--brand);
  /* color: #fff; */
  padding: 6px 12px;
  border-radius: 5px;
  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: var(--brand);
  color: #000 !important;
  border: 1px solid var(--brand) !important;
}

/* Active */
.tab-inner.active {
  background-color: var(--brand);
  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 .scoreSwiper .swiper-wrapper {
  margin: 20px 0px;
}

.dark .scorecard {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.scorecard {
  border-left: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
}

.upcoming-turnaments {
  border: 2px solid var(--brand);
  box-shadow: 4px 4px 10px 0px #00000040;
}

.dark .upcoming-turnaments {
  border: none;
  box-shadow: none;
}

.swiper-mein-container {
  border-radius: 6px;
}

.swiper-mein-container .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: #F6EEFA;
  border-left: 2px solid #5E1A75;
  border-top: 2px solid #5E1A75;
  border-right: 1px solid #5E1A75;
  border-bottom: 1px solid #5E1A75;
  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: var(--brand);
  border-bottom: 1px solid var(--brand);
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.news-category-list li a.active {
  color: var(--brand);
  border-bottom: 1px solid var(--brand);
}

.cards-border-and-bg {
  background-color: #fffcf3;
  border: 1px solid var(--brand);
}

.dark .cards-border-and-bg {
  background-color: #323232;
  border: none;
}

/* #FFFCF3 */

.latest-story-card {
  background-color: #fffcf3;
  border: 1px solid var(--brand);
  border-radius: 20px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.latest-story-card-inner {
  padding: 2rem;
}

@media (max-width: 500px) {
  .latest-story-card-inner {
    padding: 1rem;
  }
}

.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;
  border: none;
}

.share-icons {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 30px;
  height: 30px;
  padding: 15px;
  background-color: var(--brand)1a;
  border: 1px solid var(--brand);
  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;
}

.dark .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: 14px;
  line-height: 3;
  transition: transform 0.3s ease;
  color: var(--brand);
}

/* Hover Effect */
.share-icons:hover {
  transform: translateY(-20%);
}

/* Optional icon hover movement */
.share-icons:hover i {
  transform: scale(1.1);
}

.news-details-page-contents p:first-child {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 1rem;
  border-left: 2px solid var(--brand);
  padding-left: 2rem;
}

.news-details-page-contents p {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 1rem;
}

.news-details-page-contents h4 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .news-details-page-contents p:first-child {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 1rem;
    border-left: 2px solid var(--brand);
    padding-left: 2rem;
  }

  .news-details-page-contents p {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 1rem;
  }

  .news-details-page-contents h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0.5rem;
  }
}

.active-calender {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.article-title-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  /* FORCE single line */
}

.article-title-marquee {
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
}

/* Hover scroll */
.popular-article-card:hover .article-title-marquee {
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

#categoryList a {
  color: #ccc;
  font-size: 14px;
}

#categoryList a.active,
#categoryList a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.more-item {
  color: #ccc;
  font-size: 14px;
}

.more-item:hover {
  color: var(--brand);
}

/* #################
  New Design Start 
################ */

.product-container .text-orange {
  color: var(--brand);
  font-size: 25px;
  padding-left: 10%;
  margin-bottom: 10px;
}

/* CARD */
.product-container .product-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
  transition: all 0.3s ease;
  background: #fff;
}

.product-container .product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* ORANGE TITLE BAR */
.product-container .card-title {
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
}

/* OVERLAY */
.product-container .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 120, 32, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: 0.35s ease;
}

/* HOVER EFFECT */
.product-container .product-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.product-container .product-card:hover .card-overlay {
  transform: translateY(0);
}

/* VIEW BUTTON */
.product-container .view-btn {
  /* background: #fff; */
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  /* padding: 8px 20px; */
  /* border-radius: 30px; */
}

.product-container ul li {
  margin-bottom: 20px;
  font-size: 20px;
  color: #000;
}

.power-installation-section .tm {
  font-size: 16px;
  vertical-align: super;
}

.power-installation-section .para {
  font-size: 20px;
}

/* BENEFITS LIST */
.power-installation-section .benefits-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  font-size: 20px;
}

.power-installation-section .benefits-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  color: #f47820;
  font-weight: bold;
  font-size: 20px;
}

/* CTA BUTTON */
.power-installation-section .btn-orange {
  background: #f47820;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
}

.power-installation-section .btn-orange:hover {
  background: #000;
  color: #fff;
}

.power-installation-section .power-installation-section h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000;
}

/* #################
  New Design End 
################ */

.upcoming-match-container-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.upcoming-match-container-tabs {
  display: flex;
  margin-bottom: 16px;
}

.upcoming-match-container-tab {
  background: #2b2b2b;
  color: #aaa;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
}

.upcoming-match-container-tab.active {
  background: var(--brand-50);
  color: #000;
}

.upcoming-match-container-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upcoming-match-container-card {
  background: #1a1a1a;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.upcoming-match-container-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.upcoming-match-container-teams img {
  width: 32px;
}

.upcoming-match-container-info {
  font-size: 12px;
  color: #ccc;
}

.upcoming-match-container-actions {
  display: flex;
  gap: 8px;
}

.upcoming-match-container-reminder {
  border: 1px solid var(--brand-50);
  color: var(--brand-50);
  background: transparent;
  padding: 4px 10px;
  font-size: 11px;
}

.upcoming-match-container-primary {
  background: var(--brand-50);
  color: #000;
  padding: 4px 12px;
  font-size: 11px;
}

.upcoming-match-container-format {
  display: flex;
  gap: 6px;
  margin: 12px 0;
}

.upcoming-match-container-format button {
  background: #2b2b2b;
  padding: 6px 10px;
  font-size: 11px;
  color: #aaa;
}

.upcoming-match-container-format button.active {
  background: var(--brand-50);
  color: #000;
}

.upcoming-match-container-rank-list li {
  display: flex;
  justify-content: space-between;
  background: #1a1a1a;
  padding: 8px 10px;
  font-size: 13px;
  margin-bottom: 6px;
}

.kyp-format-btn {
  border-right: 1px solid #898989;
}

.kyp-format-btn:last-child {
  border-right: none;
}

/* Default 1 line */
.pa-desc {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}

/* Hover expand + scroll */
.pa-article:hover .pa-desc {
  -webkit-line-clamp: unset;
  max-height: 80px;
  overflow-y: auto;
}

.on-going-match-swiper {
  width: 100%;
  overflow: hidden;
}

.on-going-match-swiper .swiper-slide {
  width: 100% !important;
}

.swiper-pagination-bullet {
  background: #d1d5db;
  /* gray */
  opacity: 1;
}

.dark .swiper-pagination-bullet {
  background: #ffffff;
  /* gray */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--brand) !important;
  width: 14px;
  border-radius: 6px;
}

/* ALL HEADINGS */
.blog-details-content h4 {
  font-size: 22px;
  font-weight: 400;
  margin: 30px 0 10px;
  /* color: #111; */
}

/* ALL PARAGRAPHS */
.blog-details-content p {
  margin-bottom: 16px;
  font-size: 16px;
  /* color: #444; */
}

/* LISTS */
.blog-details-content ul {
  padding-left: 20px;
  margin-top: 10px;
  list-style: disc;
}

.blog-details-content ul li {
  margin-bottom: 8px;
}

/* SECTION SPACING */
.blog-details-content>div {
  margin-bottom: 25px;
}

/* HIGHLIGHT QUOTE SECTION */
.blog-details-content .bg-sec {
  /* background: #fff8e6; */
  border-left: 4px solid var(--brand);
  padding: 18px;
  border-radius: 8px;
  font-style: italic;
  color: var(--brand);
  background: linear-gradient(90deg,
      rgba(253, 184, 11, 0.1) 0%,
      rgba(253, 184, 11, 0) 100%);
}

/* IMAGE SECTION */
.blog-details-content .img-sec img {
  width: 100%;
  border-radius: 12px;
  margin-top: 12px;
}

/* CARD STYLE SECTIONS */
.blog-details-content .list-sec-two {}

/* HOVER EFFECT (optional) */
.blog-details-content .list-sec li:hover,
.blog-details-content .list-sec-two li:hover {
  transform: translateY(-3px);
  transition: 0.3s;
  /* box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-details-content h4 {
    font-size: 20px;
  }

  .blog-details-content p {
    font-size: 15px;
  }
}

.blog-details-content .img-sec img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

/* sm (=640px) */
@media (min-width: 640px) {
  .blog-details-content .img-sec img {
    max-height: 450px;
  }
}

/* md (=768px) */
@media (min-width: 768px) {
  .blog-details-content .img-sec img {
    max-height: 520px;
  }
}

/* lg (=1024px) */
@media (min-width: 1024px) {
  .blog-details-content .img-sec img {
    max-height: 550px;
  }
}

.key-takeaways {
  background: linear-gradient(270deg,
      rgba(253, 184, 11, 0) 0%,
      rgba(253, 184, 11, 0.1) 100%);
  padding: 18px 22px;
  border-radius: 6px;
  border: 0.5px solid var(--brand);
  /* border-bottom: 1px solid rgba(253,184,11,0.3); */
  /* max-width: 800px; */
}

/* TITLE */
.key-takeaways h4 {
  color: var(--brand);
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 700;
}

/* LIST */
.key-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LIST ITEMS */
.key-takeaways ul li {
  /* color: #eaeaea; */
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
}

/* YELLOW CHECK ICON */
.key-takeaways ul li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: bold;
}

/* HOVER EFFECT (optional) */
/* .key-takeaways ul li:hover{
  color: #fff;
  transform: translateX(4px);
  transition: 0.25s;
} */

/* MOBILE */
@media (max-width: 768px) {
  .key-takeaways {
    padding: 22px;
  }

  .key-takeaways h4 {
    font-size: 20px;
  }

  .key-takeaways ul li {
    font-size: 15px;
  }
}


.cards {
  background-color: #fff;
  /* border-left: 2px solid var(--brand);
  border-top: 2px solid var(--brand);
  border-right: 1px solid var(--brand); */
  border: 1px solid var(--brand);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.dark .cards {
  background-color: #323232;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  box-shadow: none;
}



/* Make swiper track stretch */
.achiever-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch !important;
}

/* Make each slide auto height */
.achiever-swiper .swiper-slide {
  height: auto !important;
  display: flex;
}

/* Make card fill slide */
.achiever-swiper .cards {
  height: 100%;
  width: 100%;
}



/* palyer page filters */


/* ====== TITLE ====== */
.bsx-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 14px;
}

/* ====== TABS ====== */
.bsx-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  /* background: #606060; */
  /* border: 1px solid #6f6f6f; */
  margin-bottom: 15px;
}

.dark .bsx-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  /* background: #323232; */
  /* border: 1px solid #6f6f6f; */
  margin-bottom: 15px;
}

.bsx-tab-radio {
  display: none;
}

.bsx-tab-label {
  flex: 1 1 0;
  padding: 12px 14px;
  background: #606060;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.1;
  border-right: 1px solid #737373;
  transition: background-color .2s ease, color .2s ease;
}

.dark .bsx-tab-label {
  flex: 1 1 0;
  padding: 12px 14px;
  background: #323232;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.1;
  border-right: 1px solid #737373;
  transition: background-color .2s ease, color .2s ease;
}

.bsx-tab-label:last-of-type {
  border-right: none;
}

.bsx-tab-radio:checked+.bsx-tab-label {
  background: var(--brand);
  color: #000;
}

/* ====== FILTERS ====== */
.bsx-select {
  padding: 8px 30px;
  border-radius: 6px;
  border: none;
  background: #606060;
  font-size: 14px;
  border: .5px solid var(--brand-50);
  color: #fff;
}

.dark .bsx-select {
  padding: 8px 30px;
  border-radius: 6px;
  border: none;
  background: #323232;
  font-size: 14px;
  border: .5px solid var(--brand-50);
}

/* ====== TABLE ====== */
.bsx-table-wrap {
  overflow-x: auto;
  background: #606060;
  border-radius: 8px;
}

.dark .bsx-table-wrap {
  overflow-x: auto;
  background: #323232;
  border-radius: 8px;
}


#bsx-stats-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.bsx-thead {
  background: var(--brand);
}

.bsx-th {
  padding: 10px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #00000082;
}

.dark .bsx-th {
  padding: 10px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #000000;
}

.bsx-td {
  padding: 10px;
  text-align: center;
  color: #fff;
  border: 1px solid #0000004f;
  font-size: 14px;
}

.dark .bsx-td {
  padding: 10px;
  text-align: center;
  color: #fff;
  border: 1px solid #000000;
  font-size: 14px;
}

/* ====== RESPONSIVE ====== */
@media(max-width:600px) {
  .bsx-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bsx-tabs::-webkit-scrollbar {
    display: none;
  }

  .bsx-tab-label {
    flex: 0 0 auto;
    min-width: 170px;
    font-size: 13px;
    padding: 11px 14px;
  }

  .bsx-th,
  .bsx-td {
    padding: 8px;
    font-size: 12px;
  }

  .bsx-select {
    width: 100%;
  }

}



/* ====== TITLE ====== */
.bowx-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 14px;
}

/* ====== TABS ====== */
.bowx-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  /* background: #606060; */
  /* border: 1px solid #6f6f6f; */
  margin-bottom: 15px;
}

.dark .bowx-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  /* background: #323232; */
  /* border: 1px solid #6f6f6f; */
  margin-bottom: 15px;
}

.bowx-tab-radio {
  display: none;
}

.bowx-tab-label {
  flex: 1 1 0;
  padding: 12px 14px;
  background: #606060;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.1;
  border-right: 1px solid #737373;
  transition: background-color .2s ease, color .2s ease;
}

.dark .bowx-tab-label {
  flex: 1 1 0;
  padding: 12px 14px;
  background: #323232;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.1;
  border-right: 1px solid #737373;
  transition: background-color .2s ease, color .2s ease;
}

.bowx-tab-label:last-of-type {
  border-right: none;
}

.bowx-tab-radio:checked+.bowx-tab-label {
  background: var(--brand);
  color: #000;
}

/* ====== FILTERS ====== */
.bowx-select {
  padding: 8px 30px;
  border-radius: 6px;
  border: none;
  background: #606060;
  font-size: 14px;
  border: .5px solid var(--brand-50);
  color: #fff;
}

.dark .bowx-select {
  padding: 8px 30px;
  border-radius: 6px;
  border: none;
  background: #323232;
  font-size: 14px;
  border: .5px solid var(--brand-50);
}

/* ====== TABLE ====== */
.bowx-table-wrap {
  overflow-x: auto;
  background: #606060;
  border-radius: 8px;
}

.dark .bowx-table-wrap {
  overflow-x: auto;
  background: #323232;
  border-radius: 8px;
}


#bowx-stats-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.bowx-thead {
  background: var(--brand);
}

.bowx-th {
  padding: 10px;
  font-size: 14px;
  color: #000;
  border: 1px solid #00000082;
}

.dark .bowx-th {
  padding: 10px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #00000054;
}

.bowx-td {
  padding: 10px;
  text-align: center;
  color: #fff;
  border: 1px solid #000000;
  font-size: 14px;
}

.dark .bowx-td {
  padding: 10px;
  text-align: center;
  color: #fff;
  border: 1px solid #000000;
  font-size: 14px;
}

/* ====== RESPONSIVE ====== */
@media(max-width:600px) {
  .bowx-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bowx-tabs::-webkit-scrollbar {
    display: none;
  }

  .bowx-tab-label {
    flex: 0 0 auto;
    min-width: 170px;
    font-size: 13px;
    padding: 11px 14px;
  }

  .bowx-th,
  .bowx-td {
    padding: 8px;
    font-size: 12px;
  }

  .bowx-select {
    width: 100%;
  }

}



.msx-main-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(460px, 100%);
  border-radius: 4px;
  overflow: hidden;
  background: #606060;
  margin-bottom: 30px;
  text-align: center;
  cursor: pointer;
}


.dark .msx-main-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(460px, 100%);
  border-radius: 4px;
  overflow: hidden;

  background: #323232;
  margin-bottom: 30px;
  text-align: center;
  cursor: pointer;
}

.msx-main-tab {
  border: 0;
  background: transparent;
  color: #f2f2f2;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.msx-main-tab.is-active {
  background: var(--brand);
  color: #000;
}

.msx-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.msx-filter-btn {
  border: 1px solid var(--brand);
  background: transparent;
  /* color:#fff; */
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  text-align: center;
}

.msx-filter-btn.is-active {
  background: var(--brand);
  color: #000;
}

.msx-list {
  display: grid;
  gap: 24px;
}

.msx-card {
  background: #323232;
  border-radius: 12px;
  padding: 20px;
  background-color: #FFFCF3;
  border-left: 2px solid var(--brand);
  border-top: 2px solid var(--brand);
  border-right: 1px solid var(--brand);
  border-bottom: 1px solid var(--brand);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.dark .msx-card {
  border: none;
  background: #323232;
  border-radius: 12px;
  padding: 20px;
}

.msx-card.milestone {
  display: flex;
  align-items: center;
  gap: 18px;
}


.msx-score {
  width: 92px;
  min-width: 92px;
  border-radius: 12px;
  background: var(--brand);
  text-align: center;
  padding: 10px 8px 8px;
  line-height: 1;
}

.dark .msx-score {
  width: 92px;
  min-width: 92px;
  border-radius: 12px;
  background: #777879;
  text-align: center;
  padding: 10px 8px 8px;
  line-height: 1;
}

.msx-score-value {
  font-size: 25px;
  font-weight: 400;
  color: #f2f2f2;
  margin-bottom: 4px;
}

.msx-score-label {
  font-size: 15px;
  color: #fff;
}

.msx-head {
  font-size: 20px;
  /* font-weight: 700; */
  line-height: 1.1;
  margin-bottom: 10px;
  /* color:#f1f1f1; */
}

.msx-sub {
  font-size: 15px;
  color: #8e8f93;
  line-height: 1.3;
}

.msx-achievements {
  display: none;
}

.msx-achievements .msx-card {
  padding: 22px 20px;
}

.msx-achievements .msx-head {
  font-size: 20px;
  margin-bottom: 8px;
}

.msx-achievements .msx-sub {
  font-size: 14px;
}

/* @media (max-width:900px){
      .msx-title{font-size:28px;}
      .msx-main-tab{font-size:20px; padding:12px;}
      .msx-filter-btn{font-size:30px; padding:9px 14px;}
      .msx-card{padding:24px 20px;}
      .msx-score{width:72px; min-width:72px;}
      .msx-score-value{font-size:38px;}
      .msx-score-label{font-size:27px;}
      .msx-head{font-size:38px;}
      .msx-sub{font-size:24px;}
    } */

@media (max-width:560px) {
  .msx-wrap {
    padding: 14px 8px 20px;
  }

  .msx-title {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .msx-main-tabs {
    width: 220px;
    margin-bottom: 12px;
    border-radius: 6px;
  }

  .msx-main-tab {
    font-size: 14px;
    font-weight: 400;
    padding: 7px 6px;
  }

  .msx-filters {
    gap: 8px;
    margin-bottom: 14px;
  }

  .msx-filter-btn {
    font-size: 14px;
    border-radius: 9px;
    padding: 7px 13px;
  }

  .msx-list {
    gap: 10px;
  }

  .msx-card {
    border-radius: 6px;
    padding: 12px 14px;
  }

  .msx-card.milestone {
    gap: 10px;
  }

  .msx-score {
    width: 56px;
    min-width: 56px;
    border-radius: 8px;
    padding: 7px 6px;
  }

  .msx-score-value {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .msx-score-label {
    font-size: 11px;
  }

  .msx-head {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .msx-sub {
    font-size: 11px;
  }

  .msx-achievements .msx-card {
    padding: 10px 12px;
  }

  .msx-achievements .msx-head {
    font-size: 24px;
  }

  .msx-achievements .msx-sub {
    font-size: 10px;
  }
}



.drk-light-card {
  background-color: #FFFCF3;
  border-left: 2px solid var(--brand);
  border-top: 2px solid var(--brand);
  border-right: 1px solid var(--brand);
  border-bottom: 1px solid var(--brand);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.dark .drk-light-card {
  background-color: #323232;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  box-shadow: none;
}

/* Table Wrapper */
.iplpt .iplpt-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}

.iplpt table {
  width: 100%;
  min-width: 720px;
  /* key for mobile scroll */
  border-collapse: collapse;
}

/* Header */
.iplpt thead {
  background: var(--brand);
  color: #000;
}

.iplpt th {
  padding: 12px;
  /* font-weight:700; */
  font-size: 14px;
  /* border-right:1px solid rgba(0,0,0,0.3); */
  border: none;
  color: #fff;
}

/* Body */
.iplpt tbody {
  background: #606060;
}

.dark .iplpt tbody {
  background: #323232;
}

.iplpt td {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  /* border-bottom:1px solid #1f1f1f;
  border-right:1px solid #1f1f1f; */
  border: none;
  color: #e5e5e5;
}

/* Team column left align */
.iplpt td.team {
  text-align: left;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 10px
}


.iplpt td.team img {
  border-radius: 99999px;
  height: 20px;
  width: 20px;
}

/* Hover effect */
.iplpt tbody tr:hover {
  background: #4a4a4a;
}

/* Responsive */
@media(max-width:768px) {

  .iplpt th,
  .iplpt td {
    padding: 8px;
    font-size: 12px;
  }
}


/* .play-team-selected-turnament-page {
  margin: 0;
  min-height: 100vh;
  background: #060606;
  color: #ffffff;
} */

.play-team-selected-turnament {
  padding: 22px 14px;
}

.play-team-selected-turnament__wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.play-team-selected-turnament__title {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
}

.play-team-selected-turnament__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 8px;
  overflow: hidden;
  /* border: 1px solid #3c3c3c; */
  margin-bottom: 50px;
  margin-right: 10%;
}

.play-team-selected-turnament-tab {
  border: 0;
  border-right: 1px solid #CDCDCD;
  background: #606060;
  color: #f2f2f2;
  font-size: 15px;
  /* font-weight: 500; */
  padding: 12px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dark .play-team-selected-turnament-tab {
  border: 0;
  border-right: 1px solid #CDCDCD;
  background: #323232;
  color: #f2f2f2;
  font-size: 15px;
  /* font-weight: 500; */
  padding: 12px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.play-team-selected-turnament-tab:last-child {
  border-right: 0;
}

.play-team-selected-turnament-tab.is-active {
  background: var(--brand);
  color: #121212;
}

.play-team-selected-turnament-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

@media (min-width:1800px) {
  .play-team-selected-turnament-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}


.play-team-selected-turnament-card {
  background: var(--brand-50);
  border: 0.1px dashed var(--brand);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* min-height: 274px; */
}

.dark .play-team-selected-turnament-card {
  background: #323232;
  border: 0.1px dashed #CDCDCD;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* min-height: 274px; */
}



.play-team-selected-turnament-card__flag {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 999999px;
  margin: 0 auto 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.play-team-selected-turnament-card h3 {
  margin: 0;
  /* font-size: 36px; */
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.05;
  text-align: center;
}

.play-team-selected-turnament-card hr {
  border: 0;
  border-top: 0.1px dashed #565656;
  width: 100%;
  margin: 12px 0 10px;
}

.play-team-selected-turnament-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  /* min-height: 72px; */
}

.play-team-selected-turnament-card li {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
  /* color: #d0d0d0; */
  margin-bottom: 6px;
  line-height: 1.3;
}

.play-team-selected-turnament-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.play-team-selected-turnament-card__meta {
  margin: auto 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  /* color: #e2e2e2; */
}

.play-team-selected-turnament-card__meta strong {
  color: var(--brand);
  font-size: 21px;
  font-size: clamp(14px, 1.1vw, 21px);
  /* font-weight: 600; */
  margin-right: 3px;
}

.play-team-selected-turnament-card__btn {
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 3px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.play-team-selected-turnament-card__btn:hover {
  background-color: var(--brand);
  color: white;
}

@media (max-width: 1080px) {
  .play-team-selected-turnament-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .play-team-selected-turnament__tabs {
    overflow-x: auto;
    display: flex;
    scrollbar-width: none;
    margin-right: 0px;
  }

  .play-team-selected-turnament__tabs::-webkit-scrollbar {
    display: none;
  }

  .play-team-selected-turnament-tab {
    min-width: 165px;
    border-right: 1px solid #3c3c3c;
  }

  .play-team-selected-turnament-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .play-team-selected-turnament__title {
    font-size: 14px;
  }

  .play-team-selected-turnament-grid {
    grid-template-columns: 1fr;
  }

  .play-team-selected-turnament-card {
    min-height: auto;
  }
}

/* gaming tips left design */


.gaming-tips-left__hero,
.gaming-tips-left__mid-image {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 10px;
}

.gaming-tips-left__hero {
  max-height: 410px;
}

.gaming-tips-left__mid-image {
  max-height: 400px;
  margin-top: 30px;
}



.gaming-tips-left p {
  font-size: 15px;
  line-height: 25px;
  /* color: #cbcbcb; */
  margin-top: 0px !important;
  margin-bottom: 10px !important;
}

.gaming-tips-left h4.wp-block-heading {
  font-size: 22px;
  font-weight: 400;
  font-family: "Exo", sans-serif !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.gaming-tips-left h2.wp-block-heading {
  font-size: 22px;
  font-weight: 400;
  font-family: "Exo", sans-serif !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.gaming-tips-left h3.wp-block-heading {
  font-size: 22px;
  font-weight: 400;
  font-family: "Exo", sans-serif !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}



.wp-block-table td {
  font-size: 16px
}

.gaming-tips-left .custom-ul {
  padding: 1.5rem;
  /* p-6 */
  border-radius: 0.5rem;
  /* rounded-lg */
  border-left-width: 2px;
  /* border-l-2 */
  border-left-style: solid;
  border-left-color: var(--brand);
  /* border color */
  background: linear-gradient(to left,
      var(--brand)00,
      var(--brand)1A);
  /* gradient */
  margin-top: 2.75rem;
  /* my-3 */
  margin-bottom: 0.75rem;
}

@media (max-width:500px) {
  .gaming-tips-left .custom-ul {
    padding: 0.5rem;
  }
}

.gaming-tips-left li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  /* color: #d8d8d8; */
  font-size: 15px;
  line-height: 1.75;
}

.gaming-tips-left li strong {
  color: var(--brand);
  font-size: 16px;
}

.gaming-tips-left li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.5em;
}

.gaming-tips-left__article figure:not(:first-of-type) {
  margin-top: 20px;
}

.gaming-tips-left__highlight {
  padding: 1.5rem;
  /* p-6 */
  border-radius: 0.5rem;
  /* rounded-lg */

  border-left-width: 2px;
  /* border-l-2 */
  border-left-style: solid;
  border-left-color: var(--brand);
  /* border color */

  background: linear-gradient(to left,
      var(--brand)00,
      var(--brand)1A);
  /* gradient */

  margin-top: 0.75rem;
  /* my-3 */
  margin-bottom: 0.75rem;
}

.gaming-tips-left__highlight h5 {
  margin: 0 0 20px;
  /* color: var(--brand); */
  font-size: 22px;
  line-height: 1.2;
}

.gaming-tips-left__highlight p {
  margin-bottom: 8px;
}

.gaming-tips-left__cta {
  display: inline-block;
  background: var(--brand);
  color: #121212;
  font-size: 16px;
  /* font-weight: 600; */
  padding: 6px 10px;
  border-radius: 4px;
}

.gaming-tips-left__article .custom-p {
  color: var(--brand);
}


.sectional-spaces-100px {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-section {
  padding-top: 20px;
}

@media (max-width:1080px) {
  .sectional-spaces-100px {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .footer-section {
    padding-top: 30px;
  }
}

@media (max-width:678px) {
  .sectional-spaces-100px {
    padding-top: 15px;
    padding-bottom: 5px;
  }

  .footer-section {
    padding-top: 15px;
  }
}


/* Ranking Card */

.zx9_icc_card {
  background: #606060;
  border-radius: 14px;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  font-size: 25px;
  color: white;
}

.dark .zx9_icc_card {
  background: #323232;
  border-radius: 14px;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  font-size: 25px;
  color: white;
}

@media (max-width:800px) {
  .zx9_icc_card {
    font-size: 18px;
  }

  .dark .zx9_icc_card {
    font-size: 18px;
  }
}

/* Active Button */
.zx9_active_btn {
  background-color: var(--brand) !important;
  color: #000 !important;
  font-weight: 400;
}

/* Default Button */
.zx9_filter_btn {
  border: 1px solid var(--brand);
  /* color: var(--brand); */
  border-radius: 6px;
  padding: 5px 12px;
  transition: 0.3s;
}

.zx9_filter_btn:hover {
  background-color: var(--brand);
  /* color: #000; */
}



.site .button:disabled,
button:disabled {
  background-color: #e7befb !important;
  /* border: 1px solid #be00fb !important; */
}

.dark .site .button:disabled,
button:disabled {
  background-color: #F6EEFA !important;
  /* border: none !important; */
}






.scoreSwiper .swiper-slide {
  height: auto;
  /* display: flex; */
}

.myCardSlider .swiper-slide {
  height: auto;
  /* display: flex; */
}


#js-vector-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-contact-form {
  /* max-width: 500px; */
  margin: auto;
}

/* Labels */
.about-contact-form label {
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
}

.about-contact-form input,
.about-contact-form textarea {
  /* width: 100%; */
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--brand);
  /* background: #111; */
  color: #fff !important;
  transition: 0.3s ease;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);

}

/* Inputs + textarea */
.dark .about-contact-form input,
.dark .about-contact-form textarea {
  /* width: 100%; */
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  /* background: #111; */
  color: #fff;
  transition: 0.3s ease;
}

/* Focus effect */
.about-contact-form input:focus,
.about-contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(253, 184, 11, 0.2);
  outline: none;
}

/* Placeholder */
.about-contact-form ::placeholder {
  color: #aaa;
}

/* Button */
.about-contact-form input[type="submit"] {
  background: var(--brand);
  color: #000;
  /* font-weight: 600; */
  border: none;
  cursor: pointer;
  /* width: 100%; */
  display: block;
  font-size: 16px;
}

/* .about-contact-form input[type="submit"]:hover {
  background: #e0a800;
} */

/* Spacing between fields */
.about-contact-form p {
  margin-bottom: 16px;
}

.about-contact-form form>p:last-of-type {
  height: 44px;
}

.myCardSlider-about-page .swiper-wrapper {
  align-items: stretch;
}

.myCardSlider-about-page .swiper-slide {
  height: auto;
  display: flex;
}

.myCardSlider-about-page .card {
  height: 100%;
  width: 100%;
}


.icon-text {
  color: #fff;
  font-size: 16px;
}

.icon-border {
  display: inline-block;
  padding: 1.5px;
  /* border thickness */
  border-radius: 50%;
  background: linear-gradient(280deg, rgba(255, 255, 255, 0.05) 0%, #ffffff 50%, rgba(255, 255, 255, 0.05) 100%);
  transition: transform 0.3s ease;
}

.icon-border:hover {
  transform: translateY(-20%);
}

.icon-inner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #323232e3;
  box-shadow: 0px 4px 4px 0px #FFFFFF1A inset;

}



.post-thumbnail,
.entry-content .wp-audio-shortcode,
.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),
*[class*=inner-container]>*:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),
.default-max-width {
  max-width: var(--responsive--aligndefault-width);
  margin-left: 0px !important;
  margin-right: auto;
}


/* ------------------------------
   Mega banner (Swiper) arrows
-------------------------------- */
.bannerSwiper .banner-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
  z-index: 30;
}

.bannerSwiper .banner-nav-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;

  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #0b0b0b;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);

  transition: transform 180ms ease, background-color 180ms ease,
    box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.dark .bannerSwiper .banner-nav-btn {
  background: rgba(0, 0, 0, 0.26);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.bannerSwiper .banner-nav-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: #be00fb;
  /* background: conic-gradient(from 180deg,
      rgba(253, 184, 11, 0.95),
      rgba(255, 255, 255, 0) 40%,
      rgba(253, 184, 11, 0.9) 75%,
      rgba(255, 255, 255, 0)); */
  filter: blur(12px);
  opacity: 0.35;
  z-index: -1;
  transition: opacity 180ms ease;
}

.bannerSwiper .banner-nav-btn i {
  font-size: 18px;
}

.bannerSwiper .banner-nav-btn:hover {
  transform: translateY(-1px) scale(1.03);
  /* background: #be00fb; */
  /* background: rgba(253, 184, 11, 0.95); */
  border-color: #be00fb;
  /* border-color: rgba(253, 184, 11, 0.9); */
  /* color: #ffffff; */
  color: #000000;
  box-shadow: 0 18px 40px rgba(245, 11, 253, 0.18), 0 16px 28px rgba(0, 0, 0, 0.25);
}

.bannerSwiper .banner-nav-btn:hover::before {
  opacity: 0.55;
}

.bannerSwiper .banner-nav-btn:active {
  transform: scale(0.98);
}

.bannerSwiper .banner-nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 184, 11, 0.55), 0 14px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
  .bannerSwiper .banner-nav {
    padding: 0 10px;
  }

  .bannerSwiper .banner-nav-btn {
    width: 42px;
    height: 42px;
  }

  .bannerSwiper .banner-nav-btn i {
    font-size: 16px;
  }
}


input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--brand) !important;
  background: var(--global--color-white);
}


input[type=checkbox]:after {

  border: none !important;

}


.wp-block-table thead {
  border-bottom: 1px solid !important;
}


/* Accordion Item */
.wp-block-accordion-item {
  border: 1px solid #ccc;
  border-bottom: none;
}

/* Last item border fix */
.wp-block-accordion-item:last-child {
  border-bottom: 1px solid #ccc;
}

/* Heading button */
.wp-block-accordion-heading__toggle {
  width: 100%;
  padding: 16px 20px;
  /* background: #f3f3f3; */
  /* color: #111; */
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

/* Icon */
.wp-block-accordion-heading__toggle-icon {
  font-size: 18px;
  transition: all 0.3s ease;
}


.wp-block-accordion-heading__toggle:hover {
  background: #000;
  color: var(--brand);
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-icon {
  color: var(--brand);
}


.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle {
  background: #000;
  color: var(--brand);
}

.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon {
  color: var(--brand);
}

/* Panel */
.wp-block-accordion-panel {
  padding: 16px 20px;
  background: #fff;
  color: #333;
  border: none;
}

/* Smooth open */
.wp-block-accordion-panel[style] {
  transition: all 0.3s ease;
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none !important;
}


/* .wp-block-columns .wp-block-column>*{
  margin: 0px !important;
} */

.wp-block-quote {
  margin: 0 0 10px !important;
  font-weight: 400;
}


.custom-breadcrumb-margin-bottom {
  margin-bottom: 1.5rem;
}

@media (max-width:991px) {
  .custom-breadcrumb-margin-bottom {
    margin-bottom: 1rem;
  }
}

@media (max-width:500px) {
  .custom-breadcrumb-margin-bottom {
    margin-bottom: 0.3rem;
  }
}



#single-session-filter option {
  background: #fff;
  color: #222;
  padding: 10px;
}

.dark #single-session-filter option {
  background: #323232;
  color: #fff;
}