:root {
  --design-width: 1920;
  --v: calc(100vw / var(--design-width));
  --nav-btn-height: calc(38 * var(--v));
  --section-gap: calc(40 * var(--v));
  --content-media-width: calc(900 * var(--v));
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #C0E7FF 0%, #EDF7FF 10%, #B2DDFF 40%, #F298B9 63%, #6E2833 78%, #3B1319 83%, #120506 88%);
  min-height: 100%;
  font-family: 'M PLUS 1', sans-serif;
  font-style: normal;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(980 * var(--v));
  overflow: hidden;
  z-index: 2;
}

.hero__bg-pic {
  display: none;
}

.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  height: auto;
  z-index: 4;
  pointer-events: none;
}

.hero__row {
  position: absolute;
  top: 15%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(38 * var(--v));
  z-index: 10;
  width: calc(1766 * var(--v));
}

.hero__logo-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: calc(24 * var(--v));
}

.hero__logo {
  width: calc(600 * var(--v));
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.hero__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__play-btn {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: calc(24 * var(--v));
  white-space: nowrap;
  width: max-content;
  z-index: 20;
}

.hero__play-btn.section-play__btn:hover {
  -webkit-transform: translate(-50%, -1px);
          transform: translate(-50%, -1px);
}

.hero__play-btn.section-play__btn:active {
  -webkit-transform: translate(-50%, 1px);
          transform: translate(-50%, 1px);
}

.play-now-btn {
  position: absolute;
  top: 16px;
  left: 24px;
  z-index: 100;
  pointer-events: auto;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: var(--nav-btn-height);
  padding: 0 calc(20 * var(--v));
  border-radius: 999px;
  background: #59318D;
  box-shadow: 0 0 calc(12 * var(--v)) rgba(0, 0, 0, 0.6);
  font-size: calc(18 * var(--v));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.play-now-btn:hover {
  background: #7942B6;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  box-shadow: 0 0 calc(18 * var(--v)) rgba(0, 0, 0, 0.75);
}

.play-now-btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  box-shadow: 0 0 calc(8 * var(--v)) rgba(0, 0, 0, 0.5);
}

.lang-switcher {
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 100;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(8 * var(--v));
  min-height: var(--nav-btn-height);
  padding: 0 calc(10 * var(--v));
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  font-size: calc(18 * var(--v));
  color: #fff;
}

.lang-switcher__link {
  padding: calc(4 * var(--v)) calc(8 * var(--v));
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  opacity: 0.8;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, opacity 0.2s ease;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.lang-switcher__link:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.lang-switcher__link--active {
  background: #79DEFF;
  color: #fff;
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.footer-block {
  position: relative;
  width: 100%;
  padding-top: calc(120 * var(--v));
  padding-bottom: calc(40 * var(--v));
  overflow: hidden;
  z-index: 10;
  margin-top: 0;
}

.footer-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.footer-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

.footer-block__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.footer-block__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(1766 * var(--v));
  margin: 0 auto;
  z-index: 3;
}

.footer-block__logo {
  width: calc(410 * var(--v));
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: calc(-20 * var(--v));
}

.footer-block__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-block__play-btn {
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: calc(20 * var(--v)) calc(56 * var(--v));
  border-radius: 999px;
  background: #59318D;
  box-shadow: 0 0 calc(12 * var(--v)) rgba(0, 0, 0, 0.6);
  font-size: calc(32 * var(--v));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.footer-block__play-btn:hover {
  background: #7942B6;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  box-shadow: 0 0 calc(18 * var(--v)) rgba(0, 0, 0, 0.75);
}

.footer-block__play-btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  box-shadow: 0 0 calc(8 * var(--v)) rgba(0, 0, 0, 0.5);
}

.section-nav-wrapper {
  background: transparent;
  position: relative;
  z-index: 100;
}

.section-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(5 * var(--v));
  padding: calc(10 * var(--v)) 0;
  background: none;
  pointer-events: auto;
}

.section-nav__item {
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: var(--nav-btn-height);
  padding: 0 calc(42 * var(--v));
  background: #5B2D8E;
  color: #fff;
  font-size: calc(18 * var(--v));
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
  -webkit-transform: skewX(-5deg);
      -ms-transform: skewX(-5deg);
          transform: skewX(-5deg);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
}

.section-nav__item:hover {
  background: #7B3DB8;
}

.section-nav__item.active {
  background: #7B3DB8;
}

.content {
  position: relative;
  width: 100%;
  padding: 0;
  z-index: 1;
  margin-top: -1px;
  text-transform: none;
}

.content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(119, 203, 255, 0.4) 8%, rgba(119, 203, 255, 0.5) 15%, rgba(255, 119, 162, 0.5) 60.05%, rgba(184, 40, 54, 0.5) 76.63%, rgba(146, 24, 40, 0.5) 81.23%, rgba(109, 8, 25, 0.5) 85.84%, rgba(109, 8, 25, 0.7) 92%, rgba(38, 8, 11, 0.9) 97%, #060000 100%);
  z-index: 2;
  pointer-events: none;
}

