: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--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_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: 640px;
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: radial-gradient(120% 140% at 50% -20%, color-mix(in srgb, var(--pbmn-a) 16%, transparent) 0%, rgba(22, 22, 29, 0) 60%);
}

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

.pbgmn_pl_head_stat--right {
  align-items: flex-end;
  text-align: right;
}

.pbgmn_pl_head_label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8f92aa;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.pbgmn_pl_head_value {
  overflow: hidden;
  max-width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pbgmn_pl_head_center {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 44%;
}

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

.pbgmn_pl_head_name {
  overflow: hidden;
  max-width: 100%;
  color: #e4e5f1;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.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_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;
  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: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  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 {
    flex-wrap: wrap;
    justify-content: center;
    padding: 46px 16px 16px;
    text-align: center;
  }
  .pbgmn_pl_head_stat,
  .pbgmn_pl_head_stat--right {
    flex: 1 1 40%;
    align-items: center;
    text-align: center;
  }
  .pbgmn_pl_head_center {
    order: -1;
    max-width: 100%;
    margin-bottom: 4px;
  }
  .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;
  }
}

@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--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_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;
  }
}
