/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Kanit", sans-serif;
  color: #ffff;
  background-color: #000000;
}

a {
  color: #000;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Kanit", sans-serif;
}

.kanit-thin {
  font-family: "Kanit", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.kanit-extralight {
  font-family: "Kanit", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.kanit-light {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.kanit-regular {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kanit-medium {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.kanit-semibold {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.kanit-bold {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.kanit-extrabold {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.kanit-black {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.kanit-thin-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.kanit-extralight-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.kanit-light-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.kanit-regular-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.kanit-medium-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.kanit-semibold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.kanit-bold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.kanit-extrabold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.kanit-black-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.text-yellow {
  color: #fcde70;
}

/*--------------------------------------------------------------
# Download Page
--------------------------------------------------------------*/
/* --- Main Container --- */
.download-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  width: 100%;
  max-width: 800px;
  /* background: linear-gradient(90deg, #FFFFFF 0%, #C11D1D 100%); */
  background: linear-gradient(90deg, #1f6881 0%, #5fd6fd 100%);
  margin: 0 auto;
  box-shadow: 0px 4px 10px 0px rgba(0, 34.399130434782606, 44.19999999999999, 0.56) inset;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 20px 0px 20px 0px;
  border-radius: 25px 25px 25px 25px;
}

.ads-section {
  margin: 80px auto;
  text-align: center;
}

/* --- Phone Mockup Section (Left Column) --- */
.phone-mockup {
  flex-basis: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s ease;
}

.phone-mockup img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* --- Content Section (Right Column) --- */
.content-section {
  flex-basis: 45%;
  text-align: left;
  color: #000000;
}

.header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.flag {
  font-size: 2rem;
  line-height: 1;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
}

.sub-heading {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  opacity: 0.9;
}

.main-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 2.5rem 0;
}

/* --- Download Buttons --- */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  min-width: 280px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.btn-download:hover {
  background-color: #222222;
  transform: translateY(-3px);
  border-color: #ffffff;
}

.btn-download i {
  font-size: 2.5rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-text strong {
  font-size: 1.25rem;
  font-weight: 600;
}

.btn-text span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .download-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .content-section {
    text-align: center;
    order: -1;
    /* Move content above the phone on mobile */
  }

  .header {
    justify-content: center;
  }

  .main-title {
    font-size: 3rem;
  }

  .phone-mockup img {
    max-width: 60%;
    transform: rotate(0deg);
  }

  .download-buttons {
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/
h2.head_day {
  color: #fcde70;
  border-bottom: 4px solid #fcde70;
  border-top: 4px solid #fcde70;
  margin: 20px auto;
  max-width: 100%;
  font-family: "Kanit";
  font-size: 25px;
  letter-spacing: 1px;
  line-height: 45px;
  text-align: center;
}

/* --- Flexbox Layout Styles --- */
.flex-main-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-sidebar {
  flex: 0 0 280px;
  max-width: 280px;
}

.flex-main-content {
  flex: 1 1 0;
  min-width: 0;
}

/* --- MODIFIED: Controls Bar (Filter/Search/Date) --- */
/* This section is updated to match your screenshots */
.controls-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 12px 14px;
  border-radius: 5px;
  gap: 1rem;
}

.controls-bar .filters .btn-group {
  display: flex;
  gap: 10px;
}

.controls-bar .search-and-date {
  display: flex;
  align-items: center;
  gap: 2rem;
  /* Space between search and date on desktop */
}

.search-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- End of Controls Bar CSS --- */

/* Flexbox for Match Rows */
.flex-match-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #151515;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.flex-match-row:last-child {
  border-bottom: none;
}

.match-part-time {
  flex: 0 0 9.33%;
  text-align: center;
  font-size: 12px;
}

.match-part-h-team {
  flex: 0 0 39.67%;
  text-align: right;
  padding: 0 0.5rem;
}

.match-part-score {
  flex: 0 0 8.33%;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}

.match-part-a-team {
  flex: 0 0 33.33%;
  text-align: left;
  padding: 0 0.5rem;
}

.match-part-status {
  flex: 0 0 9.33%;
  text-align: center;
  font-size: 12px;
}

.promo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: #0f0f1b;
  background-image: linear-gradient(90deg,
      #3389a6 35%,
      #944049 65%,
      #c11e1e 100%);
}

.phone-image {
  max-width: 300px;
  /* Adjust size as needed */
  width: 80%;
  /* Responsive width */
  height: auto;
  margin-bottom: 2.5rem;
  /* Space between image and text */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.promo-text {
  font-family: "poppins", sans-serif;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .phone-image {
    max-width: 250px;
  }

  .promo-text {
    font-size: 1.25rem;
  }
}



/* --- Left Sidebar --- */
.league-menu-container {
  font-family: "poppins", sans-serif;
  background-color: #151515;
  border-right: 1px solid #353535;
  height: 360px;
  font-size: 12px;
  text-transform: uppercase;
  overflow: scroll;
}

.list-group-item {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  border-radius: 0.375rem;
}

.list-group-item:hover {
  background-color: #353535;
}

.list-group-item.active-league {
  background: linear-gradient(to right, #c11d1d, #151515);
}

.league-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  color: black;
  font-size: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  text-align: center;
}

/* --- Right Main Content --- */
.filter-btn {
  background-color: #353535;
  color: white;
  border: none;
  border-radius: 5px !important;
  min-width: 60px;
}

.filter-btn.active,
.filter-btn:hover {
  background-image: linear-gradient(0deg, #5b0e0e 0%, #c11d1d 100%);
  color: #fff;
}

.search-box {
  background-color: #000;
  color: white;
}

.search-box::placeholder {
  color: #888;
}

.search-box:focus {
  background-color: #333;
  border-color: #fff;
  box-shadow: none;
  color: white;
}

.date-navigator {
  color: #e5e5e5;
}

.date-navigator .fas {
  cursor: pointer;
}

.date-navigator .font-weight-bold {
  color: #c11d1d;
}

/* Style date text */

.matches-list-header {
  background-color: #353535;
  border-radius: 0.375rem;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.matches-list {
  background-color: #151515;
}

.live-indicator {
  color: #c11d1d;
  font-size: 12px;
}

.live-icon {
  width: 8px;
  height: 8px;
  background-color: #c11d1d;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

.btn-group {
  gap: 10px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 29, 29, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(193, 29, 29, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(193, 29, 29, 0);
  }
}

/*--------------------------------------------------------------
# Bootstrap Modal
--------------------------------------------------------------*/
.modal-content {
  background-color: transparent;
}

#popupAds .modal-dialog {
  max-width: 600px;
  /* Or use a percentage, e.g., 90% */
  width: auto;
}

.modal .close {
  position: absolute;
  height: 26px;
  width: 26px;
  left: auto;
  right: -9px;
  bottom: auto;
  top: -32px;
  padding: 0px;
  color: #ffffff;
  font-family: Arial;
  font-weight: 400;
  font-size: 15px;
  line-height: 8px;
  border: 2px solid #ffffff;
  border-radius: 28px;
  box-shadow: 0px 0px 15px 1px rgba(2, 2, 2, 0.75);
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.23);
  background-color: rgba(0, 0, 0, 1);
}

/*--------------------------------------------------------------
# Social Media Icons
--------------------------------------------------------------*/
/* --- Main Container --- */
.social-container {
  text-align: center;
}

/* --- Titles --- */
.social-container .subtitle {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0;
}

.social-container .title {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin: 5px 0 30px 0;
  letter-spacing: 1px;
}

/* --- Wrapper for the Icons --- */
.social-container .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* --- Individual Icon Link Styling --- */
.social-container .social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-container .social-link i {
  font-size: 16px;
  color: #fff;
}

/* --- Hover Effect --- */
.social-container .social-link:hover {
  transform: translateY(-5px) scale(1.05);
  /* Lifts the icon up slightly and enlarges it */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  /* Deeper shadow on hover */
}

/* --- Specific Colors for Each Social Network --- */
.social-container .facebook {
  background-color: #3b5998;
}

.social-container .youtube {
  background-color: #cd201f;
}

.social-container .telegram {
  background-color: #2ca5e0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 600px) {
  .social-container .title {
    font-size: 2rem;
  }

  .social-container .social-link {
    width: 70px;
    height: 70px;
    border-radius: 15px;
  }

  .social-container .social-link i {
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #000;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  position: absolute;
  top: 6px;
  left: 13px;
  color: #fff;
  font-size: 18px;
}

.back-to-top:hover {
  color: #c11d1d;
  background: unset;
  border: 1px dotted #c11d1d;
  transition: all 0.2s ease-in-out;
}

.back-to-top:hover i {
  color: #c11d1d;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 76px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 5px 0px 10px 0px;
  /* background-image: linear-gradient(180deg, #F0F0F0 0%, #C11D1D 100%); */
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #7a6960;
  text-decoration: none;
}

#header .logo {
  margin-right: 30px;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 45px;
}

#main {
  margin-top: 20px;
}

.lang-item img {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  transform: scale(0.85);
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
  position: absolute;
  top: 1.5px;
  left: 1.5px;
}

.current-lang .img-wrap {
  border: 1px solid #fff;
  position: relative;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.lang-item .img-wrap {
  position: relative;
  width: 25px;
  height: 25px;
}

.lang-item-en a {
  padding-right: 0 !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  padding: 10px 15px;
  transition: 0.3s;
  text-align: center;
  color: #7d7d7d;
  font-family: "Inria Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.nav-menu li:nth-last-child(-n + 2) a:hover {
  background: transparent;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #c11d1d;
  background: linear-gradient(180deg, rgba(91, 14, 14, 0) 0%, #c11d1d 100%);
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #c11d1d;
  color: #c11d1d;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: transparent;
  color: #fff;
  border: 1px dotted #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #3c1300;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #c11d1d;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #000000;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #fff;
  background-color: #c11d1d;
  text-decoration: none;
}

.mobile-nav .get-started a {
  color: #fff;
}

.mobile-nav .get-started a:hover {
  background: #c11d1d;
  color: #fff;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 22px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.admin-bar .mobile-nav-toggle {
  top: 50px !important;
}

.mobile-nav-toggle i {
  color: #c11d1d;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: #000;
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90.5vh;
  background: #000;
  margin: 72px 0 -72px 0;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
  color: #000000;
  letter-spacing: 2px;
}

#hero h2 {
  color: #a08f86;
  margin-bottom: 50px;
  font-size: 24px;
  text-align: right;
  letter-spacing: 3px;
  line-height: 30px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #c11d1d;
}

#hero .btn-get-started:hover {
  background: #c11d1d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    height: calc(100vh - 220px);
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}



@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}

/* .section-bg {
  background-color: #fef8f5;
} */
.section-bg {
  background-color: #fafafa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 15px;
  color: #c11d1d;
}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
}

.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #c11d1d;
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px;
  background-color: #c11d1d;
  min-height: 40px;
  margin: 0px 15px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }

  #hero .btn-get-started {
    margin: 10px 0px 0px 0px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  margin-top: 20px;
  color: #ffffff;
  font-size: 14px;
  background-color: #353535;
  padding: 12px 0px;
}

#footer a {
  color: #c11d1d;
  text-decoration: none;
}

#footer p {
  margin-bottom: 0px;
}


@media (max-width: 321px) {
  #hero .btn-get-started {
    margin: 20px 0 0 0;
  }

  .about p {
    text-align: justify;
    margin-bottom: 5px;
  }

  .faq .faq-list {
    margin: 0;
  }

  .mobile-nav-toggle {
    right: 0px;
  }

  #header {
    height: 70px;
  }

  #header .logo img {
    max-height: 60px;
  }

  .admin-bar .mobile-nav-toggle {
    top: 40px !important;
  }

  .mobile-nav-toggle {
    top: 8px !important;
  }
}

