:root {
  --pbmn-a: #4fea9f;
  --pbmn-a2: #22b877;
}

.pbgmn {
  width: 100%;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  background: linear-gradient(1deg, #25252e 30%, #292932 100%);
  box-shadow: 0 5px 10px #13151a4f;
}

.pbgmn_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.pbgmn_head_i {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pbgmn_head_i > i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--pbmn-a) 18%, transparent);
  color: var(--pbmn-a);
  font-size: 22px;
}

.pbgmn_head_text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pbgmn_title {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.pbgmn_subtitle {
  color: #8f92aa;
  font-size: 12.5px;
  line-height: 1.4;
}

.pbgmn_total {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
  background: rgba(0, 0, 0, .22);
}

.pbgmn_total_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .16);
  animation: pbgmn_pulse 2s ease-in-out infinite;
}

@keyframes pbgmn_pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

.pbgmn_total_value {
  color: #c9cbdb;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.pbgmn_total_value b {
  color: #fff;
  font-weight: 800;
}

.pbgmn_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  animation: pbgmn_fade .2s ease;
}

.pbgmn_grid--solo {
  grid-template-columns: minmax(0, 1fr);
}

.pbgmn_grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pbgmn_grid--duo .pbgmn_card {
  min-height: 300px;
}

.pbgmn_grid--duo .pbgmn_card_char {
  right: -2%;
  width: 72%;
}

.pbgmn_grid--duo .pbgmn_card_name {
  font-size: 18px;
}

.pbgmn_flat {
  animation: pbgmn_fade .2s ease;
}

.pbgmn_flat[hidden] {
  display: none;
}

.pbgmn_grid--solo .pbgmn_card {
  min-height: 220px;
}

.pbgmn_grid--solo .pbgmn_card_char {
  right: 4%;
  width: 30%;
  height: 92%;
}

.pbgmn_grid--solo .pbgmn_card_body {
  padding: 20px 24px;
}

.pbgmn_grid--solo .pbgmn_card_name {
  font-size: 22px;
  letter-spacing: .5px;
}

.pbgmn_grid--solo .pbgmn_card_desc {
  display: block;
  overflow: hidden;
  max-width: 62%;
  margin-top: 8px;
  color: #d6d8e6;
  font-size: 13px;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pbgmn_grid--solo .pbgmn_card_online {
  margin-top: 10px;
  font-size: 13px;
}

.pbgmn_card_online_servers {
  color: #a9acc0;
}

.pbgmn_card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 340px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background: linear-gradient(1deg, #393946a1 30%, #393946 100%);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pbgmn_card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--pbmn-a) 45%, transparent);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .85);
}

.pbgmn_card.is-active {
  border-color: var(--pbmn-a);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--pbmn-a) 55%, transparent);
}

.pbgmn_card_bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform .4s ease;
}

.pbgmn_card:hover .pbgmn_card_bg {
  transform: scale(1.06);
}

.pbgmn_card_scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(14, 14, 19, .35) 0%, rgba(14, 14, 19, .28) 40%, rgba(14, 14, 19, .92) 100%);
}

.pbgmn_card_char {
  position: absolute;
  right: -6%;
  bottom: 0;
  z-index: 3;
  width: 88%;
  height: 92%;
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .55));
  transition: transform .35s ease;
}

.pbgmn_card:hover .pbgmn_card_char {
  transform: translateY(-6px) scale(1.04);
}

.pbgmn_card_body {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  background: linear-gradient(180deg, rgba(14, 14, 19, 0) 0%, rgba(14, 14, 19, .55) 45%, rgba(14, 14, 19, .88) 100%);
}

.pbgmn_card_name {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .3px;
  text-overflow: ellipsis;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
  text-transform: uppercase;
  white-space: nowrap;
}

.pbgmn_card_online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: #d6d8e6;
  font-size: 12.5px;
  font-weight: 600;
}

.pbgmn_card_online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .16);
}

.pbgmn_card_online.is-empty i {
  background: #64748b;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, .16);
}

.pbgmn_card--empty {
  cursor: default;
  border-style: dashed;
  border-color: rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .015);
}

.pbgmn_card--empty:hover {
  transform: none;
  border-color: rgba(255, 255, 255, .09);
  box-shadow: none;
}

.pbgmn_card_empty_mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background: center/contain no-repeat url('../../img/server_pbg/none.svg');
  opacity: .25;
  transform: translate(-50%, -50%);
}

