body {
  font-family: "Inter", "Arial", sans-serif;
  width: 100%;
  height: 100%;
  color: #1c1a0d;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .container {
    width: calc(100% - 40px);
    max-width: 100%;
  }
}

p {
  font-weight: 400;
}

header {
  width: 100%;
  height: 70px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
}
header .container {
  display: flex;
  align-items: center;
  gap: 43px;
  padding: 0;
}
@media (max-width: 1023px) {
  header .container {
    justify-content: space-between;
  }
}
header .logo img {
  height: 39px;
  object-fit: contain;
}
@media (max-width: 1023px) {
  header .logo img {
    height: 22px;
  }
}
header .nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  header .nav-wrap {
    display: none;
  }
  header .nav-wrap.show {
    position: absolute;
    right: 0;
    top: 70px;
    width: fit-content;
    border-radius: 0px 0px 15px 15px;
    background: #292929;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
header .nav-wrap li {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  header .nav-wrap li {
    color: #fff;
    min-height: 40px;
  }
}
header .nav-wrap li.active {
  color: #eeae0e;
}
header .nav-wrap li.active img {
  filter: brightness(1.5) sepia(1) saturate(5) hue-rotate(10deg);
}
header .sign-btn {
  display: flex;
  min-width: 145px;
  height: 35px;
  padding: 0 15px;
  gap: 10px;
  border-radius: 100px;
  background: linear-gradient(90deg, #eeae0e 0%, #ffdf3f 50%, #eeae0e 100%);
  font-size: 18px;
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  header .sign-btn {
    display: none;
  }
}
header .hamburger {
  display: none;
}
@media (max-width: 1023px) {
  header .hamburger {
    display: flex;
  }
  header .hamburger img {
    width: 40px;
    height: 40px;
  }
}

.banner {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}
@media (max-width: 1023px) {
  .banner {
    min-height: 200px;
  }
}
.banner.all {
  background: url(../img/home-banner.png) no-repeat top center/cover;
}
@media (max-width: 1023px) {
  .banner.all {
    background: url(../img/home-banner-m.png) no-repeat top center/cover;
  }
}
.banner.cricket {
  background: url(../img/cricket-banner.png) no-repeat top center/cover;
}
@media (max-width: 1023px) {
  .banner.cricket {
    background: url(../img/cricket-banner-m.png) no-repeat top center/cover;
  }
}
.banner.football {
  background: url(../img/footerball-banner.png) no-repeat top center/cover;
}
@media (max-width: 1023px) {
  .banner.football {
    background: url(../img/footerball-banner-m.png) no-repeat top center/cover;
  }
}
.banner.basketball {
  background: url(../img/basketball-banner.png) no-repeat top center/cover;
}
@media (max-width: 1023px) {
  .banner.basketball {
    background: url(../img/basketball-banner-m.png) no-repeat top center/cover;
  }
}
.banner.tennis {
  background: url(../img/tennis-banner.png) no-repeat top center/cover;
}
@media (max-width: 1023px) {
  .banner.tennis {
    background: url(../img/tennis-banner-m.png) no-repeat top center/cover;
  }
}
.banner.esports {
  background: url(../img/esports-banner.png) no-repeat top center/cover;
}
@media (max-width: 1023px) {
  .banner.esports {
    background: url(../img/esports-banner-m.png) no-repeat top center/cover;
  }
}
.banner .banner-title {
  max-width: 750px;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1023px) {
  .banner .banner-title {
    max-width: calc(100% - 40px);
    font-size: 24px;
  }
}
.banner .banner-subtitle {
  max-width: 750px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
@media (max-width: 1023px) {
  .banner .banner-subtitle {
    max-width: calc(100% - 40px);
    font-size: 14px;
  }
}

main {
  margin: 50px auto;
}
@media (max-width: 1023px) {
  main {
    margin: 30px auto;
  }
}

footer {
  display: flex;
  flex-direction: column;
}
footer .footer-top {
  background: #ececec;
  padding: 30px 0;
  color: #606060;
  font-weight: 400;
}
@media (max-width: 1023px) {
  footer .footer-top {
    padding: 20px 0;
  }
}
footer .footer-top .container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
}
@media (max-width: 1023px) {
  footer .footer-top .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .footer-top .container img {
  height: 41px;
}
@media (max-width: 1023px) {
  footer .footer-top .container img {
    height: 26px;
  }
}
footer .footer-top .container p {
  padding-left: 20px;
  border-left: 1px solid #606060;
  margin: 0;
}
@media (max-width: 1023px) {
  footer .footer-top .container p {
    border-left: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 12px;
    padding: 0;
  }
  footer .footer-top .container p::before {
    content: "";
    width: 41px;
    height: 1px;
    background: #606060;
  }
}
footer .footer-bottom {
  background: #282828;
  padding: 15px 0;
  font-weight: 400;
  color: #fff;
}
footer .footer-bottom .container {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  footer .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
footer .footer-bottom .container .social-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-bottom .container .social-group img {
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
}

.breadcrumb {
  width: 100%;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .breadcrumb {
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 14px;
  }
}
.breadcrumb li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.breadcrumb li + li:before {
  content: " > ";
}
.breadcrumb a,
.breadcrumb a:visited {
  color: #282828;
  text-decoration: none;
}

.matches {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  gap: 40px;
}
@media (max-width: 1023px) {
  .matches {
    width: calc(100% - 40px);
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .matches {
    padding: 15px 0;
    gap: 15px;
    flex-direction: column;
  }
}
.matches .match-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.matches .match-container .matchList {
  gap: 10px;
}
.matches .match-container .pagination {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #212529;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .matches .match-container .pagination {
    justify-content: space-between;
  }
}
.matches .match-container .pagination span {
  padding: 0;
}
.matches .matchCategory {
  flex: 0 0 180px;
}
@media (max-width: 1023px) {
  .matches .matchCategory {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: auto hidden;
  }
}
.matches .matchCategory .matchListCategory {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .matches .matchCategory .matchListCategory {
    flex-direction: row;
    gap: 10px;
  }
}
.matches .matchCategory .matchListCategory li {
  min-height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}
@media (max-width: 1023px) {
  .matches .matchCategory .matchListCategory li {
    min-height: 40px;
    padding: 0 15px;
  }
}
.matches .matchCategory .matchListCategory li img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(94%) saturate(528%) hue-rotate(97deg) brightness(92%) contrast(97%);
  margin: 0;
}
@media (max-width: 1023px) {
  .matches .matchCategory .matchListCategory li img {
    width: 19px;
    object-fit: contain;
  }
}
.matches .matchCategory .matchListCategory li.active, .matches .matchCategory .matchListCategory li:hover {
  background: #bfdcd0;
  color: #1c1a0d;
}

.float-group {
  position: fixed;
  right: 1%;
  top: 65%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
}
@media (max-width: 1023px) {
  .float-group {
    right: 7px;
  }
}
.float-group #arrowTop {
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}
.float-group img {
  width: 70px;
  height: 70px;
}
@media (max-width: 1023px) {
  .float-group img {
    width: 60px;
    height: 60px;
  }
}

.live-wrap .container {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.live-wrap .btn-back {
  display: none;
}
.live-wrap .info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.live-wrap .info-wrapper h1 {
  color: #2f2f2f;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1023px) {
  .live-wrap .info-wrapper h1 {
    font-size: 20px;
  }
}
.live-wrap .info-wrapper .game-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.live-wrap .info-wrapper .game-wrapper .game-item {
  gap: 5px;
  border-radius: 50px;
  background: #ffbd3c;
  height: 35px;
  padding: 0 20px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .live-wrap .info-wrapper .game-wrapper .game-item {
    font-size: 12px;
  }
}
.live-wrap .video-container {
  max-width: 100%;
}

#root {
  height: fit-content;
}

.info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-wrapper h3 {
  color: #007748;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-wrapper .info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-wrapper .info-item {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  background: #ececec;
  height: 64px;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
}

.info-wrapper .info-item .title {
  color: #1c1a0d;
  font-size: 18px;
  font-weight: 600;
}