.game {
  flex: 1;
  margin: 1px;
  background-color: var(--card-bg-color);
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: 0% top;
  position: relative;
  align-items: center;
  cursor: pointer;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
}
.game::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: var(--card-border-radius);
  opacity: 0;
  transition: opacity 0.3s;
}
.game:hover::after {
  opacity: 0.1;
}
.game:not(.visible) div {
  opacity: 0;
}
.game .line {
  width: 100%;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  display: flex;
  align-items: center;
  padding-left: 7.5px;
  padding-right: 15px;
  box-sizing: border-box;
  justify-content: space-between;
}
.game .line.bottom {
  justify-content: flex-end;
}
.game .main-content {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
}
.game .main-content .left {
  min-width: 90px;
  text-align: center;
}
.game .main-content .left div {
  padding: 0 10px;
  box-sizing: border-box;
  white-space: normal;
  max-width: 90px;
}
.game .main-content .left .date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.game .main-content .left .round {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.game .main-content .left .champ {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}
.game .main-content .left .time {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  letter-spacing: 2px;
}
.game .main-content .left .pitch {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
.game .main-content .left .stadium {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.game .main-content .left .stats {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.game .main-content .left .stats div {
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  padding: 0 4px;
}
.game .main-content .left .stats div b {
  color: rgba(255, 255, 255, 0.7);
}
.game .main-content .left .stats .card {
  width: 6px;
  height: 13px;
  display: block;
  margin: 0 auto;
  box-shadow: var(--card-content-box-shadow);
}
.game .main-content .left .stats .card.yellow {
  background: yellow;
  transform: rotate(7deg);
}
.game .main-content .left .stats .card.red {
  background: red;
  transform: rotate(8deg);
}
.game .main-content .left .stats .yellow + .yellow {
  margin-left: -5px;
}
.game .main-content .left .stats .yellow + .red {
  margin-left: -7px;
}
.game .main-content .teams {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 14px;
  max-width: 330px;
}
.game .main-content .teams .team {
  display: flex;
  position: relative;
  align-items: center;
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.95);
}
.game .main-content .teams .team .name {
  flex: 1;
  margin-right: 20px;
  white-space: nowrap;
  font-size: 14px;
}
.game .main-content .teams .team.loser {
  color: rgba(255, 255, 255, 0.6);
}
.game .main-content .teams .team ftb-team-logo {
  display: inline-flex;
  width: 20px;
  margin: 0 20px;
  --placeholder-fill: white;
  --shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
}
.game .main-content .teams .score {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  width: 24px;
  text-align: center;
  align-items: flex-end;
  margin-right: 10px;
}
.game .main-content .teams .score .pen {
  font-size: 11px;
  margin-left: 5px;
  margin-right: -10px;
  margin-bottom: 3px;
}
.game .main-content .teams .score .td {
  font-size: 11px;
  margin-left: 5px;
  margin-right: -10px;
  margin-bottom: 3px;
}
.game .main-content .teams .score .sep {
  margin: 0 5px;
}
.game .right {
  text-align: right;
  max-width: 100px;
  margin-right: 20px;
  margin-left: auto;
}
.game .right .champ {
  font-size: 12px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.95);
}
.game .right .round {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.game .right .stadium {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.game .right .stats {
  width: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.game .right .stats div {
  width: 30px;
  height: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
}
.game .right .stats div b {
  color: rgba(255, 255, 255, 0.7);
}
.game .right .stats .card {
  width: 8px;
  height: 16px;
  display: block;
  margin: 0 auto;
  box-shadow: var(--card-content-box-shadow);
}
.game .right .stats .card.yellow {
  background: yellow;
  transform: rotate(7deg);
}
.game .right .stats .card.red {
  background: red;
  transform: rotate(8deg);
}
.game .right .stats .yellow + .yellow {
  margin-left: -5px;
}
.game .right .stats .yellow + .red {
  margin-left: -7px;
}