.pbgmn_card--skeleton {
  cursor: default;
  border-color: rgba(255, 255, 255, .05);
  background: linear-gradient(100deg, #393946 30%, #46465580 50%, #393946 70%);
  background-size: 220% 100%;
  animation: pbgmn_shimmer 1.4s ease-in-out infinite;
}

@keyframes pbgmn_shimmer {
  0% { background-position: 130% 0; }
  100% { background-position: -30% 0; }
}

.pbgmn_detail {
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background: linear-gradient(1deg, #393946a1 30%, #393946 100%);
  overflow: hidden;
  animation: pbgmn_fade .2s ease;
}

@keyframes pbgmn_fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.pbgmn_detail_hero {
  position: relative;
  min-height: 220px;
  padding: 62px 24px 24px;
  overflow: hidden;
  background-color: #25252e;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pbgmn_detail_hero_video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pbgmn_detail_hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 14, 19, .55) 0%, rgba(14, 14, 19, .35) 35%, rgba(14, 14, 19, .94) 100%);
}

.pbgmn_detail_hero_body {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.pbgmn_detail_name {
  margin: 0 0 8px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .4px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
  text-transform: uppercase;
}

.pbgmn_detail_desc {
  margin: 0;
  color: #c2c5d6;
  font-size: 13.5px;
  line-height: 1.6;
}

.pbgmn_detail_stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pbgmn_detail_chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(0, 0, 0, .38);
  color: #c9cbdb;
  font-size: 12px;
  font-weight: 600;
}

.pbgmn_detail_chip b {
  color: #fff;
  font-weight: 800;
}

.pbgmn_detail_chip i {
  color: var(--pbmn-a);
  font-size: 14px;
}

.pbgmn_detail_back {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.pbgmn_detail_back i {
  font-size: 15px;
}

.pbgmn_detail_back:hover {
  border-color: color-mix(in srgb, var(--pbmn-a) 45%, transparent);
  background: rgba(0, 0, 0, .7);
}

.pbgmn_maps {
  padding: 18px;
}

.pbgmn_map_group {
  margin-bottom: 20px;
}

.pbgmn_map_group:last-child {
  margin-bottom: 0;
}

.pbgmn_map_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pbgmn_map_name {
  flex: 0 0 auto;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.pbgmn_map_badge {
  flex: 0 0 auto;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .14);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
}

.pbgmn_map_line {
  flex: 1 1 auto;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, .1);
}

.pbgmn_map_count {
  flex: 0 0 auto;
  color: #8f92aa;
  font-size: 12px;
  font-weight: 600;
}

.pbgmn_servers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.pbgmn_srv {
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  background-color: #393946;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
}

.pbgmn_srv:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--pbmn-a) 50%, transparent);
}

.pbgmn_srv_scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 14, 19, .55) 0%, rgba(14, 14, 19, .72) 55%, rgba(14, 14, 19, .93) 100%);
}

.pbgmn_srv_body {
  position: relative;
  z-index: 2;
  padding: 13px 14px 15px;
}

.pbgmn_srv_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.pbgmn_srv_name {
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  white-space: nowrap;
}

.pbgmn_srv_actions {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.pbgmn_srv_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(0, 0, 0, .3);
  color: #b9bcd0;
  font-size: 15px;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.pbgmn_srv_btn:hover {
  border-color: color-mix(in srgb, var(--pbmn-a) 45%, transparent);
  background: color-mix(in srgb, var(--pbmn-a) 16%, transparent);
  color: #fff;
}

.pbgmn_srv_btn.is-done {
  border-color: rgba(34, 197, 94, .45);
  background: rgba(34, 197, 94, .16);
  color: #4ade80;
}

.pbgmn_srv_meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #d6d8e6;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.pbgmn_srv_map {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pbgmn_srv_players {
  flex: 0 0 auto;
  color: #c9cbdb;
}

.pbgmn_srv_bar {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}

.pbgmn_srv_bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  transition: width .4s ease;
}

.pbgmn_srv_bar.is-mid span {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.pbgmn_srv_bar.is-high span {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.pbgmn_servers--flat {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}

.pbgmn_servers--flat .pbgmn_srv {
  min-height: 132px;
}

.pbgmn_servers--flat .pbgmn_srv_body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 132px;
  padding: 15px 16px 16px;
}

.pbgmn_servers--flat .pbgmn_srv_name {
  font-size: 14.5px;
}

.pbgmn_servers--one {
  grid-template-columns: minmax(0, 1fr);
}

.pbgmn_servers--one .pbgmn_srv {
  min-height: 140px;
  background-position: center 38%;
}

.pbgmn_servers--one .pbgmn_srv_body {
  padding: 16px 20px 18px;
}

.pbgmn_servers--one .pbgmn_srv_name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .2px;
}