.content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(300 * var(--v));
  background: linear-gradient(to top, #060000 0%, rgba(38, 8, 11, 0.95) 30%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.content__bg-video-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  width: 100%;
  margin-bottom: -100dvh;
  z-index: 1;
  pointer-events: none;
}

.content__bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content__bg-video-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
}

.content__inner {
  position: relative;
  z-index: 3;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 0;
  margin-top: var(--section-gap);
  height: calc(162 * var(--v));
  position: relative;
  z-index: 2;
  text-align: center;
  gap: 0;
}

.section-title:first-child {
  margin-top: 0;
}

.section-title__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  color: #241A63;
  font-size: calc(108 * var(--v));
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.image-block {
  text-align: center;
  padding: 0;
  max-width: var(--content-media-width);
  margin: 0 auto;
  margin-bottom: 0;
  width: 100%;
}

.image-block img {
  width: 100%;
  height: auto;
}

.image-block--full {
  max-width: calc(1200 * var(--v));
}

.image-block--full img {
  width: 100%;
}

.section-block__text,
.carousel__description {
  max-width: 100%;
  margin: calc(24 * var(--v)) auto 0;
  padding: 0 calc(40 * var(--v));
  font-size: calc(18 * var(--v));
  font-weight: 700;
  line-height: 1.6;
  color: #241A63;
  text-align: center;
}

.section-block__text {
  margin-top: calc(24 * var(--v));
}

.game-name {
  font-weight: 700;
}

.section-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: calc(16 * var(--v)) 0 var(--section-gap);
}

.section-play + .section-title {
  margin-top: 0;
}

.section-play__btn {
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: calc(20 * var(--v)) calc(56 * var(--v));
  border-radius: 999px;
  white-space: nowrap;
  background: #59318D;
  box-shadow: 0 0 calc(12 * var(--v)) rgba(0, 0, 0, 0.6);
  font-size: calc(32 * var(--v));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  -webkit-transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.section-play__btn:hover {
  background: #7942B6;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  box-shadow: 0 0 calc(18 * var(--v)) rgba(0, 0, 0, 0.75);
}

.section-play__btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  box-shadow: 0 0 calc(8 * var(--v)) rgba(0, 0, 0, 0.5);
}

