.pd2-live-status{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px 14px;
  margin-top:9px;
  padding-top:8px;
  border-top:1px solid rgba(216,173,99,.18);
  font-size:12px;
  line-height:1.25;
  color:#c7beb1;
}

.pd2-live-status-item{
  display:flex;
  align-items:center;
  gap:5px;
  white-space:nowrap;
}

.game-card .pd2-live-status-item > span{
  display:inline;
  margin-top:0;
  color:inherit;
  font-size:inherit;
}

.pd2-live-status b{
  font-weight:800;
  color:#ddd4c6;
}

.pd2-status-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#817b71;
  box-shadow:0 0 0 2px rgba(129,123,113,.11);
  flex:0 0 auto;
}

.game-card.pd2-status-online .pd2-status-dot{
  background:#70d58a;
  box-shadow:0 0 7px rgba(112,213,138,.58);
}

.game-card.pd2-status-online #pd2-server-status,
.game-card.pd2-status-online #pd2-players-online{
  color:#98e4a9;
}

.game-card.pd2-status-offline .pd2-status-dot{
  background:#df6f63;
  box-shadow:0 0 7px rgba(223,111,99,.45);
}

.game-card.pd2-status-offline #pd2-server-status{
  color:#ef9188;
}

.game-card.pd2-status-checking .pd2-status-dot{
  animation:pd2-status-pulse 1.25s ease-in-out infinite;
}

@keyframes pd2-status-pulse{
  0%,100%{opacity:.4}
  50%{opacity:1}
}

@media(max-width:760px){
  .pd2-live-status{
    gap:6px 11px;
    font-size:11px;
  }
}