.pbgmn_servers--one .pbgmn_srv_top {
  margin-bottom: 10px;
}

.pbgmn_servers--one .pbgmn_srv_btn {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.pbgmn_servers--one .pbgmn_srv_meta {
  margin-bottom: 10px;
  font-size: 13px;
}

.pbgmn_servers--one .pbgmn_srv_bar {
  max-width: 320px;
}

@property --pbmn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes pbgmn_border_run {
  to {
    --pbmn-angle: 360deg;
  }
}

.pbgmn_srv::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--pbmn-angle),
      transparent 0deg,
      transparent 250deg,
      color-mix(in srgb, var(--pbmn-a) 55%, transparent) 310deg,
      var(--pbmn-a) 340deg,
      #fff 352deg,
      var(--pbmn-a) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.pbgmn_srv:hover::before {
  opacity: 1;
  animation: pbgmn_border_run 2.6s linear infinite;
}

.pbgmn_servers--one .pbgmn_srv::before {
  opacity: .7;
  animation: pbgmn_border_run 4s linear infinite;
}

.pbgmn_servers--one .pbgmn_srv:hover::before {
  opacity: 1;
  animation-duration: 2.2s;
}

@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .pbgmn_srv::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pbgmn_srv::before {
    animation: none;
  }
}

.pbgmn_copy_bubble {
  position: fixed;
  z-index: 9999;
  padding: 7px 13px;
  border: 1px solid color-mix(in srgb, var(--pbmn-a) 40%, transparent);
  border-radius: 9px;
  background: rgba(18, 20, 26, .96);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .8);
  color: #eaf6ef;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -4px);
  transition: opacity .22s ease, transform .22s ease;
}

.pbgmn_copy_bubble.is-visible {
  opacity: 1;
  transform: translate(-50%, -140%);
}

.pbgmn_copy_bubble.is-failed {
  border-color: rgba(239, 68, 68, .5);
  color: #fca5a5;
}

.pbgmn_srv_btn.is-done {
  border-color: color-mix(in srgb, var(--pbmn-a) 55%, transparent);
  background: color-mix(in srgb, var(--pbmn-a) 20%, transparent);
  color: var(--pbmn-a);
}

.pbgmn_srv_btn.is-failed {
  border-color: rgba(239, 68, 68, .5);
  background: rgba(239, 68, 68, .16);
  color: #fca5a5;
}

.pbgmn_empty_state {
  padding: 26px 18px;
  border: 1px dashed rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .015);
  color: #8f92aa;
  font-size: 13px;
  text-align: center;
}

.pbgmn_players_loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  color: #8f92aa;
  font-size: 26px;
}

.pbgmn-modal .modal-dialog {
  max-width: 880px;
  margin: 30px auto;
  padding: 0 16px;
}

.pbgmn-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  background: linear-gradient(1deg, #25252e 30%, #292932 100%);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .8);
}

.pbgmn_pl_close,
.pbgmn_pl_refresh {
  position: absolute;
  top: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
  color: #c9cbdb;
  font-size: 18px;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .3s ease;
}

.pbgmn_pl_close:hover,
.pbgmn_pl_refresh:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.pbgmn_pl_refresh {
  left: 16px;
}

.pbgmn_pl_refresh.is-spinning i {
  animation: pbgmn_spin .6s linear;
}

@keyframes pbgmn_spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pbgmn_pl_close {
  right: 16px;
  font-size: 20px;
}

.pbgmn_pl_head {
  position: relative;
  overflow: hidden;
  background: #1b1b22;
}

.pbgmn_pl_head_bg {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 50%;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(.85) brightness(.85);
  opacity: .9;
}

.pbgmn_pl_head_bg--l {
  left: 0;
  background-image: url('../../img/server_pbg/modal_bg_left.webp');
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .7) 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .7) 65%, transparent 100%);
}

.pbgmn_pl_head_bg--r {
  right: 0;
  background-image: url('../../img/server_pbg/modal_bg_right.webp');
  mask-image: linear-gradient(270deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .7) 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(270deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .7) 65%, transparent 100%);
}

.pbgmn_pl_head_scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(16, 16, 21, .15) 0%, rgba(16, 16, 21, .55) 100%);
}

