.north {
  background:
    repeating-linear-gradient(
      90deg,
      #2450b8 0 10px,
      #f4f6fb 10px 20px,
      #ff5348 20px 30px,
      #f4f6fb 30px 40px
    );
  padding: 18px 12px 24px;
}

.north__inner {
  background: #eef3ea;
  border: 3px solid #14161c;
  padding: 18px 12px;
}

.north__cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.card {
  width: 120px;
  height: 168px;
  background: #fff;
  border: 3px solid #14161c;
  box-shadow: 5px 5px 0 #14161c;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  position: relative;
}

.card--back {
  background:
    repeating-linear-gradient(45deg, #2450b8 0 8px, #ff5348 8px 16px);
}

.card__rank {
  font-size: 2.6rem;
  line-height: 1;
}

.card__suit {
  font-size: 1.8rem;
}

.card.is-red { color: #d93a30; }
.card.is-black { color: #14161c; }

.north__guess {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto 12px;
}

.north__guess button,
.north__collect {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 3px solid #14161c;
  background: #2f6b4f;
  color: #fff;
  padding: 14px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #14161c;
}

.north__collect {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto;
  background: #ff5348;
}

.north__meter {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
