.stat_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat_top_list_wrap {
  background-color: #ff4b44;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  padding: 16px;
}

.stat_top_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat_top_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat_top_item_value {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
}

.stat_top_item_label {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #00001b;
  text-transform: uppercase;
}

.stat_bottom_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat_bottom_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #eaeaea;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.stat_bottom_item:hover {
  box-shadow: 0 0 25px rgba(0, 0, 27, 0.5);
}

.stat_bottom_item_title_wrap {
  background-color: #00001b;
  padding: 16px;
  width: 100%;
}

.stat_bottom_item_title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}

.stat_bottom_item_circle_wrapper {
  padding: 16px;
}

.stat_bottom_item_circle_wrap {
  width: 90px;
  height: 90px;
  position: relative;
}

.stat_bottom_item_circle_svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat_bottom_item_circle_bg {
  fill: none;
  stroke: #adadb6;
  stroke-width: 5;
}

.stat_bottom_item_circle_progress {
  fill: none;
  stroke: #00001b;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}

.stat_bottom_item_circle_value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  color: #00001b;
}

.team_position_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team_position_item_tabs {
  border: 1px solid #eaeaea;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.team_position_item_tabs:hover {
  box-shadow: 0 0 25px rgba(0, 0, 27, 0.5);
}

.team_position_item {
  border: 1px solid rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  overflow: hidden;
}

.team_position_link {
  color: #adadb6;
  transition: all 0.3s ease;
}

.team_position_link:hover {
  color: #ffffff;
}

.team_position_top_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #00001b;
  padding: 16px;
}

.team_position_title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.team_position_subtitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.team_position_text {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.team_position_link_img_wrap {
  width: 100%;
  overflow: hidden;
}

.team_position_link_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.team_position_link:hover .team_position_link_img {
  transform: scale(1.04);
}

.trophies_item {
  border: 1px solid rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  overflow: hidden;
}

.trophies_link {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #00001b;
  gap: 16px;
  height: 100%;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.trophies_link:hover {
  color: #ff4b44;
}

.trophies_link_img {
  aspect-ratio: 2/1;
  width: 100%;
  overflow: hidden;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.trophies_link:hover .trophies_link_img {
  transform: scale(1.04);
}

.trophies_link_info_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.trophies_link_info_title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.trophies_link_info_text {
  font-size: 12px;
  font-weight: 500;
  color: #00001b;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .stat_top_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat_bottom_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .team_position_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .stat_top_item_value {
    font-size: 20px;
  }

  .stat_top_item_label {
    font-size: 14px;
  }

  .stat_bottom_item_title {
    font-size: 18px;
  }

  .stat_bottom_item_circle_wrap {
    width: 120px;
    height: 120px;
  }

  .stat_bottom_item_circle_value {
    font-size: 20px;
  }

  .team_position_title {
    font-size: 36px;
  }

  .team_position_subtitle {
    font-size: 18px;
  }

  .team_position_text {
    font-size: 14px;
  }

  .trophies_link_info_title {
    font-size: 18px;
  }

  .trophies_link_info_text {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .stat_wrapper {
    gap: 24px;
  }

  .stat_top_list_wrap {
    padding: 24px;
  }

  .stat_top_list {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .stat_bottom_list {
    gap: 24px;
  }

  .stat_bottom_item {
    gap: 24px;
  }

  .stat_bottom_item_title_wrap {
    padding: 24px;
  }

  .stat_bottom_item_circle_wrapper {
    padding: 24px;
  }

  .team_position_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .team_position_top_wrapper {
    gap: 16px;
    padding: 24px;
  }

  .trophies_link {
    padding: 24px 0;
  }
}

@media screen and (min-width: 1440px) {
  .stat_top_item_value {
    font-size: 22px;
  }

  .stat_top_item_label {
    font-size: 16px;
  }

  .stat_bottom_item_title {
    font-size: 20px;
  }

  .stat_bottom_item_circle_wrap {
    width: 150px;
    height: 150px;
  }

  .stat_bottom_item_circle_value {
    font-size: 22px;
  }

  .team_position_title {
    font-size: 40px;
  }

  .team_position_subtitle {
    font-size: 20px;
  }

  .team_position_text {
    font-size: 16px;
  }

  .trophies_link_info_title {
    font-size: 20px;
  }

  .trophies_link_info_text {
    font-size: 16px;
  }
}