.content ~ .image-block {
  position: relative;
  z-index: 10;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.faq {
  position: relative;
  z-index: 3;
  max-width: calc(1200 * var(--v));
  margin: 0 auto 0;
  padding: calc(24 * var(--v)) calc(32 * var(--v));
  border-radius: calc(16 * var(--v));
  background: rgba(6, 0, 0, 0.75);
  box-shadow: 0 0 calc(20 * var(--v)) rgba(0, 0, 0, 0.7);
  color: #fff;
}

.faq__item + .faq__item {
  margin-top: calc(18 * var(--v));
}

.faq__question {
  margin: 0 0 calc(6 * var(--v));
  font-size: calc(18 * var(--v));
  font-weight: 700;
}

.faq__answer {
  margin: 0;
  font-size: calc(18 * var(--v));
  font-weight: 700;
  line-height: 1.6;
  opacity: 0.9;
}


.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel__slide-area {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel__container {
  width: var(--content-media-width);
  overflow: hidden;
}

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.carousel__slide img,
.carousel__slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 100;
  width: calc(90 * var(--v));
  min-width: 60px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel__nav img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.carousel__nav--prev {
  left: calc((100% - 1114 * var(--v)) / 4 - 45 * var(--v));
}

.carousel__nav--next {
  right: calc((100% - 1114 * var(--v)) / 4 - 45 * var(--v));
}

.carousel__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: calc(20 * var(--v)) 0 0;
}

.carousel__dot {
  width: calc(19 * var(--v));
  height: calc(19 * var(--v));
  margin: 0 calc(19 * var(--v));
  background: transparent;
  border: calc(2 * var(--v)) solid white;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.carousel__dot.active {
  background-color: white;
}

.carousel__descriptions {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  min-height: calc(135 * var(--v));
}

.carousel__description {
  margin-top: calc(15 * var(--v));
  line-height: 1.6;
  white-space: pre-line;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: var(--content-media-width);
  box-sizing: border-box;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.carousel__description.active {
  opacity: 1;
  pointer-events: auto;
}

.trailer-frame {
  position: relative;
  width: 100%;
  max-width: var(--content-media-width);
  margin: 0 auto;
  margin-bottom: 0;
  padding: calc(12 * var(--v));
  background: rgba(0, 0, 0, 0.4);
  border: calc(3 * var(--v)) solid rgba(255, 255, 255, 0.2);
  border-radius: calc(12 * var(--v));
  box-shadow: 0 0 calc(30 * var(--v)) rgba(0, 0, 0, 0.5);
}

.trailer-frame__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: calc(8 * var(--v));
}

.trailer-frame__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.characters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  min-height: calc(500 * var(--v));
  margin: 0 auto;
  margin-bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
  z-index: 3;
}

.characters__slide-area {
  position: relative;
  width: 100%;
  height: auto;
  min-height: calc(500 * var(--v));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.characters__container {
  width: calc(1200 * var(--v));
  max-width: calc(1200 * var(--v));
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}

.characters__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.characters__item {
  min-width: 100%;
  height: auto;
  position: relative;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.characters__slide-wrap {
  position: relative;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.characters__slide {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.characters__text {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 45%;
  max-height: 100%;
  overflow-y: auto;
  font-size: calc(18 * var(--v));
  font-weight: 700;
  line-height: 1.6;
  display: block;
  color: #241A63;
  z-index: 6;
  padding: calc(20 * var(--v)) calc(24 * var(--v)) calc(20 * var(--v)) 0;
  white-space: pre-line;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.characters__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  width: calc(90 * var(--v));
  min-width: 60px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.characters__nav img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.characters__nav--prev {
  left: calc((100% - 1200 * var(--v)) / 4 - 45 * var(--v));
}

.characters__nav--next {
  right: calc((100% - 1200 * var(--v)) / 4 - 45 * var(--v));
}


.footer-block__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(1766 * var(--v));
  margin: calc(60 * var(--v)) auto 0;
  padding-top: calc(400 * var(--v));
  z-index: 3;
}

.game-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(30 * var(--v));
}

.game-info__icon {
  width: calc(175 * var(--v));
  height: calc(175 * var(--v));
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.game-info__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(12 * var(--v));
}

.game-info__list {
  margin: 0;
  padding: 0;
}

.game-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: calc(8 * var(--v));
}

.game-info__row dt {
  width: calc(150 * var(--v));
  color: #fff;
  font-size: calc(18 * var(--v));
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.game-info__row dd {
  margin: 0;
  color: #fff;
  font-size: calc(18 * var(--v));
  font-weight: 500;
  line-height: 1.5;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: calc(12 * var(--v));
}

.social-links__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: calc(10 * var(--v));
  color: #fff;
  text-decoration: none;
  font-size: calc(14 * var(--v));
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.social-links__item:hover {
  opacity: 0.8;
}

.social-links__icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-links__icon--instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  width: calc(36 * var(--v));
  height: calc(36 * var(--v));
}

.social-links__icon--youtube {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
  width: calc(36 * var(--v));
  height: calc(36 * var(--v));
}

.footer {
  position: relative;
  z-index: 10;
  padding: calc(15 * var(--v)) calc(80 * var(--v));
  font-size: calc(12 * var(--v));
  margin-top: 0;
  color: #888;
  background: #000;
}

.footer__info {
  margin-bottom: calc(15 * var(--v));
}

.footer__company {
  margin: 0;
  font-size: calc(12 * var(--v));
}

.footer__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(20 * var(--v));
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(15 * var(--v));
  margin-bottom: calc(5 * var(--v));
}

.footer__links a,
.footer__company-name {
  color: #fff;
  text-decoration: none;
  font-size: calc(12 * var(--v));
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(6 * var(--v));
}

.footer__links a::after {
  content: '';
  display: inline-block;
  width: calc(13.2 * var(--v));
  height: calc(12 * var(--v));
  background-image: url('../assets/common/link-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__links a:hover {
  opacity: 0.8;
}

.footer__separator {
  color: #666;
  font-size: calc(12 * var(--v));
}

.footer__copyright {
  margin: 0;
  font-size: calc(12 * var(--v));
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 70vh;
    overflow: visible;
  }

  .characters__slide-area {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  :root {
    --design-width: 750;
    --content-media-width: min(90vw, calc(900 * var(--v)));
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
    overflow: visible;
    padding: calc(16 * var(--v)) 0 calc(40 * var(--v));
  }

  .hero__bg-pic {
    -o-object-position: center center;
       object-position: center center;
  }

  .hero__header {
    max-width: 100%;
  }

  .hero__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 90vw;
    gap: 0;
    position: static;
    left: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: calc(16 * var(--v)) 0 calc(12 * var(--v));
  }

  .hero__logo-wrap {
    gap: calc(24 * var(--v));
  }

  .hero__logo {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    z-index: 5;
    width: calc(456 * var(--v));
    padding: calc(10 * var(--v)) calc(24 * var(--v));
    border-radius: calc(16 * var(--v));
    background: radial-gradient(50% 50% at 50% 50%, rgba(240, 250, 255, 0.8) 0%, rgba(240, 250, 255, 0) 99.5%);
  }

  .hero__play-btn {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin-top: 0;
    width: auto;
  }

  .hero__play-btn.section-play__btn:hover {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }

  .hero__play-btn.section-play__btn:active {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }

  .section-nav-wrapper {
    margin-top: calc(-48 * var(--v));
  }

  .section-nav {
    gap: calc(6 * var(--v));
    padding: calc(10 * var(--v)) calc(5 * var(--v));
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .section-nav__item {
    padding: 0 calc(24 * var(--v));
    font-size: calc(18 * var(--v));
  }

  .content__bg-video-wrapper img {
    -o-object-position: center center;
       object-position: center center;
  }

  .content__inner {
    padding: 0 calc(10 * var(--v));
  }

  .section-play {
    padding: calc(16 * var(--v)) 0 var(--section-gap);
  }

  .section-play__btn,
  .footer-block__play-btn,
  .hero__play-btn {
    padding: calc(16 * var(--v)) calc(44 * var(--v));
    font-size: calc(28 * var(--v));
  }

  .play-now-btn,
  .lang-switcher {
    min-height: 36px;
    font-size: calc(14 * var(--v));
  }

  .play-now-btn {
    padding: 0 calc(12 * var(--v));
  }

  .lang-switcher {
    padding: 0 calc(8 * var(--v));
  }

  .lang-switcher__link {
    padding: calc(4 * var(--v)) calc(6 * var(--v));
  }

  .section-title {
    height: calc(162 * var(--v));
    margin-bottom: 0;
    gap: 0;
  }

  .section-title__label {
    font-size: calc(72 * var(--v));
    white-space: normal;
    word-break: break-word;
    max-width: 95%;
  }

  .image-block img {
    width: 90%;
  }

  .carousel__container {
    width: 80%;
  }

  .carousel__nav {
    width: calc(90 * var(--v));
    min-width: 0;
    min-height: 0;
  }

  .carousel__nav--prev {
    left: calc((100% - 80%) / 4 - 45 * var(--v));
  }

  .carousel__nav--next {
    right: calc((100% - 80%) / 4 - 45 * var(--v));
  }

  .carousel__dot {
    width: calc(22 * var(--v));
    height: calc(22 * var(--v));
    margin: 0 calc(16 * var(--v));
  }

  .carousel__descriptions {
    min-height: calc(180 * var(--v));
    margin-bottom: 0;
  }

  .carousel__description {
    padding: calc(15 * var(--v)) calc(40 * var(--v));
    font-size: calc(18 * var(--v));
    line-height: 1.6;
  }

  .characters {
    height: auto;
    overflow: hidden;
  }

  .characters__slide-area {
    overflow: hidden;
  }

  .characters__container {
    overflow: hidden;
    min-height: calc(400 * var(--v));
    width: 90vw;
    max-width: calc(1200 * var(--v));
  }

  .characters__text {
    max-width: 60%;
    font-size: calc(18 * var(--v));
    padding: calc(16 * var(--v)) calc(16 * var(--v)) calc(16 * var(--v)) 0;
    line-height: 1.5;
    z-index: 10;
  }

  .characters__nav {
    width: calc(90 * var(--v));
    min-width: 0;
    min-height: 0;
  }

  .characters__nav--prev {
    left: calc(2.5vw - 45 * var(--v));
  }

  .characters__nav--next {
    right: calc(2.5vw - 45 * var(--v));
  }

  .footer-block {
    padding-top: calc(60 * var(--v));
    padding-bottom: calc(40 * var(--v));
  }

  .footer-block__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90vw;
    gap: calc(30 * var(--v));
  }

  .footer-block__logo {
    display: none;
  }

  .footer-block__info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90vw;
    margin: calc(40 * var(--v)) auto 0;
    padding-top: calc(800 * var(--v));
    z-index: 3;
  }
  
  .game-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(20 * var(--v));
  }

  .game-info__icon {
    width: calc(200 * var(--v));
    height: calc(200 * var(--v));
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .game-info__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: calc(8 * var(--v));
    gap: calc(10 * var(--v));
  }

  .game-info__row dt {
    width: calc(110 * var(--v));
    color: #fff;
    font-size: calc(18 * var(--v));
    font-weight: 500;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  
  .game-info__row dd {
    margin: 0;
    color: #fff;
    font-size: calc(18 * var(--v));
    font-weight: 500;
    line-height: 1.5;
  }

  .social-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .social-links__item {
    font-size: calc(14 * var(--v));
  }

  .footer {
    padding: calc(20 * var(--v)) calc(20 * var(--v));
  }

  .footer__bottom-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: calc(10 * var(--v));
  }

  .footer__links a,
  .footer__company-name {
    font-size: calc(12 * var(--v));
  }

  .footer__separator {
    font-size: calc(12 * var(--v));
  }

  .footer__copyright {
    font-size: calc(12 * var(--v));
  }

  .trailer-frame {
    padding: calc(8 * var(--v));
    margin-bottom: calc(40 * var(--v));
  }

  .footer__company {
    font-size: calc(12 * var(--v));
    text-align: center;
  }

  .footer__links a::after {
    width: calc(19.8 * var(--v));
    height: calc(18 * var(--v));
  }
}