.pbgmn_pl_head_row {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 32px 26px;
}

.pbgmn_pl_head_col {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.pbgmn_pl_head_col--right {
  align-items: flex-end;
}

.pbgmn_pl_head_col--single {
  justify-content: center;
}

.pbgmn_pl_stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  font-size: 14px;
}

.pbgmn_pl_stat i {
  flex: 0 0 auto;
  color: #8f92aa;
  font-size: 16px;
}

.pbgmn_pl_stat_label {
  flex: 0 0 auto;
  color: #8f92aa;
  font-weight: 500;
}

.pbgmn_pl_stat_value {
  overflow: hidden;
  color: #fff;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pbgmn_pl_head_center {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 132px;
}

.pbgmn_pl_map_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 3px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background-color: #393946;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #4c4f63;
  font-size: 32px;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .8);
}

.pbgmn_pl_map_icon[hidden] {
  display: none;
}

.pbgmn_pl_score {
  text-align: center;
}

.pbgmn_pl_score[hidden] {
  display: none;
}

.pbgmn_pl_score_lead {
  display: block;
  margin-bottom: 8px;
  color: #a9acc0;
  font-size: 12px;
  font-weight: 500;
}

.pbgmn_pl_score_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pbgmn_pl_score_row b {
  min-width: 30px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.pbgmn_pl_score_side {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pbgmn_pl_score_icon {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5));
}

.pbgmn_pl_score_sep {
  color: #6b6e82;
  font-size: 26px;
  font-weight: 700;
}

