
  .match-list-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 8px 0;
  }
  .match-list-container .match-item {
    background-color: var(--foreground-color);
    width: calc((100% / 2) - 8px);
    height: 100%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .match-list-container .match-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  bottom: -20px;
  left: 0;
  background-image: url("../img/football-bg.png");
  background-position: center center;
  background-size: 80%;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: -1;
}


  .match-list-container .match-item .match-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 16px;
}

  .match-list-container .match-item .match-link .match-header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

  .match-list-container .match-item .match-link .match-header-box .match-league {
  display: flex;
  align-items: center;
}

  .match-list-container .match-item .match-link .match-header-box .match-league .league-logo {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
}

  .match-list-container .match-item .match-link .match-header-box .match-league .league-logo img {
  height: 16px;
  width: 16px;
  object-fit: contain;
}

  .match-list-container .match-item .match-link .match-header-box .match-league .league-name {
  font-size: 12px;
  color: var(--text-color-t3);
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'oswald', sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 136px;
}

  .match-list-container .match-item .match-link .match-header-box .match-date span {
  color: var(--text-color-t3);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  border-radius: var(--border-radius-md);
  padding: 4px 8px;
  background-color: var(--foreground-color-t1);
  font-family: 'oswald', sans-serif;
}

.match-list-container .match-item .match-link  .match-main-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100px;
}

.match-list-container .match-item .match-link  .match-main-box .team-info {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
}

.match-list-container .match-item .match-link  .match-main-box .team-info .team-logo {
  width: 36px;
  height: 36px;

  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
}

.match-list-container .match-item .match-link  .match-main-box .team-info .team-logo img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.match-list-container .match-item .match-link  .match-main-box .team-info .team-name {
  font-size: 13px;
  color: var(--text-color-t2);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 132px;
  font-family: "Roboto";
  text-transform: capitalize;
}

.match-list-container .match-item .match-link  .match-main-box .team-info.home {
  flex-direction: row-reverse;
}

.match-list-container .match-item .match-link  .match-main-box .team-info.home .team-name {
  text-align: right;
}

.match-list-container .match-item .match-link  .match-main-box .match-status {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.match-list-container .match-item .match-link  .match-main-box .match-status .match-score {
  font-size: 18px;
  color: var(--text-color-t1);
  font-weight: 500;
  font-family: "anton";
}


.match-list-container .match-item .match-link  .match-main-box .match-status .state {
    background-color: var(--primary-color);
    box-shadow: 0 0 2px #23ee884d, 0 -1px #1dca6a inset;
    font-size: 16px;
    width: 70px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2px 0;
    min-height: 24px;
    font-family: 'oswald', sans-serif;
    color: var(--primary-color);
  }

.match-list-container .match-item .match-link  .match-main-box .match-status .state .match-time {
    position: relative;
    color: #fff;
    font-family: "Time";
    font-size: 18px;
    font-weight: 500;
  }

.match-list-container .match-item .match-link  .match-main-box .match-status .state .stage-text {
    color: #fff;
    font-size: 10px;
    font-family: "Roboto";
    text-transform: uppercase;
    font-weight: 500;
  }


.match-list-container .match-item .match-link  .match-bottom-box {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid var(--border-color);
}

.match-list-container .match-item .match-link  .match-bottom-box .match-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.match-list-container .match-item .match-link  .match-bottom-box .match-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  height: 30px;
  font-size: 12px;
  color: var(--text-color-t3);
  font-family: "Roboto";
}

.match-list-container .match-item .match-link  .match-bottom-box .match-stats span img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
   .match-list-container {
    flex-direction: column;
    gap: 8px;
  }

  .match-list-container .match-item {
    width: 100%;
  }

  .match-list-container .match-item .match-link{
    padding: 0 8px;
  }
 .match-list-container .match-item .match-link .match-main-box .team-info{
    flex-direction: column !important;

    width: 100% !important;
  }
  .match-list-container .match-item .match-link .match-main-box .team-info .team-name
  {
    width: 100% !important;
    text-align: center !important;
    max-width: 100px !important;
  }
}