.allTournaments {
  gap: 20px;
}

.tournament-card {
  min-height: 250px;
  min-width: 300px;
  background-position: left;
  background-size: cover;
  position: relative;
}

.tournament-info {
  position: absolute;
  right: 0;
  height: 100%;
  width: 65%;
  background: rgb(from var(--button-background) r g b / 0.7);
  padding: 2px;
  clip-path: polygon(30% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 15%);
}

.tournament-main {
  width: 100%;
  height: 100%;
  padding: 30px 30px 20px 30px;
  background: rgb(from var(--background) r g b / 0.6);
  clip-path: polygon(30% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 15%);
}

.tournament-title {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.title-line {
  border-color: var(--button-background);
  margin: 0;
}

.tournament-game-mode {
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.1;
}

.tournament-start-date, .tournament-start-time {
  color: var(--text);
  display: block;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

.register {
  background-color: var(--background) !important;
  color: var(--title) !important;
  margin-top: 20px;
  border-color: var(--background) !important;
  width: 100%;
  padding: 5px 2px;
  font-weight: 900;
}

.register:hover {
  background-color: var(--title) !important;
  color: var(--background) !important;
}