.pbgmn_pl_ping {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.pbgmn_pl_ping i {
  width: 3px;
  border-radius: 1px;
  background: #4c4f63;
}

.pbgmn_pl_ping i:nth-child(1) { height: 6px; }
.pbgmn_pl_ping i:nth-child(2) { height: 10px; }
.pbgmn_pl_ping i:nth-child(3) { height: 14px; }

.pbgmn_pl_ping.is-good i { background: #22c55e; }
.pbgmn_pl_ping.is-mid i:nth-child(1),
.pbgmn_pl_ping.is-mid i:nth-child(2) { background: #f59e0b; }
.pbgmn_pl_ping.is-bad i:nth-child(1) { background: #ef4444; }

.pbgmn_pl_body {
  max-height: 46vh;
  padding: 14px 20px;
  overflow-y: auto;
}

.pbgmn_pl_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.pbgmn_pl_table thead th {
  padding: 0 10px 4px;
  color: #71748a;
  font-size: 10.5px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
}

.pbgmn_pl_table thead th.pbgmn_pl_table_num {
  width: 34px;
}

.pbgmn_pl_table tbody tr {
  background: #393946;
  transition: background .15s ease, transform .15s ease;
}

.pbgmn_pl_table tbody tr:hover {
  background: #45455480;
  transform: translateY(-1px);
}

.pbgmn_pl_table tbody td {
  padding: 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: #c9cbdb;
  font-size: 13px;
  font-weight: 600;
}

.pbgmn_pl_table tbody td:first-child {
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  border-left: 1px solid rgba(255, 255, 255, .06);
}

.pbgmn_pl_table tbody td:last-child {
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.pbgmn_pl_table_num {
  color: #6b6e82;
  font-weight: 700;
}

.pbgmn_pl_table_name {
  color: #fff;
  font-weight: 700;
}

.pbgmn_pl_table thead th.pbgmn_pl_table_col,
.pbgmn_pl_table tbody td.pbgmn_pl_table_col {
  width: 84px;
  text-align: center;
}

.pbgmn_pl_frags {
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.pbgmn_pl_time {
  color: #a9acc0;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
}

.pbgmn_pl_row--top .pbgmn_pl_frags {
  color: var(--pbmn-a);
}

.pbgmn_pl_row--top .pbgmn_pl_table_num {
  color: var(--pbmn-a);
}

.pbgmn_pl_row--site td {
  background: color-mix(in srgb, var(--pbmn-a) 6%, #393946);
}

.pbgmn_pl_row--site:hover td {
  background: color-mix(in srgb, var(--pbmn-a) 11%, #393946);
}

.pbgmn_pl_site_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px 3px 7px;
  border: 1px solid;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  transition: filter .15s ease;
}

.pbgmn_pl_site_link:hover {
  filter: brightness(1.15);
  text-decoration: none;
}

.pbgmn_pl_site_link i {
  font-size: 13px;
}

.pbgmn_pl_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: rgba(0, 0, 0, .18);
}

.pbgmn_pl_footer_btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  color: #c9cbdb;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.pbgmn_pl_footer_btn:hover {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
}

.pbgmn_pl_footer_btn.is-done {
  border-color: rgba(34, 197, 94, .45);
  background: rgba(34, 197, 94, .14);
  color: #4ade80;
}

.pbgmn_pl_footer_btn--primary {
  border-color: color-mix(in srgb, var(--pbmn-a2) 55%, transparent);
  background: linear-gradient(135deg, var(--pbmn-a), var(--pbmn-a2));
  color: #07271a;
}

.pbgmn_pl_footer_btn--primary:hover {
  background: linear-gradient(135deg, #63f0ac, var(--pbmn-a2));
  color: #07271a;
}

@media (max-width: 640px) {
  .pbgmn_pl_head_row {
    flex-wrap: wrap;
    justify-content: center;
    padding: 46px 16px 16px;
    text-align: center;
  }
  .pbgmn_pl_head_col,
  .pbgmn_pl_head_col--right,
  .pbgmn_pl_head_col--single {
    flex: 1 1 40%;
    align-items: center;
    text-align: center;
  }
  .pbgmn_pl_head_center {
    order: -1;
    max-width: 100%;
    margin-bottom: 4px;
  }
  .pbgmn_pl_head_bg {
    width: 60%;
    opacity: .4;
  }
  .pbgmn_pl_body {
    padding: 12px 14px;
  }
  .pbgmn_pl_table thead th,
  .pbgmn_pl_table tbody td {
    padding: 9px 7px;
    font-size: 12px;
  }
  .pbgmn_pl_footer {
    padding: 14px;
  }
  .pbgmn_pl_footer_btn {
    flex: 1 1 0;
    padding: 0 10px;
  }
  .pbgmn_pl_table thead th.pbgmn_pl_table_col,
  .pbgmn_pl_table tbody td.pbgmn_pl_table_col {
    width: 62px;
  }
}

@media (max-width: 1199px) {
  .pbgmn_grid {
    gap: 12px;
  }
  .pbgmn_card {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .pbgmn {
    padding: 16px;
  }
  .pbgmn_head {
    margin-bottom: 14px;
  }
  .pbgmn_grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pbgmn_card {
    min-height: 220px;
  }
  .pbgmn_card_char {
    width: 78%;
    height: 88%;
  }
  .pbgmn_card_body {
    padding: 13px;
  }
  .pbgmn_grid--duo {
    grid-template-columns: 1fr;
  }
  .pbgmn_grid--duo .pbgmn_card {
    min-height: 220px;
  }
  .pbgmn_grid--duo .pbgmn_card_char {
    width: 78%;
  }
  .pbgmn_grid--solo .pbgmn_card {
    min-height: 210px;
  }
  .pbgmn_grid--solo .pbgmn_card_char {
    right: -4%;
    width: 52%;
    height: 88%;
  }
  .pbgmn_grid--solo .pbgmn_card_body {
    padding: 16px;
  }
  .pbgmn_grid--solo .pbgmn_card_name {
    font-size: 21px;
  }
  .pbgmn_grid--solo .pbgmn_card_desc {
    max-width: 68%;
    font-size: 12.5px;
  }
  .pbgmn_detail_hero {
    padding: 58px 16px 20px;
  }
  .pbgmn_detail_name {
    font-size: 19px;
  }
  .pbgmn_detail_desc {
    font-size: 12.5px;
  }
  .pbgmn_maps {
    padding: 14px;
  }
  .pbgmn_servers {
    grid-template-columns: 1fr;
  }
  .pbgmn_servers--one .pbgmn_srv {
    min-height: 150px;
  }
  .pbgmn_servers--one .pbgmn_srv_body {
    padding: 14px 16px;
  }
  .pbgmn_servers--one .pbgmn_srv_name {
    font-size: 15.5px;
  }
  .pbgmn_servers--one .pbgmn_srv_bar {
    max-width: none;
  }
  .pbgmn_map_head {
    flex-wrap: wrap;
    gap: 8px;
  }
  .pbgmn_map_line {
    display: none;
  }
}

@media (max-width: 480px) {
  .pbgmn_head_i > i {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
  .pbgmn_title {
    font-size: 15px;
  }
  .pbgmn_subtitle {
    font-size: 11.5px;
  }
  .pbgmn_total {
    padding: 7px 12px;
  }
}
