.main-background.csgo {
  background-image: url("/img/backgrounds/csgo/home.jpg");
}

.container .highlight {
  background: #050A20;
}

.container.bananas.cut-top {
  background-position-y: -50px;
}

.faceit-page .container h1.short {
  background-image: linear-gradient(105deg, #258cbf, #4ed3be);
}

.faceit-page .letter .background-text {
  font-size: 160px;
}

.faceit-page .letter h2 {
  max-width: 250px;
  margin-top: 158px;
}

.faceit-page.faceit-background {
  background-image: url("/img/backgrounds/bg-faceit.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.cs-game-select {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 80px;
}

.cs-game-select * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.cs-game-select__item {
  background: #050A20;
  box-shadow: 0 0 0 2px #232B46 inset;
  border-radius: 24px;
  width: 328px;
  cursor: pointer;
  padding: 38px;
  transition: all 0.15s ease-in-out;
}

.cs-game-select__item:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 0 2px rgba(78, 211, 190, 0.8) inset;
}

.cs-game-select__item:hover .cs-game-select__icon {
  box-shadow: 0 0 0 2px rgba(78, 211, 190, 0.8) inset;
}

@media screen and (max-width: 1063px) {
  .cs-game-select__item {
    width: calc(50% - 12px);
  }

  .cs-game-select__item:not(:last-of-type) {
    margin-bottom: 24px;
  }

  .cs-game-select__item br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .cs-game-select__item {
    width: 100%;
  }

  .cs-game-select__item:hover {
    transform: translateY(0px);
  }
}

.cs-game-select__icon {
  transition: all 0.15s ease-in-out;
  background: #050A20;
  box-shadow: 0 0 0 2px #232B46 inset;
  border-radius: 60px;
  width: 64px;
  height: 64px;
}

.cs-game-select__icon--matchmaking {
  background: url("/img/icons/csgo/cs2.svg") center center no-repeat;
}

.cs-game-select__icon--faceit {
  background: url("/img/icons/csgo/faceit.svg") center center no-repeat;
}

.cs-game-select__icon--premier {
  background: url("/img/icons/csgo/premier.svg") center center no-repeat;
}

.cs-game-select__icon--server-status {
  background: url("/img/icons/csgo/cs2.svg") center center no-repeat;
  opacity: 0.8;
}

.cs-game-select__title {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: 0.1px;
  color: #fff;
  margin: 32px 0 8px;
}

.cs-game-select__text {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: 0.1px;
  color: #979aae;
  margin-bottom: 32px;
}

.cs-game-select__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}

.cs-game-select__btn.purple {
  background-color: #A23CA2;
}

