body {
  background:
    linear-gradient(rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.92)),
    url("https://query.rsclan.gg/images/uptime/rs_backgroundbanner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.observerHero,
.hero {
  background:
    linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.92)),
    url("https://query.rsclan.gg/images/uptime/rs_backgroundbanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gameCard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.gameCard:hover {
  background: var(--rs-panel-hover);
  border-color: var(--rs-border-red);
  transform: translateY(-2px);
}

.gameCardImage {
  min-height: 155px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--rs-border);
}

.gameCardBody {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.gameCardBody h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.gameCardBody p {
  flex: 1;
  margin: 0 0 16px;
  color: var(--rs-muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 767.98px) {
  .gameCardBody {
    padding: 16px;
  }

  .infoPanel {
    padding: 18px;
  }
}