:root {
  --design-width: 1920;
  --v: calc(100vw / var(--design-width));
}

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

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
  font-family: 'M PLUS 1', sans-serif;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(119, 203, 255, 1)), color-stop(5%, rgba(119, 203, 255, 0.6)), color-stop(10%, rgba(119, 203, 255, 0.5)), to(transparent));
  background: linear-gradient(to top, rgba(119, 203, 255, 1) 0%, rgba(119, 203, 255, 0.6) 5%, rgba(119, 203, 255, 0.5) 10%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

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

.hero__row {
  position: absolute;
  top: 70%;
  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 {
  width: calc(410 * var(--v));
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.cta-panel {
  position: relative;
  padding: calc(12 * var(--v)) calc(35 * var(--v)) calc(12 * var(--v)) calc(20 * var(--v));
  background: url('../assets/cta/cta-panel-background.webp') no-repeat center center;
  background-size: 100% 100%;
}

.cta-panel-wrapper {
  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;
}

.cta-panel-wrapper--hero {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta-panel-wrapper--footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: calc(10 * var(--v));
}

.cta-panel__head-text {
  text-align: center;
  margin-bottom: calc(5 * var(--v));
}

.cta-panel__head-text img {
  width: calc(490 * var(--v));
  height: auto;
}

.cta-panel--hero {
  width: calc(505 * var(--v));
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: calc(35 * var(--v));
}

.cta-panel--footer {
  width: calc(505 * var(--v));
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.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: -1px;
}

.footer-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 1)));
  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;
}

.cta-panel__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(5 * var(--v));
}

.cta-panel__action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(5 * var(--v));
}

.cta-panel__btn {
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.cta-panel__btn:hover {
  opacity: 0.8;
}

.cta-panel__btn img {
  display: block;
  height: calc(100 * var(--v));
  width: auto;
}

.cta-panel__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(20 * var(--v));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-panel__check-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.cta-panel__check-item input[type="checkbox"] {
  cursor: pointer;
  width: calc(14 * var(--v));
  height: calc(14 * var(--v));
  margin-right: calc(6 * var(--v));
  accent-color: #333;
}

.cta-panel__check-item label {
  cursor: pointer;
  color: #333;
  font-size: calc(12 * var(--v));
  white-space: nowrap;
}

.cta-panel__regulation {
  font-size: calc(11 * var(--v));
  color: #666;
}

.cta-panel__regulation a {
  color: #666;
  text-decoration: underline;
}

.cta-panel__regulation-provider {
  color: #666;
}

.cta-panel__qr {
  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;
  min-width: calc(120 * var(--v));
}

.cta-panel__qr-image img {
  width: calc(100 * var(--v));
  height: calc(100 * var(--v));
}

.cta-panel__qr-text {
  color: #333;
  font-size: calc(13 * var(--v));
  text-align: center;
}

.cta-panel__inner--mobile {
  display: none;
}

.cta-panel__mobile-note {
  display: none;
}

.cta-panel__btn-mobile {
  display: block;
  text-align: center;
}

.cta-panel__btn-mobile img {
  width: 100%;
  height: auto;
  display: block;
}

.section-nav-wrapper {
  background-color: rgb(119, 203, 255);
  position: relative;
}

.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: none;
}

.section-nav__item {
  display: inline-block;
  padding: calc(8 * var(--v)) calc(35 * var(--v));
  background: #5B2D8E;
  color: #fff;
  font-size: calc(18 * var(--v));
  font-weight: 700;
  text-decoration: 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;
}

