
.landingGame {
  --form-factor: calc(1 / 1);
  min-width: 0;
  width: 100%;
  user-select: none;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.landingGame::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: calc(100% / var(--form-factor));
}
.landingGame__formFactor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.landingGame__formFactor > * {
  position: relative;
  z-index: 2;
}
.landingGame__top__left {
  position: absolute;
  top: 12px;
  left: 12px;
}
.landingGame__badge {
  display: flex;
  align-items: center;
  padding: 6px 6px;
  border-radius: 4px;
}
.landingGame__badge__icon__img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.landingGame__badge__text {
  color: #fff;
  overflow: hidden;
  max-width: 0;
  transition: max-width 0.2s linear;
}
@media (hover: none) {
  .landingGame__badge__text {
    display: none !important;
  }
}
.landingGame:hover .landingGame__badge__text {
  max-width: 100px;
}
.landingGame__badge__text__content {
  width: max-content;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landingGame__badge__text__content::before {
  content: "";
  display: block;
  width: 8px;
}
.landingGame__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.landingGame__img__container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.landingGame__backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
  background: transparent linear-gradient(180deg, #17192400 0%, #171924C4 65%, #171924 100%) 0% 0% no-repeat padding-box;
}
.landingGame__content {
  margin-top: auto;
  padding: 12px 16px;
}
.landingGame__content > *:not(:last-child) {
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .landingGame__content > *:not(:last-child) {
    margin-bottom: 8px;
  }
}
.landingGame__content__title {
  font-size: 14px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .landingGame__content__title {
    font-size: 24px;
  }
}
.landingGame__content__description {
  font-size: 12px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .landingGame__content__description {
    font-size: 16px;
  }
}
.landingGame__controls {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s linear;
}
@media screen and (min-width: 1024px) {
  .landingGame__controls {
    font-size: 16px;
  }
}
@media (hover: none) {
  .landingGame__controls {
    display: none;
  }
}
.landingGame__controls__content {
  padding: 12px 16px;
  display: flex;
  justify-content: center;
}
.landingGame__controls__content > *:not(:last-child) {
  margin-right: 12px;
}
.landingGame__controls__button {
  padding: 10px 16px;
  min-width: 12ch;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
}
.landingGame__controls__button--gioca {
  background: #fd6620;
  color: #fff;
  border: none;
}
.landingGame__controls__button--prova {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.landingGame:hover .landingGame__controls {
  height: auto;
  max-height: 100px;
}