/* Version selector overlay - ported from hoi-tu / section-1 (.game-versions) */

@keyframes laluot {
  0% {
    -webkit-mask-position: 150% 0;
    mask-position: 150% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

.section-1 .game-versions .animation-laluot {
  z-index: 2;
  filter: brightness(1.7);
  animation: 2s linear 1s infinite laluot;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: -webkit-linear-gradient(153deg, #fff0 45%, #fff 50%, #fff0 55%);
  mask-image: linear-gradient(-63deg, #fff0 45%, #fff 50%, #fff0 55%);
  -webkit-mask-size: 300% 200%;
  mask-size: 300% 200%;
}

.section-1 .game-versions {
  position: absolute;
  top: 24px;
  left: 32px;
  width: 208px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  z-index: 50;
}

.section-1 .game-versions .select-version {
  width: 120%;
  max-width: 240px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: 8px;
}

.section-1 .game-versions .select-version img:first-child {
  width: 100%;
  height: auto;
  display: block;
}

.section-1 .game-versions .game__logo img,
.section-1 .game-versions .version__logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.section-1 .game-versions .game__logo,
.section-1 .game-versions .version__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  cursor: pointer;
}

.section-1 .game-versions .list__version {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-1 .game-versions .version__item {
  width: 100%;
  margin-top: -35px;
  transition: transform .2s ease, filter .2s ease;
}

.section-1 .game-versions .version__item:first-child {
  margin-top: 0;
}

.section-1 .game-versions .version__item:hover {
  transform: translateY(-3px);
}

.section-1 .game-versions .version__logo img {
  transition: transform .25s ease, filter .25s ease;
}

.section-1 .game-versions .version__logo:hover img,
.section-1 .game-versions .version__item:hover .version__logo img,
.section-1 .game-versions .game__logo:hover img {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

@media (min-width: 1440px) {
  .section-1 .game-versions {
    width: 260px;
    top: 30px;
    left: 40px;
  }
  .section-1 .game-versions .select-version {
    max-width: 280px;
  }
}

@media (min-width: 1920px) {
  .section-1 .game-versions {
    width: 300px;
    top: 36px;
    left: 48px;
  }
  .section-1 .game-versions .select-version {
    max-width: 320px;
  }
}

@media (max-width: 1200px) {
  .section-1 .game-versions {
    top: 8px;
    left: 12px;
    width: 74px;
    gap: 13px;
  }
  .section-1 .game-versions .select-version {
    max-width: 145px;
    margin-bottom: 0;
  }
  .section-1 .game-versions .list__version {
    gap: 10px;
  }
  .section-1 .game-versions .version__item {
    margin-top: -18px;
  }
  .section-1 .game-versions .version__item:first-child {
    margin-top: 0;
  }
}