.content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(119, 203, 255, 1)), color-stop(1%, rgba(119, 203, 255, 0.7)), color-stop(5%, rgba(119, 203, 255, 0.5)), color-stop(60.05%, rgba(255, 119, 162, 0.5)), color-stop(76.63%, rgba(184, 40, 54, 0.5)), color-stop(81.23%, rgba(146, 24, 40, 0.5)), color-stop(85.84%, rgba(109, 8, 25, 0.5)), to(#060000));
  background: linear-gradient(180deg, rgba(119, 203, 255, 1) 0%, rgba(119, 203, 255, 0.7) 1%, rgba(119, 203, 255, 0.5) 5%, 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%, #060000 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 video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.section-title {
  display: block;
  margin: 0 auto calc(19 * var(--v)) auto;
  height: calc(110 * var(--v));
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-title img {
  max-height: 100%;
  max-width: 90%;
  width: auto;
}

.image-block {
  text-align: center;
  padding: 0 0 calc(58 * var(--v)) 0;
}

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

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

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


.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;
  -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: calc(1114 * var(--v));
  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(58 * 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(307 * var(--v));
}

.carousel__nav--next {
  right: calc(307 * 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 calc(20 * var(--v));
}

.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: calc(45 * var(--v));
  min-height: calc(135 * var(--v));
}

.carousel__description {
  color: #241A63;
  text-align: center;
  padding: calc(15 * var(--v)) calc(192 * var(--v));
  font-size: calc(23 * var(--v));
  font-weight: 500;
  line-height: 1.3;
  white-space: pre-line;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
  margin: 0;
}

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

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

.characters__slide-area {
  position: relative;
  width: 100%;
  height: 100%;
}

.characters__container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.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: 100%;
  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__title {
  font-size: calc(58 * var(--v));
  line-height: calc(38 * var(--v));
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #241A63;
  left: calc(384 * var(--v));
  position: relative;
  z-index: 6;
  font-weight: 500;
  margin: calc(38 * var(--v)) 0 calc(15 * var(--v)) 0;
  padding-left: calc(12 * var(--v));
}

.characters__title-icon {
  width: calc(58 * var(--v));
  height: auto;
  margin-right: calc(10 * var(--v));
}

.characters__text {
  width: 46%;
  font-size: calc(20 * var(--v));
  line-height: 1.8;
  display: block;
  color: #241A63;
  text-shadow: 0px calc(2 * var(--v)) calc(4 * var(--v)) rgba(0, 0, 0, 0.63);
  left: calc(384 * var(--v));
  position: relative;
  z-index: 6;
  padding-left: calc(19 * var(--v));
  white-space: pre-line;
  margin: calc(10 * var(--v)) 0;
}

.characters__overlay {
  position: absolute;
  top: 0;
  z-index: 5;
  will-change: transform;
}

.characters__item[data-character="1"] .characters__overlay {
  right: calc(192 * var(--v));
  width: calc(691 * var(--v));
  top: calc(10 * var(--v));
}

.characters__item[data-character="2"] .characters__overlay {
  right: calc(96 * var(--v));
  width: calc(787 * var(--v));
}

.characters__item[data-character="3"] .characters__overlay {
  right: calc(154 * var(--v));
  width: calc(700 * var(--v));
  top: calc(-25 * var(--v));
}

.characters__video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
  will-change: opacity, transform;
}

.characters__video-frame video {
  position: relative;
  bottom: 31%;
  left: 21%;
  width: 50%;
  height: 100%;
  pointer-events: none;
  clip-path: polygon(2.5% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
}

.characters__frame-stripes {
  position: absolute;
  z-index: 4;
  top: 0;
  left: calc(403 * var(--v));
  width: calc(1344 * var(--v));
}

.characters__frame-corner {
  position: absolute;
  z-index: 4;
  top: 0;
  left: calc(397 * var(--v));
  border-right: calc(23 * var(--v)) solid transparent;
  border-top: calc(60 * var(--v)) solid black;
}

.characters__item[data-character="1"] .characters__frame-corner {
  border-top-color: #071628;
}

.characters__item[data-character="2"] .characters__frame-corner {
  border-top-color: #3e5360;
}

.characters__item[data-character="3"] .characters__frame-corner {
  border-top-color: #3b4839;
}

.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(58 * 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(211 * var(--v));
}

.characters__nav--next {
  right: calc(211 * 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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  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(20 * var(--v));
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.game-info__row dd {
  margin: 0;
  color: #fff;
  font-size: calc(20 * 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(25 * 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(30 * 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--discord {
  background-image: url('../assets/common/discord-icon.svg');
  width: calc(56 * var(--v));
  height: calc(56 * var(--v));
}

.social-links__icon--x {
  background-image: url('../assets/common/x-icon.svg');
  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: -1px;
  color: #888;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgb(38, 8, 11)));
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(38, 8, 11) 100%);
}

.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 a {
  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,
.footer__company 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: 768px) {
  :root {
    --design-width: 750;
  }

  .hero {
    height: 100svh;
    min-height: calc(1000 * var(--v));
  }

  .hero__video {
    -o-object-position: center center;
       object-position: center center;
  }

  .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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90vw;
    gap: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-bottom: calc(100 * var(--v));
  }

  .hero__logo {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    z-index: 5;
    width: calc(380 * 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%);
  }

  .cta-panel {
    padding: calc(20 * var(--v)) calc(30 * var(--v));
  }

  .cta-panel--hero,
  .cta-panel--footer {
    width: calc(600 * var(--v));
    margin-bottom: 0;
  }

  .cta-panel__head-text img {
    width: calc(600  * var(--v));
  }

  .cta-panel__inner--desktop {
    display: none;
  }

  .cta-panel__inner--mobile {
    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;
  }

  .cta-panel__btn-mobile img {
    height: calc(150 * var(--v));
    width: auto;
  }

  .cta-panel__mobile-note {
    display: block;
    color: #333;
    font-size: calc(19 * var(--v));
    font-weight: 500;
    text-align: center;
    margin: calc(8 * var(--v)) 0 0;
  }

  .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: calc(8 * var(--v)) calc(24 * var(--v));
    font-size: calc(18 * var(--v));
  }

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

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

  .section-title {
    height: calc(90 * var(--v));
    margin-bottom: calc(25 * var(--v));
  }

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

  .carousel__container {
    width: 80%;
  }

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

  .carousel__nav--prev {
    left: calc(5 * var(--v));
  }

  .carousel__nav--next {
    right: calc(5 * 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: calc(30 * var(--v));
  }

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

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

  .characters__container {
    clip-path: none;
    overflow: hidden;
    min-height: calc(500 * var(--v));
  }

  .characters__title {
    font-size: calc(38 * var(--v));
    left: 0;
    padding-left: calc(60 * var(--v));
    margin: calc(20 * var(--v)) 0 calc(10 * var(--v)) 0;
  }

  .characters__title-icon {
    width: calc(38 * var(--v));
  }

  .characters__text {
    width: 70%;
    font-size: calc(14 * var(--v));
    left: 0;
    padding-left: calc(70 * var(--v));
    line-height: 1.5;
    z-index: 10;
  }

  .characters__overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 5;
    pointer-events: none;
  }

  .characters__item[data-character="1"] .characters__overlay,
  .characters__item[data-character="2"] .characters__overlay,
  .characters__item[data-character="3"] .characters__overlay {
    right: 0;
    left: 55%;
    width: 50%;
    top: 0;
  }

  .characters__item[data-character="2"] .characters__overlay {
    top: 10%;
  }

  .characters__item[data-character="1"] .characters__text {
    width: 75%;
  }

  .characters__video-frame {
    position: relative;
    width: 100%;
    height: auto;
  }

  .characters__video-frame video {
    position: relative;
    bottom: auto;
    left: calc(70 * var(--v));
    width: calc(460 * var(--v));
    height: auto;
    clip-path: none;
  }


  .characters__frame-stripes {
    left: calc(30 * var(--v));
    width: calc(700 * var(--v));
  }

  .characters__frame-corner {
    display: none;
  }

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

  .characters__nav--prev {
    left: calc(5 * var(--v));
  }

  .characters__nav--next {
    right: calc(5 * 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;
  }

  .cta-panel-wrapper--footer {
    padding-top: 0;
  }

  .footer-block__info {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 90vw;
    margin: calc(40 * var(--v)) auto 0;
    padding-top: calc(800 * var(--v));
    z-index: 3;
    gap: calc(32 * var(--v));
  }
  
  .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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: calc(20 * var(--v));
    width: 100%;
  }

  .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: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }

  .social-links__item {
    font-size: calc(22 * var(--v));
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
  }

  .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 a {
    font-size: calc(16 * var(--v));
  }

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

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

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

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