/*--------------------------------------------------------------
# Installation Page
--------------------------------------------------------------*/
/* Custom styles for the installation guide */
.guide-container {
  background-color: #1c1c1e;
  border-radius: 1rem;
  padding: 2rem 3rem;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.guide-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

/* Tab styling */
.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  border: 2px solid #444;
  background-color: transparent;
  color: #fff;
  border-radius: 0.5rem;
  margin-left: 0.5rem;
  font-weight: 600;
}

.nav-tabs .nav-link.active {
  background-color: #c11d1d;
  border-color: #c11d1d;
  color: #fff;
}

.nav-tabs .nav-link:hover {
  border-color: #c11d1d;
}

/* Grid for installation steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.step-item {
  text-align: left;
}

.step-item p {
  color: #fff;
}

.step-item .step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  min-height: 3.5rem;
  /* Set a minimum height for consistent alignment */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*--------------------------------------------------------------
# Download Page
--------------------------------------------------------------*/

.download-section {
  background-color: #151515;
  border-radius: 5px;
  padding: 2rem;
  overflow: hidden;
  /* To contain the image effect */
}

.phone-image {
  max-width: 200px;
  transform: scale(1.1) translateY(20px);
  /* Slightly scale and move image down */
}

.content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title {
  color: #fff;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}

.subtitle {
  color: #7d7d7d;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.subtitle .flag-icon {
  font-size: 1.75rem;
  display: inline-block;
  width: 36px;
}

/* Button Styles */
.btn-download {
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  border: none;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
  min-width: 305px;
  max-width: 100%;
  border-radius: 8px;
  background: linear-gradient(180deg, #c11d1d 0%, #5b0e0e 100%);
}

.btn-download:hover {
  background-color: #8c1b1b;
  color: white;
}

.btn-download .fab,
.btn-download .fas {
  font-size: 1.5rem;
  width: 24px;
  text-align: center;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Left-align buttons by default */
}

.installation-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.installation-link:hover {
  color: #bdbdbd;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .phone-image {
    display: none;
    /* Hide image on smaller screens */
  }

  .subtitle {
    justify-content: flex-start;
    /* Align subtitle to the left on mobile */
  }

  .button-group {
    align-items: flex-start;
    /* Keep buttons left-aligned on mobile */
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
}

.contact-title {
  font-family: Poppins;
  padding: 25px 0px;
  justify-content: space-between;
  background-color: #353535;
  text-align: center;
  font-size: 20px;
  margin: 0;
}

.card {
  background-color: #1c1c1e;
  border: none;
  border-radius: 5px;
}

.card-title {
  font-size: 1.5rem;
  /* 24px */
  font-weight: 700;
}

.card-subtitle {
  color: #8a8a8e !important;
  /* text-gray-400 */
}

.contact-block {
  line-height: 1.4;
}

.contact-info .label {
  font-size: 0.875rem;
  /* 14px */
  color: #8a8a8e;
}

.contact-info .value {
  font-weight: 600;
}

/* Custom Button Styles */
.contact-info .btn {
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn strong {
  font-weight: 700;
}

.btn-viber {
  background-color: #7360f2;
  color: white;
}

.btn-viber:hover {
  color: white;
  opacity: 0.9;
}

.btn-telegram {
  background-color: #2aabee;
  color: white;
}

.btn-telegram:hover {
  color: white;
  opacity: 0.9;
}

.btn-line {
  background-color: #06c755;
  color: white;
}

.btn-line:hover {
  color: white;
  opacity: 0.9;
}

.flag-icon {
  width: 24px;
  height: auto;
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .contact-block {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/

.search-text {
  color: #fff;
}

.table {
  margin-bottom: 0px;
  color: #fff;
}

.table td,
.table th .match-home,
.match-vs,
.match-away {
  border-top: none;
}

.match-list-body {
  color: #fff;
  background-color: #151515;
}

.match-teams-cell {
  display: flex;
  align-items: center;
  width: 100%;
}

.match-time-cell {
  width: 15%;
  vertical-align: middle;
}

.match-live-cell {
  width: 20%;
  vertical-align: middle;
}

.match-home,
.match-away {
  flex: 1;
}

.match-vs {
  width: 80px;
  flex-shrink: 0;
  text-align: center;
}

.match-home {
  text-align: left;
}

.match-away {
  text-align: right;
}

.live-badge {
  font-weight: bold;
  color: #dc3545;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}


/*--------------------------------------------------------------
# News Categories Page
--------------------------------------------------------------*/

/* Category Filters */
.category-nav .nav-link {
  color: #fff;
  background-color: #333;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
  /* Add margin for wrapping */
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.category-nav .nav-link:hover {
  background-color: #444;
}

.category-nav .nav-link.active {
  background-color: #c11d1d;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.see-more-link {
  color: #bdbdbd;
  font-weight: 500;
}

.see-more-link:hover {
  color: #fff;
  text-decoration: none;
}

/* Post Styles */
.post-card {
  background: none;
  border: none;
  color: #fff;
  margin-bottom: 2rem;
  /* Add space between cards */
  height: 100%;
  /* Make card fill its column height */
  display: flex;
  flex-direction: column;
}

.post-card-featured .post-image,
.post-card-featured .img-fluid {
  height: 450px;
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.post-card-featured .card-body {
  padding-left: 1.5rem;
  padding-right: 0;
}

.post-card .post-image,
.post-card .img-fluid {
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
  object-fit: cover;
}

.post-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  min-height: 210px;
  overflow: hidden;
}

.post-card .post-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.post-title a {
  color: inherit;
  text-decoration: none;
}

.post-title a:hover {
  color: #c11d1d;
  text-decoration: none;
}

.post-card .post-date {
  color: #8a8a8e;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.post-date li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-date a {
  color: inherit;
  text-decoration: none;
}

.post-date a:hover {
  color: #fff;
}

.post-date i {
  margin-right: 0.5rem;
}

.post-card .post-excerpt {
  color: #bdbdbd;
}

.btn-read-more {
  background-color: #c11d1d;
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.4rem 1rem;
  font-weight: 500;
  margin-top: auto;
  /* Push button to the bottom */
  align-self: flex-start;
  /* Ensure button doesn't stretch */
}

.btn-read-more:hover {
  background-color: #a01a1a;
  color: white;
}

/* Ad Section */
.ad-image {
  width: 100%;
  border-radius: 0.75rem;
}


/*--------------------------------------------------------------
*Media Queries for Responsive Design
--------------------------------------------------------------*/

@media (max-width: 575.98px) {
  .main-title {
    font-size: 2.5rem;
  }

  .btn-download {
    min-width: 310px;
  }

  .controls-bar .search-and-date {
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .search-wrapper {
    width: 100%;
    justify-content: center;
  }

  .guide-title {
    font-size: 1.4rem;
  }

  .step-item .step-title {
    margin-bottom: 0px;
    margin-top: 30px;
  }

  .step-item {
    text-align: center;
  }

  .step-grid {
    gap: 0rem;

  }

  #footer {
    margin-top: 45px;
  }

  .flex-sidebar {
    margin-top: 30px;
  }

  div.main {
    margin-top: 55px !important;
  }

}

@media (max-width: 767.98px) {

  #footer {
    padding: 15px 0;
  }

  .match-vs {
    display: none;
  }

  .match-home,
  .match-away {
    text-align: left;
    width: 100%;
  }

  .match-teams-cell {
    display: flex;
    flex-direction: column;
  }

  .flex-main-container {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
  }

  .match-part-score {
    display: none;
  }

  .flex-sidebar,
  .flex-main-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .controls-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .controls-bar .filters .btn-group {
    justify-content: space-between;
  }

  .controls-bar .filter-btn {
    flex-grow: 1;
  }

  .controls-bar .search-and-date {
    width: 100%;
    justify-content: space-between;
  }

  .contact-block {
    text-align: center;
  }

  .post-card-featured .card-body {
    padding: 1rem 0 0 0;
  }

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

  .guide-container {
    padding: 2rem 1.5rem;
  }

  .guide-header {
    justify-content: center;
  }

  .mobile-nav-toggle {
    top: 15px;
  }

  section#services {
    padding: 60px 0 35px 0;
  }

  .faq {
    padding: 35px 0;
  }

  .contact-block {
    text-align: left;
  }

  .contact-block .btn {
    min-width: 215px;
  }
}

/*--------------------------------------------------------------
# override bootstrap styles
--------------------------------------------------------------*/
.btn-danger {
  background-color: transparent;
}

.btn-danger:hover {
  background-color: transparent;
}

/* The main chat button container */
.chat-button {
  position: fixed;
  /* Stays in the same place even when scrolling */
  bottom: 70px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: #c11d1d;
  /* A nice blue color */
  border-radius: 50%;
  /* Makes it a perfect circle */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* Adds a subtle shadow */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  /* Smooth transitions for hover effect */
  z-index: 1000;
  /* Ensures it's on top of other content */
}

/* Hover effect: makes the button slightly larger and the shadow more prominent */
.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Styling for the SVG icon inside the button */
.chat-button svg {
  width: 32px;
  height: 32px;
  fill: white;
  /* Icon color */
}

/* A simple tooltip that appears on hover */
.chat-button::before {
  content: 'Chat with us!';
  position: absolute;
  right: 120%;
  /* Position to the left of the button */
  top: 50%;
  transform: translateY(-50%);
  background-color: #343a40;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  /* Hidden by default */
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  pointer-events: none;
  /* The tooltip should not be interactive */
}

/* Show the tooltip on hover */
.chat-button:hover::before {
  opacity: 1;
  visibility: visible;
}